Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2026-33186 (GCVE-0-2026-33186)
Vulnerability from cvelistv5 – Published: 2026-03-20 22:23 – Updated: 2026-03-24 18:09- CWE-285 - Improper Authorization
| URL | Tags |
|---|---|
| https://github.com/grpc/grpc-go/security/advisori… | x_refsource_CONFIRM |
{
"containers": {
"adp": [
{
"metrics": [
{
"other": {
"content": {
"id": "CVE-2026-33186",
"options": [
{
"Exploitation": "none"
},
{
"Automatable": "yes"
},
{
"Technical Impact": "partial"
}
],
"role": "CISA Coordinator",
"timestamp": "2026-03-24T18:08:38.989284Z",
"version": "2.0.3"
},
"type": "ssvc"
}
}
],
"providerMetadata": {
"dateUpdated": "2026-03-24T18:09:13.422Z",
"orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"shortName": "CISA-ADP"
},
"title": "CISA ADP Vulnrichment"
}
],
"cna": {
"affected": [
{
"product": "grpc-go",
"vendor": "grpc",
"versions": [
{
"status": "affected",
"version": "\u003c 1.79.3"
}
]
}
],
"descriptions": [
{
"lang": "en",
"value": "gRPC-Go is the Go language implementation of gRPC. Versions prior to 1.79.3 have an authorization bypass resulting from improper input validation of the HTTP/2 `:path` pseudo-header. The gRPC-Go server was too lenient in its routing logic, accepting requests where the `:path` omitted the mandatory leading slash (e.g., `Service/Method` instead of `/Service/Method`). While the server successfully routed these requests to the correct handler, authorization interceptors (including the official `grpc/authz` package) evaluated the raw, non-canonical path string. Consequently, \"deny\" rules defined using canonical paths (starting with `/`) failed to match the incoming request, allowing it to bypass the policy if a fallback \"allow\" rule was present. This affects gRPC-Go servers that use path-based authorization interceptors, such as the official RBAC implementation in `google.golang.org/grpc/authz` or custom interceptors relying on `info.FullMethod` or `grpc.Method(ctx)`; AND that have a security policy contains specific \"deny\" rules for canonical paths but allows other requests by default (a fallback \"allow\" rule). The vulnerability is exploitable by an attacker who can send raw HTTP/2 frames with malformed `:path` headers directly to the gRPC server. The fix in version 1.79.3 ensures that any request with a `:path` that does not start with a leading slash is immediately rejected with a `codes.Unimplemented` error, preventing it from reaching authorization interceptors or handlers with a non-canonical path string. While upgrading is the most secure and recommended path, users can mitigate the vulnerability using one of the following methods: Use a validating interceptor (recommended mitigation); infrastructure-level normalization; and/or policy hardening."
}
],
"metrics": [
{
"cvssV3_1": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
}
}
],
"problemTypes": [
{
"descriptions": [
{
"cweId": "CWE-285",
"description": "CWE-285: Improper Authorization",
"lang": "en",
"type": "CWE"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2026-03-20T22:23:32.147Z",
"orgId": "a0819718-46f1-4df5-94e2-005712e83aaa",
"shortName": "GitHub_M"
},
"references": [
{
"name": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"tags": [
"x_refsource_CONFIRM"
],
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"source": {
"advisory": "GHSA-p77j-4mvh-x3m3",
"discovery": "UNKNOWN"
},
"title": "gRPC-Go has an authorization bypass via missing leading slash in :path"
}
},
"cveMetadata": {
"assignerOrgId": "a0819718-46f1-4df5-94e2-005712e83aaa",
"assignerShortName": "GitHub_M",
"cveId": "CVE-2026-33186",
"datePublished": "2026-03-20T22:23:32.147Z",
"dateReserved": "2026-03-17T22:16:36.720Z",
"dateUpdated": "2026-03-24T18:09:13.422Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2026-33186",
"date": "2026-06-28",
"epss": "0.00522",
"percentile": "0.40351"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2026-33186\",\"sourceIdentifier\":\"security-advisories@github.com\",\"published\":\"2026-03-20T23:16:45.180\",\"lastModified\":\"2026-06-17T10:37:05.900\",\"vulnStatus\":\"Analyzed\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"gRPC-Go is the Go language implementation of gRPC. Versions prior to 1.79.3 have an authorization bypass resulting from improper input validation of the HTTP/2 `:path` pseudo-header. The gRPC-Go server was too lenient in its routing logic, accepting requests where the `:path` omitted the mandatory leading slash (e.g., `Service/Method` instead of `/Service/Method`). While the server successfully routed these requests to the correct handler, authorization interceptors (including the official `grpc/authz` package) evaluated the raw, non-canonical path string. Consequently, \\\"deny\\\" rules defined using canonical paths (starting with `/`) failed to match the incoming request, allowing it to bypass the policy if a fallback \\\"allow\\\" rule was present. This affects gRPC-Go servers that use path-based authorization interceptors, such as the official RBAC implementation in `google.golang.org/grpc/authz` or custom interceptors relying on `info.FullMethod` or `grpc.Method(ctx)`; AND that have a security policy contains specific \\\"deny\\\" rules for canonical paths but allows other requests by default (a fallback \\\"allow\\\" rule). The vulnerability is exploitable by an attacker who can send raw HTTP/2 frames with malformed `:path` headers directly to the gRPC server. The fix in version 1.79.3 ensures that any request with a `:path` that does not start with a leading slash is immediately rejected with a `codes.Unimplemented` error, preventing it from reaching authorization interceptors or handlers with a non-canonical path string. While upgrading is the most secure and recommended path, users can mitigate the vulnerability using one of the following methods: Use a validating interceptor (recommended mitigation); infrastructure-level normalization; and/or policy hardening.\"},{\"lang\":\"es\",\"value\":\"gRPC-Go es la implementaci\u00f3n en lenguaje Go de gRPC. Las versiones anteriores a la 1.79.3 tienen un bypass de autorizaci\u00f3n resultante de una validaci\u00f3n de entrada incorrecta del pseudo-encabezado HTTP/2 \u0027:path\u0027. El servidor gRPC-Go era demasiado indulgente en su l\u00f3gica de enrutamiento, aceptando solicitudes donde el \u0027:path\u0027 omit\u00eda la barra inicial obligatoria (por ejemplo, \u0027Service/Method\u0027 en lugar de \u0027/Service/Method\u0027). Si bien el servidor enrut\u00f3 con \u00e9xito estas solicitudes al gestor correcto, los interceptores de autorizaci\u00f3n (incluido el paquete oficial \u0027grpc/authz\u0027) evaluaron la cadena de ruta cruda y no can\u00f3nica. En consecuencia, las reglas de \u0027denegaci\u00f3n\u0027 definidas usando rutas can\u00f3nicas (que comienzan con \u0027/\u0027) no lograron coincidir con la solicitud entrante, permitiendo que bypassara la pol\u00edtica si una regla de \u0027permiso\u0027 de respaldo estaba presente. Esto afecta a los servidores gRPC-Go que utilizan interceptores de autorizaci\u00f3n basados en rutas, como la implementaci\u00f3n oficial de RBAC en \u0027google.golang.org/grpc/authz\u0027 o interceptores personalizados que dependen de \u0027info.FullMethod\u0027 o \u0027grpc.Method(ctx)\u0027; Y que tienen una pol\u00edtica de seguridad que contiene reglas de \u0027denegaci\u00f3n\u0027 espec\u00edficas para rutas can\u00f3nicas pero permite otras solicitudes por defecto (una regla de \u0027permiso\u0027 de respaldo). La vulnerabilidad es explotable por un atacante que puede enviar tramas HTTP/2 crudas con encabezados \u0027:path\u0027 malformados directamente al servidor gRPC. La correcci\u00f3n en la versi\u00f3n 1.79.3 asegura que cualquier solicitud con un \u0027:path\u0027 que no comience con una barra inicial sea inmediatamente rechazada con un error \u0027codes.Unimplemented\u0027, impidiendo que llegue a los interceptores de autorizaci\u00f3n o gestores con una cadena de ruta no can\u00f3nica. Si bien la actualizaci\u00f3n es la ruta m\u00e1s segura y recomendada, los usuarios pueden mitigar la vulnerabilidad utilizando uno de los siguientes m\u00e9todos: Usar un interceptor de validaci\u00f3n (mitigaci\u00f3n recomendada); normalizaci\u00f3n a nivel de infraestructura; y/o endurecimiento de pol\u00edticas.\"}],\"affected\":[{\"source\":\"security-advisories@github.com\",\"affectedData\":[{\"vendor\":\"grpc\",\"product\":\"grpc-go\",\"versions\":[{\"version\":\"\u003c 1.79.3\",\"status\":\"affected\"}]}]}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"security-advisories@github.com\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N\",\"baseScore\":9.1,\"baseSeverity\":\"CRITICAL\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"HIGH\",\"integrityImpact\":\"HIGH\",\"availabilityImpact\":\"NONE\"},\"exploitabilityScore\":3.9,\"impactScore\":5.2}],\"ssvcV203\":[{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"ssvcData\":{\"timestamp\":\"2026-03-24T18:08:38.989284Z\",\"id\":\"CVE-2026-33186\",\"options\":[{\"exploitation\":\"none\"},{\"automatable\":\"yes\"},{\"technicalImpact\":\"partial\"}],\"role\":\"CISA Coordinator\",\"version\":\"2.0.3\"}}]},\"weaknesses\":[{\"source\":\"security-advisories@github.com\",\"type\":\"Secondary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-285\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:grpc:grpc:*:*:*:*:*:go:*:*\",\"versionEndExcluding\":\"1.79.3\",\"matchCriteriaId\":\"D5AB3ED0-D11B-461E-B2B1-627D5CCEA236\"}]}]}],\"references\":[{\"url\":\"https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Mitigation\",\"Vendor Advisory\"]}]}}",
"vulnrichment": {
"containers": "{\"adp\": [{\"title\": \"CISA ADP Vulnrichment\", \"metrics\": [{\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2026-33186\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"yes\"}, {\"Technical Impact\": \"partial\"}], \"version\": \"2.0.3\", \"timestamp\": \"2026-03-24T18:08:38.989284Z\"}}}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2026-03-24T18:09:03.096Z\"}}], \"cna\": {\"title\": \"gRPC-Go has an authorization bypass via missing leading slash in :path\", \"source\": {\"advisory\": \"GHSA-p77j-4mvh-x3m3\", \"discovery\": \"UNKNOWN\"}, \"metrics\": [{\"cvssV3_1\": {\"scope\": \"UNCHANGED\", \"version\": \"3.1\", \"baseScore\": 9.1, \"attackVector\": \"NETWORK\", \"baseSeverity\": \"CRITICAL\", \"vectorString\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N\", \"integrityImpact\": \"HIGH\", \"userInteraction\": \"NONE\", \"attackComplexity\": \"LOW\", \"availabilityImpact\": \"NONE\", \"privilegesRequired\": \"NONE\", \"confidentialityImpact\": \"HIGH\"}}], \"affected\": [{\"vendor\": \"grpc\", \"product\": \"grpc-go\", \"versions\": [{\"status\": \"affected\", \"version\": \"\u003c 1.79.3\"}]}], \"references\": [{\"url\": \"https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3\", \"name\": \"https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3\", \"tags\": [\"x_refsource_CONFIRM\"]}], \"descriptions\": [{\"lang\": \"en\", \"value\": \"gRPC-Go is the Go language implementation of gRPC. Versions prior to 1.79.3 have an authorization bypass resulting from improper input validation of the HTTP/2 `:path` pseudo-header. The gRPC-Go server was too lenient in its routing logic, accepting requests where the `:path` omitted the mandatory leading slash (e.g., `Service/Method` instead of `/Service/Method`). While the server successfully routed these requests to the correct handler, authorization interceptors (including the official `grpc/authz` package) evaluated the raw, non-canonical path string. Consequently, \\\"deny\\\" rules defined using canonical paths (starting with `/`) failed to match the incoming request, allowing it to bypass the policy if a fallback \\\"allow\\\" rule was present. This affects gRPC-Go servers that use path-based authorization interceptors, such as the official RBAC implementation in `google.golang.org/grpc/authz` or custom interceptors relying on `info.FullMethod` or `grpc.Method(ctx)`; AND that have a security policy contains specific \\\"deny\\\" rules for canonical paths but allows other requests by default (a fallback \\\"allow\\\" rule). The vulnerability is exploitable by an attacker who can send raw HTTP/2 frames with malformed `:path` headers directly to the gRPC server. The fix in version 1.79.3 ensures that any request with a `:path` that does not start with a leading slash is immediately rejected with a `codes.Unimplemented` error, preventing it from reaching authorization interceptors or handlers with a non-canonical path string. While upgrading is the most secure and recommended path, users can mitigate the vulnerability using one of the following methods: Use a validating interceptor (recommended mitigation); infrastructure-level normalization; and/or policy hardening.\"}], \"problemTypes\": [{\"descriptions\": [{\"lang\": \"en\", \"type\": \"CWE\", \"cweId\": \"CWE-285\", \"description\": \"CWE-285: Improper Authorization\"}]}], \"providerMetadata\": {\"orgId\": \"a0819718-46f1-4df5-94e2-005712e83aaa\", \"shortName\": \"GitHub_M\", \"dateUpdated\": \"2026-03-20T22:23:32.147Z\"}}}",
"cveMetadata": "{\"cveId\": \"CVE-2026-33186\", \"state\": \"PUBLISHED\", \"dateUpdated\": \"2026-03-24T18:09:13.422Z\", \"dateReserved\": \"2026-03-17T22:16:36.720Z\", \"assignerOrgId\": \"a0819718-46f1-4df5-94e2-005712e83aaa\", \"datePublished\": \"2026-03-20T22:23:32.147Z\", \"assignerShortName\": \"GitHub_M\"}",
"dataType": "CVE_RECORD",
"dataVersion": "5.2"
}
}
}
OPENSUSE-SU-2026:11126-1
Vulnerability from csaf_opensuse - Published: 2026-06-25 00:00 - Updated: 2026-06-25 00:00| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 | — |
Vendor Fix
|
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "moderate"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "velociraptor-0.7.0.4.git185.a5708584-2.1 on GA media",
"title": "Title of the patch"
},
{
"category": "description",
"text": "These are all security issues fixed in the velociraptor-0.7.0.4.git185.a5708584-2.1 package on the GA media of openSUSE Tumbleweed.",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Tumbleweed-2026-11126",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2026_11126-1.json"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2023-45288 page",
"url": "https://www.suse.com/security/cve/CVE-2023-45288/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45339 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45339/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-13465 page",
"url": "https://www.suse.com/security/cve/CVE-2025-13465/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-22868 page",
"url": "https://www.suse.com/security/cve/CVE-2025-22868/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-22869 page",
"url": "https://www.suse.com/security/cve/CVE-2025-22869/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-22870 page",
"url": "https://www.suse.com/security/cve/CVE-2025-22870/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-22872 page",
"url": "https://www.suse.com/security/cve/CVE-2025-22872/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-24358 page",
"url": "https://www.suse.com/security/cve/CVE-2025-24358/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-47911 page",
"url": "https://www.suse.com/security/cve/CVE-2025-47911/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-58058 page",
"url": "https://www.suse.com/security/cve/CVE-2025-58058/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-58181 page",
"url": "https://www.suse.com/security/cve/CVE-2025-58181/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-58190 page",
"url": "https://www.suse.com/security/cve/CVE-2025-58190/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-5889 page",
"url": "https://www.suse.com/security/cve/CVE-2025-5889/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-64718 page",
"url": "https://www.suse.com/security/cve/CVE-2025-64718/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-6545 page",
"url": "https://www.suse.com/security/cve/CVE-2025-6545/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-6547 page",
"url": "https://www.suse.com/security/cve/CVE-2025-6547/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-7783 page",
"url": "https://www.suse.com/security/cve/CVE-2025-7783/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-1229 page",
"url": "https://www.suse.com/security/cve/CVE-2026-1229/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-25128 page",
"url": "https://www.suse.com/security/cve/CVE-2026-25128/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-25680 page",
"url": "https://www.suse.com/security/cve/CVE-2026-25680/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-25681 page",
"url": "https://www.suse.com/security/cve/CVE-2026-25681/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-26278 page",
"url": "https://www.suse.com/security/cve/CVE-2026-26278/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-26996 page",
"url": "https://www.suse.com/security/cve/CVE-2026-26996/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-27136 page",
"url": "https://www.suse.com/security/cve/CVE-2026-27136/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-2739 page",
"url": "https://www.suse.com/security/cve/CVE-2026-2739/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-27606 page",
"url": "https://www.suse.com/security/cve/CVE-2026-27606/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-27904 page",
"url": "https://www.suse.com/security/cve/CVE-2026-27904/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-33036 page",
"url": "https://www.suse.com/security/cve/CVE-2026-33036/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-33186 page",
"url": "https://www.suse.com/security/cve/CVE-2026-33186/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-33487 page",
"url": "https://www.suse.com/security/cve/CVE-2026-33487/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-33814 page",
"url": "https://www.suse.com/security/cve/CVE-2026-33814/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-34986 page",
"url": "https://www.suse.com/security/cve/CVE-2026-34986/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-39821 page",
"url": "https://www.suse.com/security/cve/CVE-2026-39821/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-39827 page",
"url": "https://www.suse.com/security/cve/CVE-2026-39827/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-39828 page",
"url": "https://www.suse.com/security/cve/CVE-2026-39828/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-39829 page",
"url": "https://www.suse.com/security/cve/CVE-2026-39829/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-39830 page",
"url": "https://www.suse.com/security/cve/CVE-2026-39830/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-39831 page",
"url": "https://www.suse.com/security/cve/CVE-2026-39831/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-39832 page",
"url": "https://www.suse.com/security/cve/CVE-2026-39832/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-39833 page",
"url": "https://www.suse.com/security/cve/CVE-2026-39833/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-39834 page",
"url": "https://www.suse.com/security/cve/CVE-2026-39834/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-39835 page",
"url": "https://www.suse.com/security/cve/CVE-2026-39835/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-42039 page",
"url": "https://www.suse.com/security/cve/CVE-2026-42039/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-42502 page",
"url": "https://www.suse.com/security/cve/CVE-2026-42502/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-42506 page",
"url": "https://www.suse.com/security/cve/CVE-2026-42506/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-42508 page",
"url": "https://www.suse.com/security/cve/CVE-2026-42508/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-46595 page",
"url": "https://www.suse.com/security/cve/CVE-2026-46595/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-46597 page",
"url": "https://www.suse.com/security/cve/CVE-2026-46597/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-46598 page",
"url": "https://www.suse.com/security/cve/CVE-2026-46598/"
}
],
"title": "velociraptor-0.7.0.4.git185.a5708584-2.1 on GA media",
"tracking": {
"current_release_date": "2026-06-25T00:00:00Z",
"generator": {
"date": "2026-06-25T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2026:11126-1",
"initial_release_date": "2026-06-25T00:00:00Z",
"revision_history": [
{
"date": "2026-06-25T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"product": {
"name": "velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"product_id": "velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"product": {
"name": "velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"product_id": "velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"product": {
"name": "velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"product_id": "velociraptor-0.7.0.4.git185.a5708584-2.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64",
"product": {
"name": "velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64",
"product_id": "velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "openSUSE Tumbleweed",
"product": {
"name": "openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:tumbleweed"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64"
},
"product_reference": "velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le"
},
"product_reference": "velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "velociraptor-0.7.0.4.git185.a5708584-2.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x"
},
"product_reference": "velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
},
"product_reference": "velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2023-45288",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2023-45288"
}
],
"notes": [
{
"category": "general",
"text": "An attacker may cause an HTTP/2 endpoint to read arbitrary amounts of header data by sending an excessive number of CONTINUATION frames. Maintaining HPACK state requires parsing and processing all HEADERS and CONTINUATION frames on a connection. When a request\u0027s headers exceed MaxHeaderBytes, no memory is allocated to store the excess headers, but they are still parsed. This permits an attacker to cause an HTTP/2 endpoint to read arbitrary amounts of header data, all associated with a request which is going to be rejected. These headers can include Huffman-encoded data which is significantly more expensive for the receiver to decode than for an attacker to send. The fix sets a limit on the amount of excess header frames we will process before closing a connection.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2023-45288",
"url": "https://www.suse.com/security/cve/CVE-2023-45288"
},
{
"category": "external",
"summary": "SUSE Bug 1221400 for CVE-2023-45288",
"url": "https://bugzilla.suse.com/1221400"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2023-45288"
},
{
"cve": "CVE-2024-45339",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45339"
}
],
"notes": [
{
"category": "general",
"text": "When logs are written to a widely-writable directory (the default), an unprivileged attacker may predict a privileged process\u0027s log file path and pre-create a symbolic link to a sensitive file in its place. When that privileged process runs, it will follow the planted symlink and overwrite that sensitive file. To fix that, glog now causes the program to exit (with status code 2) when it finds that the configured log file already exists.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45339",
"url": "https://www.suse.com/security/cve/CVE-2024-45339"
},
{
"category": "external",
"summary": "SUSE Bug 1236541 for CVE-2024-45339",
"url": "https://bugzilla.suse.com/1236541"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2024-45339"
},
{
"cve": "CVE-2025-13465",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-13465"
}
],
"notes": [
{
"category": "general",
"text": "Lodash versions 4.0.0 through 4.17.22 are vulnerable to prototype pollution in the _.unset and _.omit functions. An attacker can pass crafted paths which cause Lodash to delete methods from global prototypes.\n\nThe issue permits deletion of properties but does not allow overwriting their original behavior.\n\nThis issue is patched on 4.17.23",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-13465",
"url": "https://www.suse.com/security/cve/CVE-2025-13465"
},
{
"category": "external",
"summary": "SUSE Bug 1257321 for CVE-2025-13465",
"url": "https://bugzilla.suse.com/1257321"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.2,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2025-13465"
},
{
"cve": "CVE-2025-22868",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-22868"
}
],
"notes": [
{
"category": "general",
"text": "An attacker can pass a malicious malformed token which causes unexpected memory to be consumed during parsing.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-22868",
"url": "https://www.suse.com/security/cve/CVE-2025-22868"
},
{
"category": "external",
"summary": "SUSE Bug 1239185 for CVE-2025-22868",
"url": "https://bugzilla.suse.com/1239185"
},
{
"category": "external",
"summary": "SUSE Bug 1239186 for CVE-2025-22868",
"url": "https://bugzilla.suse.com/1239186"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2025-22868"
},
{
"cve": "CVE-2025-22869",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-22869"
}
],
"notes": [
{
"category": "general",
"text": "SSH servers which implement file transfer protocols are vulnerable to a denial of service attack from clients which complete the key exchange slowly, or not at all, causing pending content to be read into memory, but never transmitted.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-22869",
"url": "https://www.suse.com/security/cve/CVE-2025-22869"
},
{
"category": "external",
"summary": "SUSE Bug 1239322 for CVE-2025-22869",
"url": "https://bugzilla.suse.com/1239322"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2025-22869"
},
{
"cve": "CVE-2025-22870",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-22870"
}
],
"notes": [
{
"category": "general",
"text": "Matching of hosts against proxy patterns can improperly treat an IPv6 zone ID as a hostname component. For example, when the NO_PROXY environment variable is set to \"*.example.com\", a request to \"[::1%25.example.com]:80` will incorrectly match and not be proxied.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-22870",
"url": "https://www.suse.com/security/cve/CVE-2025-22870"
},
{
"category": "external",
"summary": "SUSE Bug 1238572 for CVE-2025-22870",
"url": "https://bugzilla.suse.com/1238572"
},
{
"category": "external",
"summary": "SUSE Bug 1238611 for CVE-2025-22870",
"url": "https://bugzilla.suse.com/1238611"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 4.4,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:L",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2025-22870"
},
{
"cve": "CVE-2025-22872",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-22872"
}
],
"notes": [
{
"category": "general",
"text": "The tokenizer incorrectly interprets tags with unquoted attribute values that end with a solidus character (/) as self-closing. When directly using Tokenizer, this can result in such tags incorrectly being marked as self-closing, and when using the Parse functions, this can result in content following such tags as being placed in the wrong scope during DOM construction, but only when tags are in foreign content (e.g. \u003cmath\u003e, \u003csvg\u003e, etc contexts).",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-22872",
"url": "https://www.suse.com/security/cve/CVE-2025-22872"
},
{
"category": "external",
"summary": "SUSE Bug 1241710 for CVE-2025-22872",
"url": "https://bugzilla.suse.com/1241710"
},
{
"category": "external",
"summary": "SUSE Bug 1265255 for CVE-2025-22872",
"url": "https://bugzilla.suse.com/1265255"
},
{
"category": "external",
"summary": "SUSE Bug 1265256 for CVE-2025-22872",
"url": "https://bugzilla.suse.com/1265256"
},
{
"category": "external",
"summary": "SUSE Bug 1265259 for CVE-2025-22872",
"url": "https://bugzilla.suse.com/1265259"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:L/I:L/A:L",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2025-22872"
},
{
"cve": "CVE-2025-24358",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-24358"
}
],
"notes": [
{
"category": "general",
"text": "gorilla/csrf provides Cross Site Request Forgery (CSRF) prevention middleware for Go web applications \u0026 services. Prior to 1.7.2, gorilla/csrf does not validate the Origin header against an allowlist. Its executes its validation of the Referer header for cross-origin requests only when it believes the request is being served over TLS. It determines this by inspecting the r.URL.Scheme value. However, this value is never populated for \"server\" requests per the Go spec, and so this check does not run in practice. This vulnerability allows an attacker who has gained XSS on a subdomain or top level domain to perform authenticated form submissions against gorilla/csrf protected targets that share the same top level domain. This vulnerability is fixed in 1.7.2.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-24358",
"url": "https://www.suse.com/security/cve/CVE-2025-24358"
},
{
"category": "external",
"summary": "SUSE Bug 1241233 for CVE-2025-24358",
"url": "https://bugzilla.suse.com/1241233"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2025-24358"
},
{
"cve": "CVE-2025-47911",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-47911"
}
],
"notes": [
{
"category": "general",
"text": "The html.Parse function in golang.org/x/net/html has quadratic parsing complexity when processing certain inputs, which can lead to denial of service (DoS) if an attacker provides specially crafted HTML content.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-47911",
"url": "https://www.suse.com/security/cve/CVE-2025-47911"
},
{
"category": "external",
"summary": "SUSE Bug 1251308 for CVE-2025-47911",
"url": "https://bugzilla.suse.com/1251308"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2025-47911"
},
{
"cve": "CVE-2025-58058",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-58058"
}
],
"notes": [
{
"category": "general",
"text": "xz is a pure golang package for reading and writing xz-compressed files. Prior to version 0.5.14, it is possible to put data in front of an LZMA-encoded byte stream without detecting the situation while reading the header. This can lead to increased memory consumption because the current implementation allocates the full decoding buffer directly after reading the header. The LZMA header doesn\u0027t include a magic number or has a checksum to detect such an issue according to the specification. Note that the code recognizes the issue later while reading the stream, but at this time the memory allocation has already been done. This issue has been patched in version 0.5.14.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-58058",
"url": "https://www.suse.com/security/cve/CVE-2025-58058"
},
{
"category": "external",
"summary": "SUSE Bug 1248889 for CVE-2025-58058",
"url": "https://bugzilla.suse.com/1248889"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2025-58058"
},
{
"cve": "CVE-2025-58181",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-58181"
}
],
"notes": [
{
"category": "general",
"text": "SSH servers parsing GSSAPI authentication requests do not validate the number of mechanisms specified in the request, allowing an attacker to cause unbounded memory consumption.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-58181",
"url": "https://www.suse.com/security/cve/CVE-2025-58181"
},
{
"category": "external",
"summary": "SUSE Bug 1253784 for CVE-2025-58181",
"url": "https://bugzilla.suse.com/1253784"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2025-58181"
},
{
"cve": "CVE-2025-58190",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-58190"
}
],
"notes": [
{
"category": "general",
"text": "The html.Parse function in golang.org/x/net/html has an infinite parsing loop when processing certain inputs, which can lead to denial of service (DoS) if an attacker provides specially crafted HTML content.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-58190",
"url": "https://www.suse.com/security/cve/CVE-2025-58190"
},
{
"category": "external",
"summary": "SUSE Bug 1251309 for CVE-2025-58190",
"url": "https://bugzilla.suse.com/1251309"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2025-58190"
},
{
"cve": "CVE-2025-5889",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-5889"
}
],
"notes": [
{
"category": "general",
"text": "A vulnerability was found in juliangruber brace-expansion up to 1.1.11/2.0.1/3.0.0/4.0.0. It has been rated as problematic. Affected by this issue is the function expand of the file index.js. The manipulation leads to inefficient regular expression complexity. The attack may be launched remotely. The complexity of an attack is rather high. The exploitation is known to be difficult. The exploit has been disclosed to the public and may be used. Upgrading to version 1.1.12, 2.0.2, 3.0.1 and 4.0.1 is able to address this issue. The name of the patch is a5b98a4f30d7813266b221435e1eaaf25a1b0ac5. It is recommended to upgrade the affected component.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-5889",
"url": "https://www.suse.com/security/cve/CVE-2025-5889"
},
{
"category": "external",
"summary": "SUSE Bug 1244340 for CVE-2025-5889",
"url": "https://bugzilla.suse.com/1244340"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 2.5,
"baseSeverity": "LOW",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "low"
}
],
"title": "CVE-2025-5889"
},
{
"cve": "CVE-2025-64718",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-64718"
}
],
"notes": [
{
"category": "general",
"text": "js-yaml is a JavaScript YAML parser and dumper. In js-yaml before 4.1.1 and 3.14.2, it\u0027s possible for an attacker to modify the prototype of the result of a parsed yaml document via prototype pollution (`__proto__`). All users who parse untrusted yaml documents may be impacted. The problem is patched in js-yaml 4.1.1 and 3.14.2. Users can protect against this kind of attack on the server by using `node --disable-proto=delete` or `deno` (in Deno, pollution protection is on by default).",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-64718",
"url": "https://www.suse.com/security/cve/CVE-2025-64718"
},
{
"category": "external",
"summary": "SUSE Bug 1255407 for CVE-2025-64718",
"url": "https://bugzilla.suse.com/1255407"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.4,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:L",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2025-64718"
},
{
"cve": "CVE-2025-6545",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-6545"
}
],
"notes": [
{
"category": "general",
"text": "Improper Input Validation vulnerability in pbkdf2 allows Signature Spoofing by Improper Validation. This vulnerability is associated with program files lib/to-buffer.Js.\n\nThis issue affects pbkdf2: from 3.0.10 through 3.1.2.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-6545",
"url": "https://www.suse.com/security/cve/CVE-2025-6545"
},
{
"category": "external",
"summary": "SUSE Bug 1245273 for CVE-2025-6545",
"url": "https://bugzilla.suse.com/1245273"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.4,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2025-6545"
},
{
"cve": "CVE-2025-6547",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-6547"
}
],
"notes": [
{
"category": "general",
"text": "Improper Input Validation vulnerability in pbkdf2 allows Signature Spoofing by Improper Validation.This issue affects pbkdf2: \u003c=3.1.2.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-6547",
"url": "https://www.suse.com/security/cve/CVE-2025-6547"
},
{
"category": "external",
"summary": "SUSE Bug 1245271 for CVE-2025-6547",
"url": "https://bugzilla.suse.com/1245271"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.4,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2025-6547"
},
{
"cve": "CVE-2025-7783",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-7783"
}
],
"notes": [
{
"category": "general",
"text": "Use of Insufficiently Random Values vulnerability in form-data allows HTTP Parameter Pollution (HPP). This vulnerability is associated with program files lib/form_data.Js.\n\nThis issue affects form-data: \u003c 2.5.4, 3.0.0 - 3.0.3, 4.0.0 - 4.0.3.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-7783",
"url": "https://www.suse.com/security/cve/CVE-2025-7783"
},
{
"category": "external",
"summary": "SUSE Bug 1246810 for CVE-2025-7783",
"url": "https://bugzilla.suse.com/1246810"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:H/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2025-7783"
},
{
"cve": "CVE-2026-1229",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-1229"
}
],
"notes": [
{
"category": "general",
"text": "The CombinedMult function in the CIRCL ecc/p384 package (secp384r1 curve) produces an incorrect value for specific inputs. The issue is fixed by using complete addition formulas.\nECDH and ECDSA signing relying on this curve are not affected.\n\nThe bug was fixed in v1.6.3 https://github.com/cloudflare/circl/releases/tag/v1.6.3 .",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-1229",
"url": "https://www.suse.com/security/cve/CVE-2026-1229"
},
{
"category": "external",
"summary": "SUSE Bug 1265416 for CVE-2026-1229",
"url": "https://bugzilla.suse.com/1265416"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:H/A:L",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-1229"
},
{
"cve": "CVE-2026-25128",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-25128"
}
],
"notes": [
{
"category": "general",
"text": "fast-xml-parser allows users to validate XML, parse XML to JS object, or build XML from JS object without C/C++ based libraries and no callback. In versions 5.0.9 through 5.3.3, a RangeError vulnerability exists in the numeric entity processing of fast-xml-parser when parsing XML with out-of-range entity code points (e.g., `\u0026#9999999;` or `\u0026#xFFFFFF;`). This causes the parser to throw an uncaught exception, crashing any application that processes untrusted XML input. Version 5.3.4 fixes the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-25128",
"url": "https://www.suse.com/security/cve/CVE-2026-25128"
},
{
"category": "external",
"summary": "SUSE Bug 1257518 for CVE-2026-25128",
"url": "https://bugzilla.suse.com/1257518"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-25128"
},
{
"cve": "CVE-2026-25680",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-25680"
}
],
"notes": [
{
"category": "general",
"text": "Parsing arbitrary HTML can consume excessive CPU time, possibly leading to denial of service.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-25680",
"url": "https://www.suse.com/security/cve/CVE-2026-25680"
},
{
"category": "external",
"summary": "SUSE Bug 1267044 for CVE-2026-25680",
"url": "https://bugzilla.suse.com/1267044"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-25680"
},
{
"cve": "CVE-2026-25681",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-25681"
}
],
"notes": [
{
"category": "general",
"text": "Parsing arbitrary HTML which is then rendered using Render can result in an unexpected HTML tree. This can be leveraged to execute XSS attacks in applications that attempt to sanitize input HTML before rendering.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-25681",
"url": "https://www.suse.com/security/cve/CVE-2026-25681"
},
{
"category": "external",
"summary": "SUSE Bug 1267044 for CVE-2026-25681",
"url": "https://bugzilla.suse.com/1267044"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.1,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-25681"
},
{
"cve": "CVE-2026-26278",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-26278"
}
],
"notes": [
{
"category": "general",
"text": "fast-xml-parser allows users to validate XML, parse XML to JS object, or build XML from JS object without C/C++ based libraries and no callback. In versions 4.1.3 through 5.3.5, the XML parser can be forced to do an unlimited amount of entity expansion. With a very small XML input, it\u0027s possible to make the parser spend seconds or even minutes processing a single request, effectively freezing the application. Version 5.3.6 fixes the issue. As a workaround, avoid using DOCTYPE parsing by `processEntities: false` option.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-26278",
"url": "https://www.suse.com/security/cve/CVE-2026-26278"
},
{
"category": "external",
"summary": "SUSE Bug 1258547 for CVE-2026-26278",
"url": "https://bugzilla.suse.com/1258547"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-26278"
},
{
"cve": "CVE-2026-26996",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-26996"
}
],
"notes": [
{
"category": "general",
"text": "minimatch is a minimal matching utility for converting glob expressions into JavaScript RegExp objects. Versions 10.2.0 and below are vulnerable to Regular Expression Denial of Service (ReDoS) when a glob pattern contains many consecutive * wildcards followed by a literal character that doesn\u0027t appear in the test string. Each * compiles to a separate [^/]*? regex group, and when the match fails, V8\u0027s regex engine backtracks exponentially across all possible splits. The time complexity is O(4^N) where N is the number of * characters. With N=15, a single minimatch() call takes ~2 seconds. With N=34, it hangs effectively forever. Any application that passes user-controlled strings to minimatch() as the pattern argument is vulnerable to DoS. This issue has been fixed in version 10.2.1.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-26996",
"url": "https://www.suse.com/security/cve/CVE-2026-26996"
},
{
"category": "external",
"summary": "SUSE Bug 1258621 for CVE-2026-26996",
"url": "https://bugzilla.suse.com/1258621"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-26996"
},
{
"cve": "CVE-2026-27136",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-27136"
}
],
"notes": [
{
"category": "general",
"text": "Parsing arbitrary HTML which is then rendered using Render can result in an unexpected HTML tree. This can be leveraged to execute XSS attacks in applications that attempt to sanitize input HTML before rendering.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-27136",
"url": "https://www.suse.com/security/cve/CVE-2026-27136"
},
{
"category": "external",
"summary": "SUSE Bug 1267044 for CVE-2026-27136",
"url": "https://bugzilla.suse.com/1267044"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.1,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-27136"
},
{
"cve": "CVE-2026-2739",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-2739"
}
],
"notes": [
{
"category": "general",
"text": "This affects versions of the package bn.js before 5.2.3. Calling maskn(0) on any BN instance corrupts the internal state, causing toString(), divmod(), and other methods to enter an infinite loop, hanging the process indefinitely.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-2739",
"url": "https://www.suse.com/security/cve/CVE-2026-2739"
},
{
"category": "external",
"summary": "SUSE Bug 1258647 for CVE-2026-2739",
"url": "https://bugzilla.suse.com/1258647"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-2739"
},
{
"cve": "CVE-2026-27606",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-27606"
}
],
"notes": [
{
"category": "general",
"text": "Rollup is a module bundler for JavaScript. Versions prior to 2.80.0, 3.30.0, and 4.59.0 of the Rollup module bundler (specifically v4.x and present in current source) is vulnerable to an Arbitrary File Write via Path Traversal. Insecure file name sanitization in the core engine allows an attacker to control output filenames (e.g., via CLI named inputs, manual chunk aliases, or malicious plugins) and use traversal sequences (`../`) to overwrite files anywhere on the host filesystem that the build process has permissions for. This can lead to persistent Remote Code Execution (RCE) by overwriting critical system or user configuration files. Versions 2.80.0, 3.30.0, and 4.59.0 contain a patch for the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-27606",
"url": "https://www.suse.com/security/cve/CVE-2026-27606"
},
{
"category": "external",
"summary": "SUSE Bug 1258846 for CVE-2026-27606",
"url": "https://bugzilla.suse.com/1258846"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-27606"
},
{
"cve": "CVE-2026-27904",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-27904"
}
],
"notes": [
{
"category": "general",
"text": "minimatch is a minimal matching utility for converting glob expressions into JavaScript RegExp objects. Prior to version 10.2.3, 9.0.7, 8.0.6, 7.4.8, 6.2.2, 5.1.8, 4.2.5, and 3.1.4, nested `*()` extglobs produce regexps with nested unbounded quantifiers (e.g. `(?:(?:a|b)*)*`), which exhibit catastrophic backtracking in V8. With a 12-byte pattern `*(*(*(a|b)))` and an 18-byte non-matching input, `minimatch()` stalls for over 7 seconds. Adding a single nesting level or a few input characters pushes this to minutes. This is the most severe finding: it is triggered by the default `minimatch()` API with no special options, and the minimum viable pattern is only 12 bytes. The same issue affects `+()` extglobs equally. Versions 10.2.3, 9.0.7, 8.0.6, 7.4.8, 6.2.2, 5.1.8, 4.2.5, and 3.1.4 fix the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-27904",
"url": "https://www.suse.com/security/cve/CVE-2026-27904"
},
{
"category": "external",
"summary": "SUSE Bug 1258994 for CVE-2026-27904",
"url": "https://bugzilla.suse.com/1258994"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-27904"
},
{
"cve": "CVE-2026-33036",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-33036"
}
],
"notes": [
{
"category": "general",
"text": "fast-xml-parser allows users to process XML from JS object without C/C++ based libraries or callbacks. Versions 4.0.0-beta.3 through 5.5.5 contain a bypass vulnerability where numeric character references (\u0026#NNN;, \u0026#xHH;) and standard XML entities completely evade the entity expansion limits (e.g., maxTotalExpansions, maxExpandedLength) added to fix CVE-2026-26278, enabling XML entity expansion Denial of Service. The root cause is that replaceEntitiesValue() in OrderedObjParser.js only enforces expansion counting on DOCTYPE-defined entities while the lastEntities loop handling numeric/standard entities performs no counting at all. An attacker supplying 1M numeric entity references like \u0026#65; can force ~147MB of memory allocation and heavy CPU usage, potentially crashing the process-even when developers have configured strict limits. This issue has been fixed in version 5.5.6.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-33036",
"url": "https://www.suse.com/security/cve/CVE-2026-33036"
},
{
"category": "external",
"summary": "SUSE Bug 1259974 for CVE-2026-33036",
"url": "https://bugzilla.suse.com/1259974"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-33036"
},
{
"cve": "CVE-2026-33186",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-33186"
}
],
"notes": [
{
"category": "general",
"text": "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.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-33186",
"url": "https://www.suse.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "SUSE Bug 1260085 for CVE-2026-33186",
"url": "https://bugzilla.suse.com/1260085"
},
{
"category": "external",
"summary": "SUSE Bug 1268676 for CVE-2026-33186",
"url": "https://bugzilla.suse.com/1268676"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-33186"
},
{
"cve": "CVE-2026-33487",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-33487"
}
],
"notes": [
{
"category": "general",
"text": "goxmlsig provides XML Digital Signatures implemented in Go. Prior to version 1.6.0, the `validateSignature` function in `validate.go` goes through the references in the `SignedInfo` block to find one that matches the signed element\u0027s ID. In Go versions before 1.22, or when `go.mod` uses an older version, there is a loop variable capture issue. The code takes the address of the loop variable `_ref` instead of its value. As a result, if more than one reference matches the ID or if the loop logic is incorrect, the `ref` pointer will always end up pointing to the last element in the `SignedInfo.References` slice after the loop. goxmlsig version 1.6.0 contains a patch.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-33487",
"url": "https://www.suse.com/security/cve/CVE-2026-33487"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-33487"
},
{
"cve": "CVE-2026-33814",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-33814"
}
],
"notes": [
{
"category": "general",
"text": "When processing HTTP/2 SETTINGS frames, transport will enter an infinite loop of writing CONTINUATION frames if it receives a SETTINGS_MAX_FRAME_SIZE with a value of 0.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-33814",
"url": "https://www.suse.com/security/cve/CVE-2026-33814"
},
{
"category": "external",
"summary": "SUSE Bug 1264506 for CVE-2026-33814",
"url": "https://bugzilla.suse.com/1264506"
},
{
"category": "external",
"summary": "SUSE Bug 1268758 for CVE-2026-33814",
"url": "https://bugzilla.suse.com/1268758"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-33814"
},
{
"cve": "CVE-2026-34986",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-34986"
}
],
"notes": [
{
"category": "general",
"text": "Go JOSE provides an implementation of the Javascript Object Signing and Encryption set of standards in Go, including support for JSON Web Encryption (JWE), JSON Web Signature (JWS), and JSON Web Token (JWT) standards. Prior to 4.1.4 and 3.0.5, decrypting a JSON Web Encryption (JWE) object will panic if the alg field indicates a key wrapping algorithm (one ending in KW, with the exception of A128GCMKW, A192GCMKW, and A256GCMKW) and the encrypted_key field is empty. The panic happens when cipher.KeyUnwrap() in key_wrap.go attempts to allocate a slice with a zero or negative length based on the length of the encrypted_key. This code path is reachable from ParseEncrypted() / ParseEncryptedJSON() / ParseEncryptedCompact() followed by Decrypt() on the resulting object. Note that the parse functions take a list of accepted key algorithms. If the accepted key algorithms do not include any key wrapping algorithms, parsing will fail and the application will be unaffected. This panic is also reachable by calling cipher.KeyUnwrap() directly with any ciphertext parameter less than 16 bytes long, but calling this function directly is less common. Panics can lead to denial of service. This vulnerability is fixed in 4.1.4 and 3.0.5.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-34986",
"url": "https://www.suse.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "SUSE Bug 1262805 for CVE-2026-34986",
"url": "https://bugzilla.suse.com/1262805"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-34986"
},
{
"cve": "CVE-2026-39821",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-39821"
}
],
"notes": [
{
"category": "general",
"text": "The ToASCII and ToUnicode functions incorrectly accept Punycode-encoded labels that decode to an ASCII-only label. For example, ToUnicode(\"xn--example-.com\") incorrectly returns the name \"example.com\" rather than an error. This behavior can lead to privilege escalation in programs using the idna package. For example, a program which performs privilege checks on the ASCII hostname may reject \"example.com\" but permit \"xn--example-.com\". If that program subsequently converts the ASCII hostname to Unicode, it will inadvertently permits access to the Unicode name \"example.com\".",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-39821",
"url": "https://www.suse.com/security/cve/CVE-2026-39821"
},
{
"category": "external",
"summary": "SUSE Bug 1266474 for CVE-2026-39821",
"url": "https://bugzilla.suse.com/1266474"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.4,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-39821"
},
{
"cve": "CVE-2026-39827",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-39827"
}
],
"notes": [
{
"category": "general",
"text": "An authenticated SSH client that repeatedly opened channels which were rejected by the server caused unbounded memory growth, eventually crashing the server process and affecting all connected users. Rejected channels are now properly removed from the connection\u0027s internal state and released for garbage collection.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-39827",
"url": "https://www.suse.com/security/cve/CVE-2026-39827"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-39827",
"url": "https://bugzilla.suse.com/1266049"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-39827"
},
{
"cve": "CVE-2026-39828",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-39828"
}
],
"notes": [
{
"category": "general",
"text": "When an SSH server authentication callback returned PartialSuccessError with non-nil Permissions, those permissions were silently discarded, potentially dropping certificate restrictions such as force-command after a second factor succeeded. Returning non-nil Permissions with PartialSuccessError now results in a connection error.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-39828",
"url": "https://www.suse.com/security/cve/CVE-2026-39828"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-39828",
"url": "https://bugzilla.suse.com/1266049"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-39828"
},
{
"cve": "CVE-2026-39829",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-39829"
}
],
"notes": [
{
"category": "general",
"text": "The RSA and DSA public key parsers did not enforce size limits on key parameters. A crafted public key with an excessively large modulus or DSA parameter could cause several minutes of CPU consumption during signature verification. This could be triggered by unauthenticated clients during public key authentication. RSA moduli are now limited to 8192 bits, and DSA parameters are validated per FIPS 186-2.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-39829",
"url": "https://www.suse.com/security/cve/CVE-2026-39829"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-39829",
"url": "https://bugzilla.suse.com/1266049"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-39829"
},
{
"cve": "CVE-2026-39830",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-39830"
}
],
"notes": [
{
"category": "general",
"text": "A malicious SSH peer could send unsolicited global request responses to fill an internal buffer, blocking the connection\u0027s read loop. The blocked goroutine could not be released by calling Close(), resulting in a resource leak per connection. Unsolicited global responses are now discarded.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-39830",
"url": "https://www.suse.com/security/cve/CVE-2026-39830"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-39830",
"url": "https://bugzilla.suse.com/1266049"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-39830"
},
{
"cve": "CVE-2026-39831",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-39831"
}
],
"notes": [
{
"category": "general",
"text": "The Verify() method for FIDO/U2F security key types (sk-ecdsa-sha2-nistp256@openssh.com, sk-ssh-ed25519@openssh.com) did not check the User Presence flag. Signatures generated without physical touch were accepted, allowing unattended use of a hardware security key. To restore the previous behavior, return a \"no-touch-required\" extension in Permissions.Extensions from PublicKeyCallback.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-39831",
"url": "https://www.suse.com/security/cve/CVE-2026-39831"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-39831",
"url": "https://bugzilla.suse.com/1266049"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-39831"
},
{
"cve": "CVE-2026-39832",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-39832"
}
],
"notes": [
{
"category": "general",
"text": "When adding a key to a remote agent constraint extensions such as restrict-destination-v00@openssh.com were not serialized in the request. Destination restrictions were silently stripped when forwarding keys, allowing unrestricted use of the key on the remote host. The client now serializes all constraint extensions. Additionally, the in-memory keyring returned by NewKeyring() now rejects keys with unsupported constraint extensions instead of silently ignoring them.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-39832",
"url": "https://www.suse.com/security/cve/CVE-2026-39832"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-39832",
"url": "https://bugzilla.suse.com/1266049"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.4,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-39832"
},
{
"cve": "CVE-2026-39833",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-39833"
}
],
"notes": [
{
"category": "general",
"text": "The in-memory keyring returned by NewKeyring() silently accepted keys with the ConfirmBeforeUse constraint but never enforced it. The key would sign without any confirmation prompt, with no indication to the caller that the constraint was not in effect. NewKeyring() now returns an error when unsupported constraints are requested.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-39833",
"url": "https://www.suse.com/security/cve/CVE-2026-39833"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-39833",
"url": "https://bugzilla.suse.com/1266049"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.7,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-39833"
},
{
"cve": "CVE-2026-39834",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-39834"
}
],
"notes": [
{
"category": "general",
"text": "When writing data larger than 4GB in a single Write call on an SSH channel, an integer overflow in the internal payload size calculation caused the write loop to spin indefinitely, sending empty packets without making progress. The size comparison now uses int64 to prevent truncation.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-39834",
"url": "https://www.suse.com/security/cve/CVE-2026-39834"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-39834",
"url": "https://bugzilla.suse.com/1266049"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-39834"
},
{
"cve": "CVE-2026-39835",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-39835"
}
],
"notes": [
{
"category": "general",
"text": "SSH servers which use CertChecker as a public key callback without setting IsUserAuthority or IsHostAuthority could be caused to panic by a client presenting a certificate. CertChecker now returns an error instead of panicking when these callbacks are nil.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-39835",
"url": "https://www.suse.com/security/cve/CVE-2026-39835"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-39835",
"url": "https://bugzilla.suse.com/1266049"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-39835"
},
{
"cve": "CVE-2026-42039",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-42039"
}
],
"notes": [
{
"category": "general",
"text": "Axios is a promise based HTTP client for the browser and Node.js. Prior to 1.15.1 and 0.31.1, toFormData recursively walks nested objects with no depth limit, so a deeply nested value passed as request data crashes the Node.js process with a RangeError. This vulnerability is fixed in 1.15.1 and 0.31.1.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-42039",
"url": "https://www.suse.com/security/cve/CVE-2026-42039"
},
{
"category": "external",
"summary": "SUSE Bug 1267406 for CVE-2026-42039",
"url": "https://bugzilla.suse.com/1267406"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-42039"
},
{
"cve": "CVE-2026-42502",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-42502"
}
],
"notes": [
{
"category": "general",
"text": "Parsing arbitrary HTML which is then rendered using Render can result in an unexpected HTML tree. This can be leveraged to execute XSS attacks in applications that attempt to sanitize input HTML before rendering.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-42502",
"url": "https://www.suse.com/security/cve/CVE-2026-42502"
},
{
"category": "external",
"summary": "SUSE Bug 1267044 for CVE-2026-42502",
"url": "https://bugzilla.suse.com/1267044"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.1,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-42502"
},
{
"cve": "CVE-2026-42506",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-42506"
}
],
"notes": [
{
"category": "general",
"text": "Parsing arbitrary HTML which is then rendered using Render can result in an unexpected HTML tree. This can be leveraged to execute XSS attacks in applications that attempt to sanitize input HTML before rendering.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-42506",
"url": "https://www.suse.com/security/cve/CVE-2026-42506"
},
{
"category": "external",
"summary": "SUSE Bug 1267044 for CVE-2026-42506",
"url": "https://bugzilla.suse.com/1267044"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.1,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-42506"
},
{
"cve": "CVE-2026-42508",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-42508"
}
],
"notes": [
{
"category": "general",
"text": "Previously, a revoked \u0027SignatureKey\u0027 belonging to a CA was not correctly checked for revocation. Now, both the \u0027key\u0027 and \u0027key.SignatureKey\u0027 are checked for @revoked.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-42508",
"url": "https://www.suse.com/security/cve/CVE-2026-42508"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-42508",
"url": "https://bugzilla.suse.com/1266049"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-42508"
},
{
"cve": "CVE-2026-46595",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-46595"
}
],
"notes": [
{
"category": "general",
"text": "Previously, CVE-2024-45337 fixed an authorization bypass for misused ssh server configurations; if any other type of callback is passed other than public key, then the source-address validation would be skipped.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-46595",
"url": "https://www.suse.com/security/cve/CVE-2026-46595"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-46595",
"url": "https://bugzilla.suse.com/1266049"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-46595"
},
{
"cve": "CVE-2026-46597",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-46597"
}
],
"notes": [
{
"category": "general",
"text": "An incorrectly placed cast from bytes to int allowed for server-side panic in the AES-GCM packet decoder for well-crafted inputs.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-46597",
"url": "https://www.suse.com/security/cve/CVE-2026-46597"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-46597",
"url": "https://bugzilla.suse.com/1266049"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-46597"
},
{
"cve": "CVE-2026-46598",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-46598"
}
],
"notes": [
{
"category": "general",
"text": "For certain crafted inputs, a \u0027ed25519.PrivateKey\u0027 was created by casting malformed wire bytes, leading to a panic when used.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-46598",
"url": "https://www.suse.com/security/cve/CVE-2026-46598"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-46598",
"url": "https://bugzilla.suse.com/1266049"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.aarch64",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.ppc64le",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.s390x",
"openSUSE Tumbleweed:velociraptor-0.7.0.4.git185.a5708584-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-25T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-46598"
}
]
}
OPENSUSE-SU-2026:20620-1
Vulnerability from csaf_opensuse - Published: 2026-04-23 16:22 - Updated: 2026-04-23 16:22| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch | — |
Vendor Fix
|
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "critical"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Security update for rclone",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for rclone fixes the following issues:\n\nChanges in rclone:\n\n- Update to version 1.73.5:\n * Version v1.73.5\n * operations: add AuthRequired to operations/fsinfo to prevent backend creation CVE-2026-41179\n * rc: snapshot NoAuth at startup to prevent runtime auth bypass CVE-2026-41176\n * rc: add AuthRequired to options/set to prevent auth bypass CVE-2026-41176\n * s3: fix empty delimiter parameter rejected by Archiware P5 server\n * azureblob/auth: add Microsoft Partner Network User-Agent prefix\n * drime: fix User.EntryPermissions JSON unmarshalling\n * filter: fix debug logs that fire before logger is configured - fixes #9291\n * s3: fix TencentCOS CDN endpoint failing on bucket check\n * iclouddrive: fix \u0027directory not found\u0027 error when the directory contains accent marks\n * Start v1.73.5-DEV development\n\n- Update to version 1.73.4:\n * Version v1.73.4\n * Update to go 1.25.9 to fix multiple CVEs\n * build: fix Denial of Service due to Panic in AWS SDK for Go v2 SDK EventStream Decoder\n * docs: fix markdown issues in mount docs\n * docs: fix header level for metadata option\n * fix(docs): Fix link to not be language specific\n * filen: update SDK version\n * build(deps): bump golang.org/x/image from 0.36.0 to 0.38.0\n * docs: note macOS 10.15 (Catalina) support with version v1.70.3\n * Start v1.73.4-DEV development\n\n- Update to version 1.73.3: (CVE-2026-33186 GHSA-6g7g-w4f8-9c9x)\n * Version v1.73.3\n * build(deps): bump github.com/buger/jsonparser from 1.1.1 to 1.1.2\n * docs/jottacloud: fix broken link\n * docs: clarify Filen password change requires updating both password and API key in rclone config\n * docs: note that Filen API key changes on password change\n * build(deps): bump google.golang.org/grpc from 1.79.1 to 1.79.3\n * s3: add multi tenant support for Cubbit\n * lib/rest: fix URLPathEscapeAll breaking WebDAV servers (eg nzbdav) with strict path matching\n * list: fix nil pointer panic in Sorter when temp file creation fails\n * docs: update RELEASE procedure to avoid mistakes\n * docs: added text to the label showing version-introduced info\n * Start v1.73.3-DEV development\n * docs: update sponsors\n\n- Update to version 1.73.2:\n * Version v1.73.2\n * Update to go 1.25.8 to fix multiple CVEs\n * build: update to golang.org/x/net v0.51.0 to fix CVE-2026-27141 #9220\n * docs: fix new drive flag typo in changelog\n * webdav: add missing headers for CORS\n * docs: Document unsupported S3 object keys with double slashes\n * docs: note that --use-server-modtime only works on some backends\n * internxt: fix Entry doesn\u0027t belong in directory errors on windows\n * drime: fix chunk-uploaded files ignoring workspace ID\n * docs: Fix headers hierarchy for mount.md\n * webdav: escape reserved characters in URL path segments\n * bisync: add group Sync to the bisync command\n * archive: extract: strip \"./\" prefix from tar entry paths\n * docs: add instructions on how to update Go version\n * buid: update github.com/cloudflare/circl to v1.6.3 to fix CVE-2026-1229\n * Start v1.73.2-DEV development\n\n- Update to version 1.73.1:\n * Version v1.73.1\n * build: fix build using go 1.26.0 instead of go 1.25.7\n * fs/march: fix runtime: program exceeds 10000-thread limit\n * accounting: fix missing server side stats from core/stats rc\n * pacer: re-read the sleep time as it may be stale\n * pacer: fix deadlock between pacer token and --max-connections\n * build: fix CVE-2025-68121 by updating go to 1.25.7 or later - fixes #9167\n * drime: fix files and directories being created in the default workspace\n * docs: update sponsors\n * copyurl: Extend copyurl docs with an example of CSV FILENAMEs starting with a path.\n * internxt: implement re-login under refresh logic, improve retry logic - fixes #9174\n * docs: add ExchangeRate-API as a sponsor\n * build: bump github.com/go-chi/chi/v5 from 5.2.3 to 5.2.5 to fix GO-2026-4316\n * Set list_version to 2 for FileLu S3 configuration\n * filelu: add multipart upload support with configurable cutoff\n * filelu: add multipart init response type\n * filelu: add comment for response body wrapping\n * filelu: avoid buffering entire file in memory\n * docs: update sponsor logos\n * filen: fix potential panic in case of error during upload\n * filen: fix 32 bit targets not being able to list directories Fixes #9142\n * Start v1.73.1-DEV development\n\n- Update to version 1.73.0:\n * Version v1.73.0\n * drive: fix crash when trying to creating shortcut to a Google doc\n * azureblob,azurefiles: factor the common auth into a library\n * test: allow backends to return fs.ErrorCantListRoot to skip Root tests\n * build: add privatebeta Makefile target\n * docs: add Internxt as a sponsor\n * internxt: remove use of CVE laden github.com/disintegration/imaging\n * docs: fix Internxt docs after merge\n * docs: update making a new backend docs\n * docs: build overview page from the backend data\n * docs: add tiering to the documentation - fixes #8873\n * docs: add data about each backend in YAML format\n * docs: add bin/manage_backends.py for managing the backend data files\n * internxt: use rclone\u0027s http.Client to enable more features\n * internxt: fix lint problems\n * Add StarHack to contributors\n * Add lullius to contributors\n * Add jzunigax2 to contributors\n * internxt: add Internxt backend - fixes #7610\n * drive: add --drive-metadata-force-expansive-access flag - Fixes #8980\n * test_all: allow drime more time to complete\n * onedrive: fix permissions on onedrive Personal\n * onedrive: fix require sign in for Onedrive Personal\n * onedrive: Onedrive Personal no longer supports description\n * onedrive: fix setting modification time on directories for onedrive Personal\n * onedrive: fix cancelling multipart upload\n * docs: fix WinFsp link in mount documentation\n * cmount: make work under OpenBSD - fixes #1727\n * vfs: make mount tests run on OpenBSD\n * docs: improve alignment of icons\n * protondrive: update to use forks of upstream modules\n * Add hyusap to contributors\n * Add Nick Owens to contributors\n * Add Mikel Olasagasti Uranga to contributors\n * docs: fix googlephotos custom client_id instructions\n * cmount: fix OpenBSD mount support.\n * fs: fix bwlimit: correctly report minutes\n * fs: fix bwlimit: use %d instead of %q for ints\n * mega: reverts TLS workaround\n * docs: fix formatting\n * docs: add faq entry about re-enabling old TLS ciphers\n * Add Marc-Philip to contributors\n * Add yy to contributors\n * filen: swap to blake3 hashes\n * docs: fix echo command syntax for password input\n * docs: fix typos in comments and messages\n * docs: fix use of removed rem macro\n * uptobox: remove backend as service is no longer available\n * rc: add operations/hashsumfile to sum a single file only\n * docs: update sponsor link\n * filen: add Filen backend - Fixes #6728\n * sftp: fix proxy initialisation\n * fstest: skip Copy mutation test with --sftp-copy-is-hardlink\n * fstest: Make Copy mutation test work properly\n * Add Qingwei Li to contributors\n * Add Nicolas Dessart to contributors\n * log: fix systemd adding extra newline - fixes #9086\n * oracleobjectstorage, sftp: eliminate unnecessary heap allocation\n * sftp,ftp: add http proxy authentication support\n * Add Drime backend\n * lib/rest: add opts.MultipartContentType to explicitly set Content-Type of attachements\n * dircache: allow empty string as root parent id\n * docs: update sponsors\n * s3: add provider Bizfly Cloud Simple Storage\n * docs: update sponsor logos\n * Add sys6101 to contributors\n * Add darkdragon-001 to contributors\n * Add vupn0712 to contributors\n * docs: add cloudinary to readme\n * docs: fix headers hierarchy in mount docs\n * s3: fix Copy ignoring storage class\n * serve s3: make errors in --s3-auth-key fatal - fixes #9044\n * Add masrlinu to contributors\n * pcloud: add support for real-time updates in mount\n * memory: add --memory-discard flag for speed testing - fixes #9037\n * Add vyv03354 to contributors\n * shade: Fix VFS test issues\n * docs: mention use of ListR feature in ls docs\n * build: bump actions/download-artifact from 6 to 7\n * build: bump actions/upload-artifact from 5 to 6\n * build: bump actions/cache from 4 to 5\n * docs: reflects the fact that pCloud supports ListR\n * S3: Linode: updated endpoints to use ISO 3166-1 alpha-2 standard\n * sync: fix error propagation in tests (#9025)\n * Changelog updates from Version v1.72.1\n * s3: add more regions for Selectel\n * Add jhasse-shade to contributors\n * Add Shade backend\n * log: fix backtrace not going to the --log-file #9014\n * build: fix lint warning after linter upgrade\n * Add Jonas Tingeborn to contributors\n * Add Tingsong Xu to contributors\n * configfile: add piped config support - fixes #9012\n * fs/log: fix PID not included in JSON log output\n * build: adjust lint rules to exclude new errors from linter update\n * proxy: fix error handling in tests spotted by the linter\n * Add Johannes Rothe to contributors\n * Add Leo to contributors\n * Add Vladislav Tropnikov to contributors\n * Add Cliff Frey to contributors\n * Add vicerace to contributors\n * b2: Fix listing root buckets with unrestricted API key\n * googlecloudstorage: improve endpoint parameter docs\n * serve webdav: implement download-directory-as-zip\n * s3: The ability to specify an IAM role for cross-account interaction\n * azureblob: add metadata and tags support across upload and copy paths\n * refactor: use strings.Cut to simplify code\n * docs: note where a provider has an S3 compatible alternative\n * Add Shade as sponsor\n * Add Duncan Smart to contributors\n * Add Diana to contributors\n * docs: Clarify OAuth scopes for readonly Google Drive access\n * b2: support authentication with new bucket restricted application keys\n * docs: update sponsor logos\n * docs: fix lint error in changelog\n * Start v1.73.0-DEV development\n\n- Update to version 1.72.1:\n * Version v1.72.1\n * s3: add more regions for Selectel\n * log: fix backtrace not going to the --log-file #9014\n * build: fix lint warning after linter upgrade\n * configfile: add piped config support - fixes #9012\n * fs/log: fix PID not included in JSON log output\n * build: adjust lint rules to exclude new errors from linter update\n * proxy: fix error handling in tests spotted by the linter\n * googlecloudstorage: improve endpoint parameter docs\n * docs: note where a provider has an S3 compatible alternative\n * Add Shade as sponsor\n * docs: Clarify OAuth scopes for readonly Google Drive access\n * docs: update sponsor logos\n * docs: fix lint error in changelog\n * Start v1.72.1-DEV development\n\n- Update to version 1.72.0:\n * Version v1.72.0\n * rc: fix formatting in job/batch\n * test speed: fix formatting of help\n * docs: update sponsor logos\n * build: bump actions/checkout from 5 to 6\n * s3: add multi-part-upload support for If-Match and If-None-Match\n * rc: config/unlock: rename parameter to `configPassword` accept old as well\n * rc: correct names of parameters in job/list output\n * Add Nikolay Kiryanov to contributors\n * rc: add `executeId` to job statuses - fixes #8972\n * build: bump golang.org/x/crypto from 0.43.0 to 0.45.0 to fix CVE-2025-58181\n * s3: fix single file copying behavior with low permission - Fixes #8975\n * docs: onedrive: note how to backup up any user\u0027s data\n * Add Dominik Sander to contributors\n * Add jijamik to contributors\n * box: allow to configure with config file contents\n * http: add basic metadata and provide it via serve\n * ftp: fix transfers from servers that return 250 ok messages\n * b2: allow individual old versions to be deleted with --b2-versions - fixes #1626\n * build: fix tls: failed to verify certificate: x509: negative serial number\n * Add Sean Turner to contributors\n * s3: add support for --upload-header If-Match and If-None-Match\n * fix: comment typos\n * dropbox: fix error moving just created objects - fixes #8881\n * s3: add --s3-use-data-integrity-protections to fix BadDigest error in Alibaba, Tencent\n * rc: make sure fatal errors don\u0027t crash rclone - fixes #8955\n * pacer: factor call stack searching into its own package\n * rc: add osVersion, osKernel and osArch to core/version\n * build: update all dependencies\n * build(deps): bump golangci/golangci-lint-action from 8 to 9\n * webdav: fix out of memory with sharepoint-ntlm when uploading large file\n * testserver: fix owncloud test server startup\n * Add aliaj1 to contributors\n * ulozto: Fix downloads returning HTML error page\n * docs: adjust spectra logic example endpoint name\n * docs: update version introduced to v1.70 in doi docs\n * testserver: fix HDFS server after run.bash adjustments\n * testserver: remind developers about allocating a port\n * testserver: make run.bash variables less likely to collide with scripts\n * testserver: fix seafile servers messing up _connect string\n * testserver: make sure TestWebdavInfiniteScale uses an assigned port\n * testserver: make sure we don\u0027t overwrite the NAME variable set\n * Add n4n5 to contributors\n * Add Alex to contributors\n * Add Copilot to contributors\n * docs: update contributing docs regarding backend documentation\n * rc: add jobs stats\n * docs: fix alignment of some of the icons in the storage system dropdown\n * docs: run markdownlint on _index.md\n * docs: fix markdownlint issues and other styling improvements in backend command docs\n * docs: fix markdownlint issue md046/code-block-style in backend command docs\n * docs: fix missing punctuation in backend commands short description\n * docs: fix markdownlint issues in backend command generated output\n * build: improve backend docs autogenerated marker line\n * backend/compress: add zstd compression\n * sftp: fix zombie SSH processes with --sftp-ssh - Fixes #8929\n * testserver: fix tests failing due to stopped servers\n * docs: add new integration tester site link\n * docs: update the method for running integration tests\n * bisync: fix failing tests\n * Add SublimePeace to contributors\n * b2: fix \"expected a FileSseMode but found: \u0027\u0027\"\n * docs: s3: clarify multipart uploads memory usage\n * test_all: fix detection of running servers\n * accounting: add AccountReadN for use in cluster\n * fs: add NonDefaultRC for discovering options in use\n * fs: move tests into correct files\n * rc: add NewJobFromBytes for reading jobs from non HTTP transactions\n * rc: add job/batch for sending batches of rc commands to run concurrently\n * Add Ted Robertson to contributors\n * Add Joseph Brownlee to contributors\n * Add fries1234 to contributors\n * Add Fawzib Rojas to contributors\n * Add Riaz Arbi to contributors\n * Add Lukas Krejci to contributors\n * Add Adam Dinwoodie to contributors\n * Add dulanting to contributors\n * docs: add AppArmor restrictions to rclone mount\n * check: improved reporting of differences in sizes and contents\n * mega: implement 2FA login\n * docs: change to light code block style to better match overall theme\n * docs: fix various markdownlint issues\n * build: restrict the markdown languages to use for code blocks\n * docs: fix various markdownlint issues\n * docs: fix markdownlint issue md013/line-length\n * docs: change syntax hightlighting for command examples from sh to console\n * docs: Clarify remote naming convention\n * b2: Add Server-Side encryption support\n * Added rclone archive command to create and read archive files\n * accounting: add io.Seeker/io.ReaderAt support to accounting.Account\n * operations: add ReadAt method to ReOpen\n * fstest: add ResetRun to allow the remote to be reset in tests\n * gcs: fix --gcs-storage-class to work with server side copy for objects\n * ulozto: implement the about functionality\n * local: add --skip-specials to ignore special files\n * swift: Report disk usage in segment containers\n * refactor: use strings.Builder to improve performance\n * Archive backend to read archives on cloud storage.\n * vfs: remove unecessary import in tests to fix import cycles\n * Add Lakshmi-Surekha to contributors\n * Add Andrew Gunnerson to contributors\n * Add divinity76 to contributors\n * build: enable support for aix/ppc64\n * rc: fix name of \"queue\" JSON key in docs for vfs/cache\n * cmount: windows: improve error message on missing winfsp\n * docs: add the Provider to the options examples in the backend docs\n * Add Aneesh Agrawal to contributors\n * Add viocha to contributors\n * Add reddaisyy to contributors\n * fs: remove unnecessary Seek call on log file\n * s3: make it easier to add new S3 providers\n * build(deps): bump actions/upload-artifact from 4 to 5\n * build(deps): bump actions/download-artifact from 5 to 6\n * ftp: fix SOCK proxy support - fixes #8892 (#8918)\n * webdav: Add Access-Control-Max-Age header for CORS preflight caching - fixes #5078\n * webdav: use SpaceSepList to parse bearer token command\n * refactor: use strings.Builder to improve performance\n * docs: re-arrange sponsors page\n * docs: add Spectra Logic as a sponsor\n * Add Oleksandr Redko to contributors\n * build: enable all govet checks (except fieldalignment and shadow) and fix issues.\n * march: fix --no-traverse being very slow - fixes #8860\n * Add vastonus to contributors\n * s3: add new FileLu S5 endpoints\n * build: remove obsolete build tag\n * azurefiles: add ListP interface - #4788\n * dropbox: add ListP interface - #4788\n * webdav: add ListP interface - #4788\n * pcloud: add ListP interface - #4788\n * box: add ListP interface - #4788\n * onedrive: add ListP interface - #4788\n * drive: add ListP interface - #4788\n * Add hunshcn to contributors\n * webdav: optimize bearer token fetching with singleflight\n * Changelog updates from Version v1.71.2\n * lib/http: cleanup indentation and other whitespace in http serve template\n * docs: improve formatting of http serve template parameters\n * build: stop markdown linter leaving behind docker containers\n * Add Marco Ferretti to contributors\n * s3: add cubbit as provider\n * s3: add servercore as a provider\n * docs: update sponsors\n * docs: update sponsor images\n * docs: update privacy policy with a section on user data\n * Add Dulani Woods to contributors\n * Add spiffytech to contributors\n * gcs: add region us-east5 - fixes #8863\n * jottacloud: refactor service list from map to slice to get predefined order\n * jottacloud: added support for traditional oauth authentication also for the main service\n * oauthutil: improved debug logs from token refresh\n * backend: add S3 provider for Hetzner object storage #8183\n * jottacloud: improved token refresh handling\n * s3: provider reordering\n * index: add missing providers\n * docs: add missing `\n * s3: add rabata as a provider\n * mega: fix 402 payment required errors - fixes #8758\n * Add Andrew Ruthven to contributors\n * Add Microscotch to contributors\n * Add iTrooz to contributors\n * build: Bump SwiftAIO container to a newer one\n * build: Retry stopping the test server\n * build: Increase attempts to connect to test server\n * swift: If storage_policy isn\u0027t set, use the root containers policy\n * proton: automated 2FA login with OTP secret key\n * serve s3: fix log output to remove the EXTRA messages\n * docs/jottacloud: update description of invalid_grant error according to changes\n * jottacloud: add support for MediaMarkt Cloud as a whitelabel service\n * s3: add FileLu S5 provider\n * docs: fix variants of --user-from-header\n * vfs: fix chunker integration test\n * test_all: give TestZoho: extra time as it has been timing out\n * test_all: give TestCompressDrive: extra time as it has been timing out\n * rclone config string: reduce quoting with Human rendering for strings #8859\n * Add juejinyuxitu to contributors\n * docs/jottacloud: update documentation with new whitelabel services and changed configuration flow\n * jottacloud: abort attempts to run unsupported rclone authorize command\n * jottacloud: minor adjustment of texts in config ui\n * jottacloud: add support for Let\u0027s Go Cloud (from MediaMarkt) as a whitelabel service\n * jottacloud: fix authentication for whitelabel services from Elkjp subsidiaries\n * jottacloud: refactor config handling of whitelabel services to use openid provider configuration\n * jottacloud: remove nil error object from error message\n * jottacloud: fix legacy authentication\n * docs: add remote setup page to main docs dropdown\n * docs: update remote setup page\n * docs: add link from authorize command docs to remote setup docs\n * docs: lowercase internet and web browser instead of Internet browser\n * docs: use the term backend name instead of fs name for authorize command\n * add `rclone config string` for making connection strings #8859\n * config: add more human readable configmap.Simple output\n * serve http: download folders as zip\n * s3: reorder providers to be in alphabetical order\n * refactor: use strings.FieldsFuncSeq to reduce memory allocations\n * accounting: add SetMaxCompletedTransfers method to fix bisync race #8815\n * accounting: add RemoveDoneTransfers method to fix bisync race #8815\n * bisync: fix race when CaptureOutput is used concurrently #8815\n * build: update all dependencies\n * Makefile: remove deprecated go mod usage\n * azurefiles: Fix server side copy not waiting for completion - fixes #8848\n * Changelog updates from Version v1.71.1\n * test_all: fix branch name in test report\n * pacer: fix deadlock with --max-connections\n * Revert \"azureblob: fix deadlock with --max-connections with InvalidBlockOrBlob errors\"\n * Add Youfu Zhang to contributors\n * Add Matt LaPaglia to contributors\n * smb: optimize smb mount performance by avoiding stat checks during initialization\n * pikpak: fix unnecessary retries by using URL expire parameter - fixes #8601\n * serve http: fix: logging url on start\n * docs: fix typo\n * b2: fix 1TB+ uploads\n * march: fix deadlock when using --fast-list on syncs - fixes #8811\n * build: slices.Contains, added in go1.21\n * build: use strings.CutPrefix introduced in go1.20\n * build: use sequence Split introduced in go1.24\n * build: use \"for i := range n\", added in go1.22\n * build: modernize benchmark usage\n * build: in tests use t.Context, added in go1.24\n * build: replace interface{} by the \u0027any\u0027 type added in go1.18\n * build: use the built-in min or max functions added in go1.21\n * Add russcoss to contributors\n * build: remove x := x made unnecessary by the new semantics of loops in go1.22\n * lib/pool: fix unreliable TestPoolMaxBufferMemory test\n * Update S-Pegg1 email\n * Add Jean-Christophe Cura to contributors\n * pool: fix flaky unreliability test\n * copyurl: reworked code, added concurrency and tests\n * copyurl: Added --url to read urls from csv file - #8127\n * docs: HDFS: erasure coding limitation #8808\n * fstest: fix slice bounds out of range error when using -remotes local\n * local: fix time zones on tests\n * s3: added SpectraLogic as a provider\n * local: fix rmdir \"Access is denied\" on windows - fixes #8363\n * bisync: fix error handling for renamed conflicts\n * docs: pcloud: update root_folder_id instructions\n * operations: fix partial name collisions for non --inplace copies\n * drive: docs: update making your own client ID instructions\n * swift: add ListP interface - #4788\n * memory: add ListP interface - #4788\n * oraceobjectstorage: add ListP interface - #4788\n * B2: add ListP interface - #4788\n * azureblob: add ListP interface - #4788\n * googlecloudstorage: add ListP interface - Fixes #8763\n * build: bump actions/github-script from 7 to 8\n * build: bump actions/setup-go from 5 to 6\n * bisync: fix chunker integration tests\n * bisync: fix koofr integration tests\n * internetarchive: fix server side copy files with spaces\n * lib/rest: add URLPathEscapeAll to URL escape as many chars as possible\n * Add alternate email for dougal to contributors\n * test speed: add command to test a specified remotes speed\n * docs: add link to MEGA S4 from MEGA page\n * Add Robin Rolf to contributors\n * Add anon-pradip to contributors\n * s3: Add Intercolo provider\n * gendocs: refactor and add logging of skipped command docs\n * gendocs: ignore missing rclone_mount.md, rclone_nfsmount.md, rclone_serve_nfs.md on windows\n * bin: add bisync.md generator\n * fstest: refactor to decouple package from implementation\n * gendocs: ignore missing rclone_mount.md on macOS\n * bisync: ignore expected \"nothing to transfer\" differences on tests\n * bisync: fix TestBisyncConcurrent ignoring -case\n * bisync: make number of parallel tests configurable\n * docs: clarify subcommand description in rclone usage\n * docs: fix description of regex syntax of name transform\n * docs: add some more details about supported regex syntax\n * makefile: fix lib/transform docs not getting updated\n * lib/pool: fix flaky test which was causing timeouts\n * Add dougal to contributors\n * vfs: fix SIGHUP killing serve instead of flushing directory caches\n * bisync: use unique stats groups on tests\n * fstest: stop errors in test cleanup changing the global stats\n * Add Motte to contributors\n * Add Claudius Ellsel to contributors\n * build: add local markdown linting to make check\n * lsf: add support for unix and unixnano time formats\n * docs: remove broken links from rc to commands\n * hashsum: changed output format when listing algorithms\n * docs: add example of how to add date as suffix\n * box: fix about after change in API return - fixes #8776\n * Add skbeh to contributors\n * Add Tilman Vogel to contributors\n * docs: fix incorrectly escaped windows path separators\n * build: restore error handling in gendocs\n * combine: propagate SlowHash feature\n * docs/oracleobjectstorage: add introduction before external links and remove broken link\n * docs: fix markdown lint issues in backend docs\n * docs: fix markdown lint issues in command docs\n * docs: update markdown code block json indent size 2\n * mount: do not log successful unmount as an error - fixes #8766\n * Start v1.72.0-DEV development\n\n- Update to version 1.71.2:\n * Version v1.71.2\n * docs: update sponsors\n * docs: update sponsor images\n * docs: update privacy policy with a section on user data\n * gcs: add region us-east5 - fixes #8863\n * index: add missing providers\n * docs: add missing `\n * mega: fix 402 payment required errors - fixes #8758\n * docs: fix variants of --user-from-header\n * docs: add remote setup page to main docs dropdown\n * docs: update remote setup page\n * docs: add link from authorize command docs to remote setup docs\n * docs: lowercase internet and web browser instead of Internet browser\n * docs: use the term backend name instead of fs name for authorize command\n * bisync: fix race when CaptureOutput is used concurrently #8815\n * azurefiles: Fix server side copy not waiting for completion - fixes #8848\n * pikpak: fix unnecessary retries by using URL expire parameter - fixes #8601\n * serve http: fix: logging url on start\n * docs: fix typo\n * b2: fix 1TB+ uploads\n * Start v1.71.2-DEV development\n\n- Update to version 1.71.1:\n * Version v1.71.1\n * pacer: fix deadlock with --max-connections\n * Revert \"azureblob: fix deadlock with --max-connections with InvalidBlockOrBlob errors\"\n * march: fix deadlock when using --fast-list on syncs - fixes #8811\n * docs: HDFS: erasure coding limitation #8808\n * local: fix rmdir \"Access is denied\" on windows - fixes #8363\n * bisync: fix error handling for renamed conflicts\n * docs: pcloud: update root_folder_id instructions\n * operations: fix partial name collisions for non --inplace copies\n * drive: docs: update making your own client ID instructions\n * internetarchive: fix server side copy files with spaces\n * lib/rest: add URLPathEscapeAll to URL escape as many chars as possible\n * docs: add link to MEGA S4 from MEGA page\n * docs: clarify subcommand description in rclone usage\n * docs: fix description of regex syntax of name transform\n * docs: add some more details about supported regex syntax\n * makefile: fix lib/transform docs not getting updated\n * vfs: fix SIGHUP killing serve instead of flushing directory caches\n * docs: remove broken links from rc to commands\n * docs: add example of how to add date as suffix\n * box: fix about after change in API return - fixes #8776\n * docs: fix incorrectly escaped windows path separators\n * build: restore error handling in gendocs\n * combine: propagate SlowHash feature\n * docs/oracleobjectstorage: add introduction before external links and remove broken link\n * docs: fix markdown lint issues in backend docs\n * docs: fix markdown lint issues in command docs\n * docs: update markdown code block json indent size 2\n * mount: do not log successful unmount as an error - fixes #8766\n * Start v1.71.1-DEV development\n\n- Update to version 1.71.0:\n * Version v1.71.0\n * fs: tls: add --client-pass support for encrypted --client-key files\n * ftp: make TLS config default to global TLS config - Fixes #6671\n * fshttp: return *Transport rather than http.RoundTripper from NewTransport\n * bisync: release from beta\n * bisync: fix markdown formatting issues flagged by linter in docs\n * bisync: fix --no-slow-hash settings on path2\n * Add cui to contributors\n * docs: add code of conduct\n * lib/mmap: convert to using unsafe.Slice to avoid deprecated reflect.SliceHeader\n * build: bump golangci/golangci-lint-action from 6 to 8\n * build: update golangci-lint configuration\n * build: ignore revive lint issue var-naming: avoid meaningless package names\n * build: fix lint issue: should omit type error from declaration\n * Revert \"build: downgrade linter to use go1.24 until it is fixed for go1.25\"\n * build: migrate golangci-lint configuration to v2 format\n * s3: add --s3-use-arn-region flag - fixes #8686\n * Add Binbin Qian to contributors\n * Add Lucas Bremgartner to contributors\n * docs: add tips about outdated certificates\n * FAQ: specify the availability of SSL_CERT_* env vars\n * pikpak: add file name integrity check during upload\n * bisync: skip TestBisyncConcurrent on non-local\n * internetarchive: fix server side copy files with \u0026\n * Revert \"s3: set useAlreadyExists to false for Alibaba OSS\"\n * Add huangnauh to contributors\n * smb: improve multithreaded upload performance using multiple connections\n * bisync: fix data races on tests\n * bisync: remove unused parameters\n * bisync: deglobalize to fix concurrent runs via rc - fixes #8675\n * mount: fix identification of symlinks in directory listings\n * s3: fix Content-Type: aws-chunked causing upload errors with --metadata\n * config: fix problem reading pasted tokens over 4095 bytes\n * config: fix test failure on local machine with a config file\n * log: add log rotation to --log-file - fixes #2259\n * accounting: Fix stats (speed=0 and eta=nil) when starting jobs via rc\n * docs: update overview table for oracle object storage\n * Add praveen-solanki-oracle to contributors\n * oracleobjectstorage: add read only metadata support - Fixes #8705\n * doc: sync doesn\u0027t symlinks in dest without --link - Fixes #8749\n * s3: sort providers in docs\n * s3: add docs for Exaba Object Storage\n * azureblob: fix double accounting for multipart uploads - fixes #8718\n * pool: fix deadlock with --max-buffer-memory\n * azureblob: fix deadlock with --max-connections with InvalidBlockOrBlob errors\n * build: downgrade linter to use go1.24 until it is fixed for go1.25\n * build: update all dependencies\n * build: update to go1.25 and make go1.24 the minimum required version\n * Add Timothy Jacobs to contributors\n * bisync: fix time.Local data race on tests - fixes #8272\n * googlecloudstorage: fix rateLimitExceeded error on bisync tests\n * accounting: populate transfer snapshot with \"what\" value\n * build(deps): bump actions/checkout from 4 to 5\n * build(deps): bump actions/download-artifact from 4 to 5\n * googlecloudstorage: enable bisync integration tests\n * fstest: fix parsing of commas in -remotes\n * azurefiles: fix hash getting erased when modtime is set\n * bisync: disable --sftp-copy-is-hardlink on sftp tests\n * local: fix --copy-links on Windows when listing Junction points\n * operations: fix too many connections open when using --max-memory\n * pool: fix deadlock with --max-memory and multipart transfers\n * pool: unify memory between multipart and asyncreader to use one pool\n * docs: update links to rcloneui\n * docs: add MEGA S4 as a gold sponsor\n * about: fix potential overflow of about in various backends\n * box: fix about: cannot unmarshal number 1.0e+18 into Go struct field\n * oauthutil: fix nil pointer crash when started with expired token\n * rc: listremotes should send an empty array instead of nil\n * config: add error if RCLONE_CONFIG_PASS was supplied but didn\u0027t decrypt config\n * rc: add config/unlock to unlock the config file\n * ftp: allow insecure TLS ciphers - fixes #8701\n * s3: set useAlreadyExists to false for Alibaba OSS\n * docs: update sponsors page\n * fs: allow global variables to be overriden or set on backend creation\n * fs: allow setting of --http_proxy from command line\n * tests: cloudinary: remove test ignore after merging fix from #8707\n * Add Antonin Goude to contributors\n * Add Yu Xin to contributors\n * Add houance to contributors\n * Add Florent Vennetier to contributors\n * Add n4n5 to contributors\n * Add Albin Parou to contributors\n * Add liubingrun to contributors\n * sync: fix testLoggerVsLsf when backend only reads modtime\n * sync: fix testLoggerVsLsf checking wrong fs\n * docs: fix make opengraph tags absolute as not all sites understand relative\n * docs: update contributing guide regarding markdown documentation\n * build: add markdown linting to workflow\n * build: add markdownlint configuration\n * docs: minor format cleanup install.md\n * docs: fix markdownlint issue md049/emphasis-style\n * docs: fix markdownlint issue md036/no-emphasis-as-heading\n * docs: fix markdownlint issue md033/no-inline-html\n * docs: fix markdownlint issue md025/single-title\n * docs: fix markdownlint issue md041/first-line-heading\n * docs: fix markdownlint issue md001/heading-increment\n * docs: fix markdownlint issue md003/heading-style\n * docs: fix markdownlint issue md034/no-bare-urls\n * docs: fix markdownlint issue md010/no-hard-tabs\n * docs: fix markdownlint issue md013/line-length\n * docs: fix markdownlint issue md038/no-space-in-code\n * docs: fix markdownlint issue md040/fenced-code-language\n * docs: fix markdownlint issue md046/code-block-style\n * docs: fix markdownlint issue md037/no-space-in-emphasis\n * docs: fix markdownlint issue md059/descriptive-link-text\n * docs: fix markdownlint issues md007/ul-indent md004/ul-style\n * docs: fix markdownlint issue md012/no-multiple-blanks\n * docs: fix markdownlint issue md058/blanks-around-tables\n * docs: fix markdownlint issue md022/blanks-around-headings\n * docs: fix markdownlint issue md031/blanks-around-fences\n * docs: fix markdownlint issue md032/blanks-around-lists\n * docs: fix markdownlint issue md009/no-trailing-spaces\n * docs: fix markdownlint issue md014/commands-show-output\n * docs: fix markdownlint issues md007/ul-indent md004/ul-style (bin/update-authors.py)\n * docs: fix markdownlint issues md007/ul-indent md004/ul-style (authors.md)\n * docs: add opengraph tags for website social media previews\n * mount: note that bucket based remotes can use directory markers\n * pikpak: add docs for methods to clarify name collision handling and restrictions\n * pikpak: enhance Copy method to handle name collisions and improve error management\n * pikpak: enhance Move for better handling of error and name collision\n * accounting: fix incorrect stats with --transfers=1 - fixes #8670\n * rc: fix `operations/check` ignoring `oneWay` parameter\n * s3: add OVHcloud Object Storage provider\n * docs: rc: fix description of how to read local config\n * build: limit check for edits of autogenerated files to only commits in a pull request\n * build: extend check for edits of autogenerated files to all commits in a pull request\n * smb: refresh Kerberos credentials when ccache file changes\n * s3: fix multipart upload and server side copy when using bucket policy SSE-C\n * backend/s3: Fix memory leak by cloning strings #8683\n * purge: exit with a fatal error if filters are set on `rclone purge`\n * docs: Add Backblaze as a Platinum sponsor\n * Add Sam Pegg to contributors\n * googlephotos: added warning for Google Photos compatability-fixes #8672\n * test: remove flakey TestChunkerChunk50bYandex: test\n * docs: Consolidate entries for Josh Soref in contributors\n * docs: remove dead link to example of writing a plugin\n * filescom: document that hashes need to be enabled - fixes #8674\n * Add Sudipto Baral to contributors\n * docs: fix incorrect json syntax in sample output\n * docs: ignore author email piyushgarg80\n * docs: fix header level for --dump option section\n * docs: use stringArray as parameter type\n * docs: use consistent markdown heading syntax\n * imagekit: remove server side Copy method as it was downloading and uploading\n * imagekit: don\u0027t low level retry uploads\n * imagekit: return correct error when attempting to upload zero length files\n * smb: add --smb-kerberos-ccache option to set kerberos ccache per smb backend\n * test: fix smb kerberos integration tests\n * Changelog updates from Version v1.70.3\n * config: make parsing of duration options consistent\n * docs: cleanup usage\n * docs: break long lines\n * docs: add option value type to header where missing\n * docs: mention that identifiers in option values are case insensitive\n * docs: rewrite dump option examples\n * docs: use markdown inline code format for dump option headers that are real examples\n * docs: change spelling from server side to server-side\n * docs: cleanup header casing\n * docs: rename OSX to macOS\n * docs: fix list and code block issue\n * docs: consistent markdown list format\n * docs: split section with general description of options with that documenting actual main options\n * docs: improve description of option types\n * docs: use space instead of equal sign to separate option and value in headers\n * docs: use comma to separate short and long option format in headers\n * docs: remove use of uncommon parameter types\n * docs: remove use of parameter type FILE\n * docs: remove use of parameter type DIR\n * docs: remove use of parameter type CONFIG_FILE\n * docs: change use of parameter type N and NUMBER to int consistent with flags and cli help\n * docs: change use of parameter type TIME to Duration consistent with flags and cli help\n * docs: change use of parameter type BANDWIDTH_SPEC to BwTimetable consistent with flags and cli help\n * docs: change use of parameter type SIZE to SizeSuffix consistent with flags and cli help\n * docs: cleanup markdown header format\n * docs: explain separated list parameters\n * azureblob: fix server side copy error \"requires exactly one scope\"\n * test: remove and ignore failing integration tests\n * docs: explain the json log format in more detail\n * check: fix difference report (was reporting error counts)\n * serve sftp: add support for more hashes (crc32, sha256, blake3, xxh3, xxh128)\n * serve sftp: extract function refactoring for handling hashsum commands\n * sftp: add support for more hashes (crc32, sha256, blake3, xxh3, xxh128)\n * local: configurable supported hashes\n * hash: add support for BLAKE3, XXH3, XXH128\n * vfs: make integration TestDirEntryModTimeInvalidation test more reliable\n * smb: skip non integration tests when doing integration tests\n * seafile: fix integration test errors by adding dot to encoding\n * linkbox: fix upload error \"user upload file not exist\"\n * build: remove integration tests which are too slow\n * march: fix deadlock when using --no-traverse - fixes #8656\n * pikpak: improve error handling for missing links and unrecoverable 500s\n * pikpak: rewrite upload to bypass AWS S3 manager - fixes #8629\n * test: fix TestSMBKerberos password expiring errors\n * Add Vikas Bhansali to contributors\n * Add Ross Smith II to contributors\n * azureblob,azurefiles: add support for client assertion based authentication\n * webdav: fix setting modtime to that of local object instead of remote\n * build: set default shell to bash in build.yml\n * docs: fix filescom/filelu link mixup\n * Add Davide Bizzarri to contributors\n * fix: b2 versionAt read metadata\n * test: make TestWebdavInfiniteScale startup more reliable\n * test_all: add _connect_delay for slow starting servers\n * docs: update link for filescom\n * test_all: make TestWebdav InfiniteScale integration tests run\n * test_all: make SMB with Kerberos integration tests run properly\n * test_all: allow an env parameter to set environment variables\n * Changelog updates from Version v1.70.2\n * Add Ali Zein Yousuf to contributors\n * Add $@M@RTH_ to contributors\n * docs: update client ID instructions to current Azure AD portal - fixes #8027\n * s3: add Zata provider\n * pacer: fix nil pointer deref in RetryError - fixes #8077\n * docs: Remove Warp as a sponsor\n * docs: add files.com as a Gold sponsor\n * docs: add links to SecureBuild docker image\n * Add curlwget to contributors\n * convmv: fix moving to unicode-equivalent name - fixes #8634\n * transform: add truncate_keep_extension and truncate_bytes\n * convmv: make --dry-run logs less noisy\n * sync: avoid copying dir metadata to itself\n * docs: fix some function names in comments\n * combine: fix directory not found errors with ListP interface - Fixes #8627\n * local: fix --skip-links on Windows when skipping Junction points\n * Add Marvin Rsch to contributors\n * build: bump github.com/go-chi/chi/v5 from 5.2.1 to 5.2.2 to fix GHSA-vrw8-fxc6-2r93\n * copy,copyto,move,moveto: implement logger flags to store result of sync\n * log: fix deadlock when using systemd logging - fixes #8621\n * docs: googlephotos: detail how to make your own client_id - fixes #8622\n * Add necaran to contributors\n * mega: fix tls handshake failure - fixes #8565\n * Changelog updates from Version v1.70.1\n * Add jinjingroad to contributors\n * docs: DOI grammar error\n * docs: lib/transform: cleanup formatting\n * lib/transform: avoid empty charmap entry\n * chore: fix function name\n * convmv: fix spurious \"error running command echo\" on Windows\n * docs: client-credentials is not support by all backends\n * Start v1.71.0-DEV development\n\n- Update to version 1.70.3:\n * Version v1.70.3\n * azureblob: fix server side copy error \"requires exactly one scope\"\n * docs: explain the json log format in more detail\n * check: fix difference report (was reporting error counts)\n * linkbox: fix upload error \"user upload file not exist\"\n * march: fix deadlock when using --no-traverse - fixes #8656\n * pikpak: improve error handling for missing links and unrecoverable 500s\n * webdav: fix setting modtime to that of local object instead of remote\n * fix: b2 versionAt read metadata\n * Start v1.70.3-DEV development\n * docs: fix filescom/filelu link mixup\n * docs: update link for filescom\n\n- Update to version 1.70.2:\n * Version v1.70.2\n * docs: update client ID instructions to current Azure AD portal - fixes #8027\n * mega: fix tls handshake failure - fixes #8565\n * pacer: fix nil pointer deref in RetryError - fixes #8077\n * convmv: fix moving to unicode-equivalent name - fixes #8634\n * convmv: make --dry-run logs less noisy\n * sync: avoid copying dir metadata to itself\n * combine: fix directory not found errors with ListP interface - Fixes #8627\n * local: fix --skip-links on Windows when skipping Junction points\n * build: bump github.com/go-chi/chi/v5 from 5.2.1 to 5.2.2 to fix GHSA-vrw8-fxc6-2r93\n * log: fix deadlock when using systemd logging - fixes #8621\n * docs: googlephotos: detail how to make your own client_id - fixes #8622\n * pikpak: fix uploads fail with \"aws-chunked encoding is not supported\" error\n * Start v1.70.2-DEV development\n * docs: Remove Warp as a sponsor\n * docs: add files.com as a Gold sponsor\n * docs: add links to SecureBuild docker image\n\n- Update to version 1.70.1:\n * Version v1.70.1\n * docs: DOI grammar error\n * docs: lib/transform: cleanup formatting\n * lib/transform: avoid empty charmap entry\n * chore: fix function name\n * convmv: fix spurious \"error running command echo\" on Windows\n * docs: client-credentials is not support by all backends\n * Start v1.70.1-DEV development\n\n- Update to version 1.70.0:\n * Version v1.70.0\n * ftp: add --ftp-http-proxy to connect via HTTP CONNECT proxy\n * pcloud: fix \"Access denied. You do not have permissions to perform this operation\" on large uploads\n * operations: fix TransformFile when can\u0027t server-side copy/move\n * fstest: fix -verbose flag after logging revamp\n * googlecloudstorage: fix directory marker after // changes in #5858\n * s3: fix directory marker after // changes in #5858\n * azureblob: fix directory marker after // changes in #5858\n * tests: ignore some more habitually failing tests\n * googlephotos: fix typo in error message - Fixes #8600\n * s3: MEGA S4 support\n * Add Ser-Bul to contributors\n * chunker: fix double-transform\n * docs: mailru: added note about permissions level choice for the apps password\n * tests: ignore habitually failing tests and backends\n * docs: link to asciinema rather than including the js\n * docs: target=\"_blank\" must have rel=\"noopener\"\n * sync: fix testLoggerVsLsf when dst is local\n * docs: fix FileLu docs\n * build: update all dependencies\n * onedrive: fix crash if no metadata was updated\n * Add kingston125 to contributors\n * Add Flora Thiebaut to contributors\n * Add FileLu cloud storage backend\n * doi: add new doi backend\n * build: fix check_autogenerated_edits.py flagging up files that didn\u0027t exist\n * docs: rc: add more info on how to discover _config and _filter parameters #8584\n * s3: add Exaba provider\n * convmv: add convmv command\n * lib/transform: add transform library and --name-transform flag\n * march: split src and dst\n * Add ahxxm to contributors\n * Add Nathanael Demacon to contributors\n * b2: use file id from listing when not presented in headers - fixes #8113\n * fs: fix goroutine leak and improve stats accounting process\n * march: fix syncing with a duplicate file and directory\n * Add PrathameshLakawade to contributors\n * Add Oleksiy Stashok to contributors\n * docs: fix page_facing_up typo next to Lyve Cloud in README.md\n * backend/s3: require custom endpoint for Lyve Cloud v2 support\n * backend: skip hash calculation when the hashType is None - fixes #8518\n * azureblob: fix multipart server side copies of 0 sized files\n * Add Jeremy Daer to contributors\n * Add wbulot to contributors\n * s3: add Pure Storage FlashBlade provider support (#8575)\n * backend/gofile: update to use new direct upload endpoint\n * log: add --windows-event-log-level to support Windows Event Log\n * fs: Remove github.com/sirupsen/logrus and replace with log/slog\n * Add fhuber to contributors\n * cmd serve s3: fix ListObjectsV2 response\n * Changelog updates from Version v1.69.3\n * onedrive: re-add --onedrive-upload-cutoff flag\n * onedrive: fix \"The upload session was not found\" errors\n * Add Germn Casares to contributors\n * Add Jeff Geerling to contributors\n * googlephotos: update read only and read write scopes to meet Google\u0027s requirements.\n * build: update github.com/ebitengine/purego to v0.8.3 to fix mac_amd64 build\n * docs: add hint about config touch and config file not found\n * docs: add FAQ for dismissing \u0027rclone.conf not found\u0027\n * docs: document how to keep an out of tree backend\n * Add Clment Wehrung to contributors\n * iclouddrive: fix panic and files potentially downloaded twice\n * docs: move --max-connections documentation to the correct place\n * Add Ben Boeckel to contributors\n * Add Tho Neyugn to contributors\n * docs: fix typo in s3/storj docs\n * serve s3: remove redundant handler initialization\n * Changelog updates from Version 1.69.2\n * sftp: add --sftp-http-proxy to connect via HTTP CONNECT proxy\n * Add Jugal Kishore to contributors\n * docs: correct SSL docs anchor link from #ssl-tls to #tls-ssl\n * drive: metadata: fix error when setting copy-requires-writer-permission on a folder\n * docs: Update contributors\n * build: bump golang.org/x/net from 0.36.0 to 0.38.0\n * Update README.md\n * docs: fix typos via codespell\n * webdav: add an ownCloud Infinite Scale vendor that enables tus chunked upload support\n * onedrive: fix metadata ordering in permissions\n * Add Ben Alex to contributors\n * Add simwai to contributors\n * iclouddrive: fix so created files are writable\n * cmd/authorize: show required arguments in help text\n * cloudinary: var naming convention - #8416\n * cloudinary: automatically add/remove known media files extensions #8416\n * Add Markus Gerstel to contributors\n * Add Enduriel to contributors\n * Add huanghaojun to contributors\n * Add simonmcnair to contributors\n * Add Samantha Bowen to contributors\n * s3: documentation regression - fixes #8438\n * hash: add SHA512 support for file hashes\n * vfs: fix inefficient directory caching when directory reads are slow\n * docs: update fuse version in docker docs\n * fs/config: Read configuration passwords from stdin even when terminated with EOF - fixes #8480\n * cmd/gitannex: Reject unknown layout modes in INITREMOTE\n * cmd/gitannex: Add configparse.go and refactor\n * cmd/gitannex: Permit remotes with options\n * serve ftp: add serve rc interface\n * serve sftp: add serve rc interface\n * serve restic: add serve rc interface\n * serve s3: add serve rc interface\n * serve dlna: add serve rc interface\n * serve webdav: add serve rc interface - fixes #4505\n * serve http: add serve rc interface\n * serve nfs: add serve rc interface\n * serve: Add rc control for serve commands #4505\n * configstruct: add SetAny to parse config from the rc\n * rc: In options/info make FieldName contain a \".\" if it should be nested\n * serve restic: convert options to new style\n * serve s3: convert options to new style\n * serve http: convert options to new style\n * serve webdav: convert options to new style\n * auth proxy: convert options to new style\n * auth proxy: add VFS options parameter for use for default VFS\n * serve: make the servers self registering\n * lib/http: fix race between Serve() and Shutdown()\n * lib/http: add Addr() method to return the first configured server address\n * Add Danny Garside to contributors\n * docs: fix minor typo in box docs\n * sync: implement --list-cutoff to allow on disk sorting for reduced memory use\n * march: Implement callback based syncing\n * list: add ListDirSortedFn for callback oriented directory listing\n * list: Implement Sorter to sort directory entries\n * cache: mark ListP as not supported yet\n * hasher: implement ListP interface\n * compress: implement ListP interface\n * chunker: mark ListP as not supported yet\n * union: mark ListP as not supported yet\n * crypt: implement ListP interface\n * combine: implement ListP interface\n * s3: Implement paged listing interface ListP\n * list: add WithListP helper to implement List for ListP backends\n * walk: move NewListRHelper into list.Helper to avoid circular dependency\n * fs: define ListP interface for paged listing #4788\n * accounting: Add listed stat for number of directory entries listed\n * walk: factor Listing helpers into their own file and add tests\n * serve nfs: make metadata files have special file handles\n * serve nfs: change the format of --nfs-cache-type symlink file handles\n * vfs: add --vfs-metadata-extension to expose metadata sidecar files\n * docs: Add rcloneui.com as Silver Sponsor\n * Add Klaas Freitag to contributors\n * Add eccoisle to contributors\n * Add Fernando Fernndez to contributors\n * Add alingse to contributors\n * Add Jrn Friedrich Dreyer to contributors\n * docs: replace option --auto-filename-header with --header-filename\n * build: update github.com/golang-jwt/jwt/v5 from 5.2.1 to 5.2.2 to fix CVE-2025-30204\n * docs/googlephotos: fix typos\n * build: bump github.com/golang-jwt/jwt/v4 from 4.5.1 to 4.5.2\n * operations: fix call fmt.Errorf with wrong err\n * webdav: retry propfind on 425 status\n * Add --max-connections to control maximum backend concurrency\n * rc: fix debug/* commands not being available over unix sockets\n * cmd/gitannex: Prevent tests from hanging when assertion fails\n * cmd/gitannex: Add explicit timeout for mock stdout reads in tests\n * http: correct root if definitely pointing to a file - fixes #8428\n * pool: add --max-buffer-memory to limit total buffer memory usage\n * filter: Add `--hash-filter` to deterministically select a subset of files\n * build: update golang.org/x/net to 0.36.0. to fix CVE-2025-22869\n * rc: add add short parameter to core/stats to not return transferring and checking\n * fs: fix corruption of SizeSuffix with \"B\" suffix in config (eg --min-size)\n * filters: show --min-size and --max-size in --dump filters\n * build: check docs for edits of autogenerated sections\n * Add jack to contributors\n * docs: fix incorrect mentions of vfs-cache-min-free-size\n * fs/object: fix memory object out of bounds Seek\n * serve nfs: fix unlikely crash\n * docs: update minimum OS requirements for go1.24\n * cmd/gitannex: Tweak parsing of \"rcloneremotename\" config\n * cmd/gitannex: Drop var rebindings now that we have go1.23\n * docs: add note for using rclone cat for slicing out a byte range from a file\n * rcserver: improve content-type check\n * build: modernize Go usage\n * build: update all dependencies and fix deprecations\n * build: update golang.org/x/crypto to v0.35.0 to fix CVE-2025-22869\n * build: make go1.23 the minimum go version\n * cmd/gitannex: Add to integration tests\n * cmd/gitannex: Simplify verbose failures in tests\n * cmd/gitannex: Port unit tests to fstest\n * vfs: fix integration test failures\n * azureblob: fix errors not being retried when doing single part copy\n * azureblob: handle retry error codes more carefully\n * touch: make touch obey --transfers\n * Add luzpaz to contributors\n * Add Dave Vasilevsky to contributors\n * docs: fix various typos Found via\n * dropbox: Retry link without expiry\n * Dropbox: Support Dropbox Paper\n * chore: update contributor email\n * docs: correct stable release workflow\n * Add Lorenz Brun to contributors\n * Add Michael Kebe to contributors\n * vfs: fix directory cache serving stale data\n * build: fix docker plugin build - fixes #8394\n * docs: improved sftp limitations\n * Changelog updates from Version v1.69.1\n * docs: add FileLu as sponsors and tidy sponsor logos\n * accounting: fix percentDiff calculation -- fixes #8345\n * vfs: fix the cache failing to upload symlinks when --links was specified\n * Add jbagwell-akamai to contributors\n * Add ll3006 to contributors\n * doc: add note on concurrency of rclone purge\n * s3: add latest Linode Object Storage endpoints\n * cmd: fix crash if rclone is invoked without any arguments - Fixes #8378\n * build: disable docker builds on PRs \u0026 add missing dockerfile changes\n * sync: copy dir modtimes even when copyEmptySrcDirs is false - fixes #8317\n * sync: add tests to check dir modtimes are kept when syncing\n * fix golangci-lint errors\n * bisync: fix false positive on integration tests\n * s3: split the GCS quirks into -s3-use-x-id and -s3-sign-accept-encoding #8373\n * Add Joel K Biju to contributors\n * stats: fix the speed not getting updated after a pause in the processing\n * opendrive: added --opendrive-access flag to handle permissions\n * bisync: fix listings missing concurrent modifications - fixes #8359\n * Added parallel docker builds and caching for go build in the container\n * smb: improve connection pooling efficiency\n * lib/oauthutil: fix redirect URL mismatch errors - fixes #8351\n * b2: fix \"fatal error: concurrent map writes\" - fixes #8355\n * Add Alexander Minbaev to contributors\n * Add Zachary Vorhies to contributors\n * Add Jess to contributors\n * s3: add IBM IAM signer - fixes #7617\n * serve nfs: update docs to note Windows is not supported - fixes #8352\n * cmd/config(update remote): introduce --no-output option\n * s3: add DigitalOcean regions SFO2, LON1, TOR1, BLR1\n * sync: fix cpu spinning when empty directory finding with leading slashes\n * s3: fix handling of objects with // in #5858\n * azureblob: fix handling of objects with // in #5858\n * fstest: add integration tests objects with // on bucket based backends #5858\n * fs/list: tweak directory listing assertions after allowing // names\n * lib/bucket: fix tidying of // in object keys #5858\n * lib/bucket: add IsAllSlashes function\n * azureblob: remove uncommitted blocks on InvalidBlobOrBlock error\n * azureblob: implement multipart server side copy\n * azureblob: speed up server side copies for small files #8249\n * azureblob: cleanup uncommitted blocks on upload errors\n * azureblob: factor readMetaData into readMetaDataAlways returning blob properties\n * Add b-wimmer to contributors\n * azurefiles: add --azurefiles-use-az and --azurefiles-disable-instance-discovery\n * onedrive: mark German (de) region as deprecated\n * Add Trevor Starick to contributors\n * Add hiddenmarten to contributors\n * Add Corentin Barreau to contributors\n * Add Bruno Fernandes to contributors\n * Add Moises Lima to contributors\n * Add izouxv to contributors\n * Add Robin Schneider to contributors\n * Add Tim White to contributors\n * Add Christoph Berger to contributors\n * azureblob: add support for `x-ms-tags` header\n * rc: disable the metrics server when running `rclone rc`\n * internetarchive: add --internetarchive-metadata=\"key=value\" for setting item metadata\n * lib/batcher: Deprecate unused option: batch_commit_timeout\n * s3: Added new storage class to magalu provider\n * http servers: add --user-from-header to use for authentication\n * b2: add SkipDestructive handling to backend commands - fixes #8194\n * vfs: close the change notify channel on Shutdown\n * Docker image: Add label org.opencontainers.image.source for release notes in Renovate dependency updates\n * docs: add OneDrive Impersonate instructions - fixes #5610\n * docs: explain the stringArray flag parameter descriptor\n * iclouddrive: add notes on ADP and Missing PCS cookies - fixes #8310\n * docs: fix typos found by codespell in docs and code comments\n * fs: fix confusing \"didn\u0027t find section in config file\" error\n * vfs: fix race detected by race detector\n * Add Jonathan Giannuzzi to contributors\n * Add Spencer McCullough to contributors\n * Add Matt Ickstadt to contributors\n * smb: add support for kerberos authentication\n * drive: added `backend moveid` command\n * docs: fix reference to serves3 setting disable_multipart_uploads which was renamed\n * docs: fix link to Rclone Serve S3\n * serve s3: fix list objects encoding-type\n * build: update gopkg.in/yaml.v2 to v3\n * build: update all dependencies\n * bisync: fix go vet problems with go1.24\n * build: update to go1.24rc1 and make go1.22 the minimum required version\n * version: add --deps flag to show dependencies and other build info\n * doc: make man page well formed for whatis - fixes #7430\n * Start v1.70.0-DEV development\n\n- Install completion files in the right place.\n\n- Update to version 1.69.3:\n * build: update github.com/ebitengine/purego to work around bug in go1.24.3\n * build: reapply update github.com/golang-jwt/jwt/v5 from 5.2.1 to 5.2.2 to fix CVE-2025-30204\n\n- Update to version 1.69.2:\n - Bug fixes\n - accounting: Fix percentDiff calculation -- (Anagh Kumar\n Baranwal)\n - build\n - Update github.com/golang-jwt/jwt/v4 from 4.5.1 to 4.5.2 to\n fix CVE-2025-30204 (dependabot[bot])\n - Update github.com/golang-jwt/jwt/v5 from 5.2.1 to 5.2.2 to\n fix CVE-2025-30204 (dependabot[bot])\n - Update golang.org/x/crypto to v0.35.0 to fix CVE-2025-22869\n (Nick Craig-Wood)\n - Update golang.org/x/net from 0.36.0 to 0.38.0 to fix\n CVE-2025-22870 (dependabot[bot])\n - Update golang.org/x/net to 0.36.0. to fix CVE-2025-22869\n (dependabot[bot])\n - Stop building with go \u003c go1.23 as security updates forbade\n it (Nick Craig-Wood)\n - Fix docker plugin build (Anagh Kumar Baranwal)\n - cmd: Fix crash if rclone is invoked without any arguments\n (Janne Hellsten)\n - config: Read configuration passwords from stdin even when\n terminated with EOF (Samantha Bowen)\n - doc fixes (Andrew Kreimer, Danny Garside, eccoisle, Ed\n Craig-Wood, emyarod, jack, Jugal Kishore, Markus Gerstel,\n Michael Kebe, Nick Craig-Wood, simonmcnair, simwai, Zachary\n Vorhies)\n - fs: Fix corruption of SizeSuffix with \"B\" suffix in config\n (eg --min-size) (Nick Craig-Wood)\n - lib/http: Fix race between Serve() and Shutdown() (Nick\n Craig-Wood)\n - object: Fix memory object out of bounds Seek (Nick\n Craig-Wood)\n - operations: Fix call fmt.Errorf with wrong err (alingse)\n - rc\n - Disable the metrics server when running rclone rc\n (hiddenmarten)\n - Fix debug/* commands not being available over unix sockets\n (Nick Craig-Wood)\n - serve nfs: Fix unlikely crash (Nick Craig-Wood)\n - stats: Fix the speed not getting updated after a pause in the\n processing (Anagh Kumar Baranwal)\n - sync\n - Fix cpu spinning when empty directory finding with leading\n slashes (Nick Craig-Wood)\n - Copy dir modtimes even when copyEmptySrcDirs is false\n (ll3006)\n - vfs\n - Fix directory cache serving stale data (Lorenz Brun)\n - Fix inefficient directory caching when directory reads are\n slow (huanghaojun)\n - Fix integration test failures (Nick Craig-Wood)\n - Drive\n - Metadata: fix error when setting\n copy-requires-writer-permission on a folder (Nick Craig-Wood)\n - Dropbox\n - Retry link without expiry (Dave Vasilevsky)\n - HTTP\n - Correct root if definitely pointing to a file (nielash)\n - Iclouddrive\n - Fix so created files are writable (Ben Alex)\n - Onedrive\n - Fix metadata ordering in permissions (Nick Craig-Wood)\n\n- Update to version 1.69.1:\n * Version v1.69.1\n * build: disable docker builds on PRs \u0026 add missing dockerfile changes\n * Added parallel docker builds and caching for go build in the container\n * docs: add FileLu as sponsors and tidy sponsor logos\n * vfs: fix the cache failing to upload symlinks when --links was specified\n * doc: add note on concurrency of rclone purge\n * s3: add latest Linode Object Storage endpoints\n * fix golangci-lint errors\n * bisync: fix listings missing concurrent modifications - fixes #8359\n * lib/oauthutil: fix redirect URL mismatch errors - fixes #8351\n * b2: fix \"fatal error: concurrent map writes\" - fixes #8355\n * serve nfs: update docs to note Windows is not supported - fixes #8352\n * s3: add DigitalOcean regions SFO2, LON1, TOR1, BLR1\n * onedrive: mark German (de) region as deprecated\n * s3: Added new storage class to magalu provider\n * vfs: close the change notify channel on Shutdown\n * docs: add OneDrive Impersonate instructions - fixes #5610\n * docs: explain the stringArray flag parameter descriptor\n * iclouddrive: add notes on ADP and Missing PCS cookies - fixes #8310\n * docs: fix typos found by codespell in docs and code comments\n * fs: fix confusing \"didn\u0027t find section in config file\" error\n * vfs: fix race detected by race detector\n * docs: fix reference to serves3 setting disable_multipart_uploads which was renamed\n * docs: fix link to Rclone Serve S3\n * serve s3: fix list objects encoding-type\n * doc: make man page well formed for whatis - fixes #7430\n * Start v1.69.1-DEV development\n\n- Update to version 1.69.0:\n https://rclone.org/changelog/#v1-69-0-2025-01-12\n\n Rclone is using golang.org/x/net but was not affected to\n CVE-2024-45337 and CVE-2024-45338.\n\n * Version v1.69.0\n * test_all: disable docker plugin tests\n * docs: fix typo\n * accounting: fix race stopping/starting the stats counter\n * docs: add github.com/icholy/gomajor to RELEASE for updating major versions\n * ftp: fix ls commands returning empty on \"Microsoft FTP Service\" servers\n * s3: add docs on data integrity\n * webdav: make --webdav-auth-redirect to fix 401 unauthorized on redirect\n * rest: make auth preserving redirects an option\n * box: fix panic when decoding corrupted PEM from JWT file\n * size: make output compatible with -P\n * vfs: add remote name to vfs cache log messages - fixes #7952\n * dropbox: fix return status when full to be fatal error\n * rc: add relative to vfs/queue-set-expiry\n * vfs: fix open files disappearing from directory listings\n * docker serve: parse all remaining mount and VFS options\n * smb: fix panic if stat fails\n * googlephotos: fix nil pointer crash on upload - fixes #8233\n * iclouddrive: tweak docs\n * serve dlna: sort the directory entries by directories first then alphabetically by name\n * serve nfs: fix missing inode numbers which was messing up ls -laR\n * serve nfs: implement --nfs-cache-type symlink\n * azureblob,oracleobjectstorage,s3: quit multipart uploads if the context is cancelled\n * http: fix incorrect URLs with initial slash\n * build: update `github.com/shirou/gopsutil` to v4\n * Replace Windows-specific NewLazyDLL with NewLazySystemDLL\n * lib/oauthutil: don\u0027t require token to exist for client credentials flow\n * fs/operations: make log messages consistent for mkdir/rmdir at INFO level\n * Add Francesco Frassinelli to contributors\n * smb: Add support for Kerberos authentication.\n * docs: smb: link to CloudSoda/go-smb2 fork\n * cloudinary: add cloudinary backend - fixes #7989\n * operations: fix eventual consistency in TestParseSumFile test\n * Add TAKEI Yuya to contributors\n * docs: Remove Backblaze as a Platinum sponsor\n * docs: add RcloneView as silver sponsor\n * serve docker: fix incorrect GID assignment\n * serve s3: fix Last-Modified timestamp\n * Add ToM to contributors\n * Add Henry Lee to contributors\n * Add Louis Laureys to contributors\n * docs: filtering: mention feeding --files-from from standard input\n * docs: filtering: fix --include-from copypaste error\n * s3: rename glacier storage class to flexible retrieval\n * b2: add daysFromStartingToCancelingUnfinishedLargeFiles to backend lifecycle command\n * build: update golang.org/x/net to v0.33.0 to fix CVE-2024-45338\n * azurefiles: fix missing x-ms-file-request-intent header\n * Add Thomas ten Cate to contributors\n * docs: Document --url and --unix-socket on the rc page\n * docs: link to the outstanding vfs symlinks issue\n * Add Yxxx to contributors\n * Add hayden.pan to contributors\n * docs: update pcloud doc to avoid puzzling token error when use remote rclone authorize\n * pikpak: add option to use original file links - fixes #8246\n * rc/job: use mutex for adding listeners thread safety\n * docs: mention in serve tls options when value is path to file - fixes #8232\n * build: update all dependencies\n * accounting: fix debug printing when debug wasn\u0027t set\n * Add Filipe Azevedo to contributors\n * fs: make --links flag global and add new --local-links and --vfs-links flag\n * vfs: add docs for -l/--links flag\n * nfsmount,serve nfs: introduce symlink support #2975\n * mount2: introduce symlink support #2975\n * mount: introduce symlink support #2975\n * cmount: introduce symlink support #2975\n * vfstest: make VFS test suite support symlinks\n * vfs: add symlink support to VFS\n * vfs: add ELOOP error\n * vfs: Add link permissions\n * vfs: Add VFS --links command line switch\n * vfs: add vfs.WriteFile to match os.WriteFile\n * fs: Move link suffix to fs\n * cmount: fix problems noticed by linter\n * mount2: Fix missing . and .. entries\n * sftp: fix nil check when using auth proxy\n * Add Martin Hassack to contributors\n * serve sftp: resolve CVE-2024-45337\n * googlecloudstorage: typo fix in docs\n * onedrive: add support for OAuth client credential flow - fixes #6197\n * lib/oauthutil: add support for OAuth client credential flow\n * lib/oauthutil: return error messages from the oauth process better\n * bin/test_backend_sizes.py fix compile flags and s3 reporting\n * test makefiles: add --flat flag for making directories with many entries\n * Add divinity76 to contributors\n * Add Ilias Ozgur Can Leonard to contributors\n * Add remygrandin to contributors\n * Add Michael R. Davis to contributors\n * cmd/mountlib: better snap mount error message\n * vfs: with --vfs-used-is-size value is calculated and then thrown away - fixes #8220\n * serve sftp: fix loading of authorized keys file with comment on last line - fixes #8227\n * oracleobjectstorage: make specifying compartmentid optional\n * plcoud: fix failing large file uploads - fixes #8147\n * docs: add docker volume plugin troubleshooting steps\n * docs: fix missing `state` parameter in `/auth` link in instructions\n * build: fix build failure on ubuntu\n * docs: upgrade fontawesome to v6\n * s3: fix multitenant multipart uploads with CEPH\n * Add David Seifert to contributors\n * Add vintagefuture to contributors\n * use better docs\n * googlecloudstorage: update docs on service account access tokens\n * test_all: POSIX head/tail invocations\n * icloud: Added note about app specific password not working\n * s3: fix download of compressed files from Cloudflare R2 - fixes #8137\n * s3: fix testing tiers which don\u0027t exist except on AWS\n * Changelog updates from Version v1.68.2\n * local: fix permission and ownership on symlinks with --links and --metadata\n * Revert \"Merge commit from fork\"\n * Add Dimitrios Slamaris to contributors\n * Merge commit from fork\n * onedrive: fix integration tests after precision change\n * operations: fix TestRemoveExisting on crypt backends by shortening the file name\n * bisync: fix output capture restoring the wrong output for logrus\n * serve sftp: update github.com/pkg/sftp to v1.13.7 and fix deadlock in tests\n * build: fix comments after golangci-lint upgrade\n * build: update all dependencies\n * build(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1\n * pikpak: fix fatal crash on startup with token that can\u0027t be refreshed\n * yandex: fix server side copying over existing object\n * sugarsync: fix server side copying over existing object\n * putio: fix server side copying over existing object\n * onedrive: fix server side copying over existing object\n * dropbox: fix server side copying over existing object\n * operations: add RemoveExisting to safely remove an existing file\n * gofile: fix server side copying over existing object\n * test_all: try to fix mailru rate limits in integration tests\n * Add shenpengfeng to contributors\n * Add Dimitar Ivanov to contributors\n * docs: fix function name in comment\n * sftp: allow inline ssh public certificate for sftp\n * serve s3: fix excess locking which was making serve s3 single threaded\n * lib/oauthutil: allow the browser opening function to be overridden\n * Add Moises Lima to contributors\n * lib/http: disable automatic authentication skipping for unix sockets\n * onedrive: fix Retry-After handling to look at 503 errors also\n * s3: Storj provider: fix server-side copy of files bigger than 5GB\n * s3: add Selectel as a provider\n * fs: fix Don\u0027t know how to set key \"chunkSize\" on upload errors in tests\n * drive: implement rclone backend rescue to rescue orphaned files\n * Add tgfisher to contributors\n * Add Diego Monti to contributors\n * Add Randy Bush to contributors\n * Add Alexandre Hamez to contributors\n * Add Simon Bos to contributors\n * docs: mention that inline comments are not supported in a filter-file\n * s3: add Wasabi eu-south-1 region\n * docs: fix forward refs in step 9 of using your own client id\n * docs: fix Scaleway Glacier website URL\n * dlna: fix loggingResponseWriter disregarding log level\n * build: remove required property on boolean inputs\n * build: use inputs context in github workflow\n * s3: fix crash when using --s3-download-url after migration to SDKv2\n * docs: update overview to show pcloud can set modtime\n * Add Andr Tran to contributors\n * Add Matthias Gatto to contributors\n * Add lostb1t to contributors\n * Add Noam Ross to contributors\n * Add Benjamin Legrand to contributors\n * s3: add Outscale provider\n * Add ICloud Drive backend\n * drive: add support for markdown format\n * accounting: fix global error acounting\n * onedrive: fix time precision for OneDrive personal\n * Add RcloneView as a sponsor\n * Add Leandro Piccilli to contributors\n * cache: skip bisync tests\n * bisync: allow blank hashes on tests\n * box: fix server-side copying a file over existing dst - fixes #3511\n * sync: add tests for copying/moving a file over itself\n * fs/cache: fix parent not getting pinned when remote is a file\n * gcs: add access token auth with --gcs-access-token\n * accounting: write the current bwlimit to the log on SIGUSR2\n * accounting: fix wrong message on SIGUSR2 to enable/disable bwlimit\n * gphotos: implment --gphotos-proxy to allow download of full resolution media\n * googlephotos: remove noisy debugging statements\n * docs: add note to CONTRIBUTING that the overview needs editing in 2 places\n * test_all: add ignoretests parameter for skipping certain tests\n * build: replace \"golang.org/x/exp/slices\" with \"slices\" now go1.21 is required\n * Changelog updates from Version v1.68.1\n * Makefile: Fail when doc recipes create dir named \u0027$HOME\u0027\n * Makefile: Prevent `doc` recipe from creating dir named \u0027$HOME\u0027\n * pikpak: fix cid/gcid calculations for fs.OverrideRemote\n * bisync: change exit code from 2 to 7 for critically aborted run\n * cmd: change exit code from 1 to 2 for syntax and usage errors\n * local: fix --copy-links on macOS when cloning\n * azureblob: add --azureblob-use-az to force the use of the Azure CLI for auth\n * azureblob: add --azureblob-disable-instance-discovery\n * s3: add initial --s3-directory-bucket to support AWS Directory Buckets\n * Add Lawrence Murray to contributors\n * backend/protondrive: improve performance of Proton Drive backend\n * ftp: implement --ftp-no-check-upload to allow upload to write only dirs\n * docs: document that fusermount3 may be needed when mounting/unmounting\n * Add rishi.sridhar to contributors\n * Add quiescens to contributors\n * docs/zoho: update options\n * zoho: make upload cutoff configurable\n * zoho: add support for private spaces\n * zoho: try to handle rate limits a bit better\n * zoho: print clear error message when missing oauth scope\n * zoho: switch to large file upload API for larger files, fix missing URL encoding of filenames for the upload API\n * zoho: use download server to accelerate downloads\n * opendrive: add about support to backend\n * pikpak: fix login issue where token retrieval fails\n * webdav: nextcloud: implement backoff and retry for 423 LOCKED errors\n * s3: fix rclone ignoring static credentials when env_auth=true\n * fs: fix setting stringArray config values from environment variables\n * rc: fix default value of --metrics-addr\n * fs: fix --dump filters not always appearing\n * docs: correct notes on docker manual build\n * Add ttionya to contributors\n * build: fix docker release build - fixes #8062\n * docs: add section for improving performance for s3\n * onedrive: fix spurious \"Couldn\u0027t decode error response: EOF\" DEBUG\n * Add Divyam to contributors\n * serve docker: add missing vfs-read-chunk-streams option in docker volume driver\n * Start v1.69.0-DEV development\n\n- Update to version 1.68.2:\n * Version v1.68.2\n * s3: fix multitenant multipart uploads with CEPH\n * local: fix permission and ownership on symlinks with --links and --metadata\n CVE-2024-52522 boo#1233422\n * bisync: fix output capture restoring the wrong output for logrus\n * build: fix comments after golangci-lint upgrade\n * build(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1\n * pikpak: fix fatal crash on startup with token that can\u0027t be refreshed\n * serve s3: fix excess locking which was making serve s3 single threaded\n * onedrive: fix Retry-After handling to look at 503 errors also\n * s3: Storj provider: fix server-side copy of files bigger than 5GB\n * docs: mention that inline comments are not supported in a filter-file\n * docs: fix forward refs in step 9 of using your own client id\n * docs: fix Scaleway Glacier website URL\n * dlna: fix loggingResponseWriter disregarding log level\n * s3: fix crash when using --s3-download-url after migration to SDKv2\n * docs: update overview to show pcloud can set modtime\n * Add RcloneView as a sponsor\n * accounting: fix wrong message on SIGUSR2 to enable/disable bwlimit\n * pikpak: fix cid/gcid calculations for fs.OverrideRemote\n * local: fix --copy-links on macOS when cloning\n * Start v1.68.2-DEV development\n\n- CVE-2024-51744: updated jwt to v4.5.1 (bsc#1232964).\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Leap-16.0-packagehub-213",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2026_20620-1.json"
},
{
"category": "self",
"summary": "SUSE Bug 1232964",
"url": "https://bugzilla.suse.com/1232964"
},
{
"category": "self",
"summary": "SUSE Bug 1233422",
"url": "https://bugzilla.suse.com/1233422"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45337 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45337/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45338 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45338/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-51744 page",
"url": "https://www.suse.com/security/cve/CVE-2024-51744/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-52522 page",
"url": "https://www.suse.com/security/cve/CVE-2024-52522/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-22869 page",
"url": "https://www.suse.com/security/cve/CVE-2025-22869/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-22870 page",
"url": "https://www.suse.com/security/cve/CVE-2025-22870/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-30204 page",
"url": "https://www.suse.com/security/cve/CVE-2025-30204/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-58181 page",
"url": "https://www.suse.com/security/cve/CVE-2025-58181/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-68121 page",
"url": "https://www.suse.com/security/cve/CVE-2025-68121/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-1229 page",
"url": "https://www.suse.com/security/cve/CVE-2026-1229/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-27141 page",
"url": "https://www.suse.com/security/cve/CVE-2026-27141/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-33186 page",
"url": "https://www.suse.com/security/cve/CVE-2026-33186/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-41176 page",
"url": "https://www.suse.com/security/cve/CVE-2026-41176/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-41179 page",
"url": "https://www.suse.com/security/cve/CVE-2026-41179/"
}
],
"title": "Security update for rclone",
"tracking": {
"current_release_date": "2026-04-23T16:22:47Z",
"generator": {
"date": "2026-04-23T16:22:47Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2026:20620-1",
"initial_release_date": "2026-04-23T16:22:47Z",
"revision_history": [
{
"date": "2026-04-23T16:22:47Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "rclone-1.73.5-bp160.1.1.aarch64",
"product": {
"name": "rclone-1.73.5-bp160.1.1.aarch64",
"product_id": "rclone-1.73.5-bp160.1.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"product": {
"name": "rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"product_id": "rclone-bash-completion-1.73.5-bp160.1.1.noarch"
}
},
{
"category": "product_version",
"name": "rclone-zsh-completion-1.73.5-bp160.1.1.noarch",
"product": {
"name": "rclone-zsh-completion-1.73.5-bp160.1.1.noarch",
"product_id": "rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
}
}
],
"category": "architecture",
"name": "noarch"
},
{
"branches": [
{
"category": "product_version",
"name": "rclone-1.73.5-bp160.1.1.ppc64le",
"product": {
"name": "rclone-1.73.5-bp160.1.1.ppc64le",
"product_id": "rclone-1.73.5-bp160.1.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "rclone-1.73.5-bp160.1.1.x86_64",
"product": {
"name": "rclone-1.73.5-bp160.1.1.x86_64",
"product_id": "rclone-1.73.5-bp160.1.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "openSUSE Leap 16.0",
"product": {
"name": "openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0"
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "rclone-1.73.5-bp160.1.1.aarch64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64"
},
"product_reference": "rclone-1.73.5-bp160.1.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rclone-1.73.5-bp160.1.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le"
},
"product_reference": "rclone-1.73.5-bp160.1.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rclone-1.73.5-bp160.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64"
},
"product_reference": "rclone-1.73.5-bp160.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rclone-bash-completion-1.73.5-bp160.1.1.noarch as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch"
},
"product_reference": "rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rclone-zsh-completion-1.73.5-bp160.1.1.noarch as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
},
"product_reference": "rclone-zsh-completion-1.73.5-bp160.1.1.noarch",
"relates_to_product_reference": "openSUSE Leap 16.0"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-45337",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45337"
}
],
"notes": [
{
"category": "general",
"text": "Applications and libraries which misuse connection.serverAuthenticate (via callback field ServerConfig.PublicKeyCallback) may be susceptible to an authorization bypass. The documentation for ServerConfig.PublicKeyCallback says that \"A call to this function does not guarantee that the key offered is in fact used to authenticate.\" Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions. For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key. Since this API is widely misused, as a partial mitigation golang.org/x/cry...@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth. Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45337",
"url": "https://www.suse.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "SUSE Bug 1234482 for CVE-2024-45337",
"url": "https://bugzilla.suse.com/1234482"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-23T16:22:47Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
},
{
"cve": "CVE-2024-45338",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45338"
}
],
"notes": [
{
"category": "general",
"text": "An attacker can craft an input to the Parse functions that would be processed non-linearly with respect to its length, resulting in extremely slow parsing. This could cause a denial of service.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45338",
"url": "https://www.suse.com/security/cve/CVE-2024-45338"
},
{
"category": "external",
"summary": "SUSE Bug 1234794 for CVE-2024-45338",
"url": "https://bugzilla.suse.com/1234794"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-23T16:22:47Z",
"details": "moderate"
}
],
"title": "CVE-2024-45338"
},
{
"cve": "CVE-2024-51744",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-51744"
}
],
"notes": [
{
"category": "general",
"text": "golang-jwt is a Go implementation of JSON Web Tokens. Unclear documentation of the error behavior in `ParseWithClaims` can lead to situation where users are potentially not checking errors in the way they should be. Especially, if a token is both expired and invalid, the errors returned by `ParseWithClaims` return both error codes. If users only check for the `jwt.ErrTokenExpired ` using `error.Is`, they will ignore the embedded `jwt.ErrTokenSignatureInvalid` and thus potentially accept invalid tokens. A fix has been back-ported with the error handling logic from the `v5` branch to the `v4` branch. In this logic, the `ParseWithClaims` function will immediately return in \"dangerous\" situations (e.g., an invalid signature), limiting the combined errors only to situations where the signature is valid, but further validation failed (e.g., if the signature is valid, but is expired AND has the wrong audience). This fix is part of the 4.5.1 release. We are aware that this changes the behaviour of an established function and is not 100 % backwards compatible, so updating to 4.5.1 might break your code. In case you cannot update to 4.5.0, please make sure that you are properly checking for all errors (\"dangerous\" ones first), so that you are not running in the case detailed above.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-51744",
"url": "https://www.suse.com/security/cve/CVE-2024-51744"
},
{
"category": "external",
"summary": "SUSE Bug 1232936 for CVE-2024-51744",
"url": "https://bugzilla.suse.com/1232936"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 3.1,
"baseSeverity": "LOW",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:N/A:N",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-23T16:22:47Z",
"details": "moderate"
}
],
"title": "CVE-2024-51744"
},
{
"cve": "CVE-2024-52522",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-52522"
}
],
"notes": [
{
"category": "general",
"text": "Rclone is a command-line program to sync files and directories to and from different cloud storage providers. Insecure handling of symlinks with --links and --metadata in rclone while copying to local disk allows unprivileged users to indirectly modify ownership and permissions on symlink target files when a superuser or privileged process performs a copy. This vulnerability could enable privilege escalation and unauthorized access to critical system files, compromising system integrity, confidentiality, and availability. This vulnerability is fixed in 1.68.2.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-52522",
"url": "https://www.suse.com/security/cve/CVE-2024-52522"
},
{
"category": "external",
"summary": "SUSE Bug 1233422 for CVE-2024-52522",
"url": "https://bugzilla.suse.com/1233422"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-23T16:22:47Z",
"details": "moderate"
}
],
"title": "CVE-2024-52522"
},
{
"cve": "CVE-2025-22869",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-22869"
}
],
"notes": [
{
"category": "general",
"text": "SSH servers which implement file transfer protocols are vulnerable to a denial of service attack from clients which complete the key exchange slowly, or not at all, causing pending content to be read into memory, but never transmitted.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-22869",
"url": "https://www.suse.com/security/cve/CVE-2025-22869"
},
{
"category": "external",
"summary": "SUSE Bug 1239322 for CVE-2025-22869",
"url": "https://bugzilla.suse.com/1239322"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-23T16:22:47Z",
"details": "important"
}
],
"title": "CVE-2025-22869"
},
{
"cve": "CVE-2025-22870",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-22870"
}
],
"notes": [
{
"category": "general",
"text": "Matching of hosts against proxy patterns can improperly treat an IPv6 zone ID as a hostname component. For example, when the NO_PROXY environment variable is set to \"*.example.com\", a request to \"[::1%25.example.com]:80` will incorrectly match and not be proxied.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-22870",
"url": "https://www.suse.com/security/cve/CVE-2025-22870"
},
{
"category": "external",
"summary": "SUSE Bug 1238572 for CVE-2025-22870",
"url": "https://bugzilla.suse.com/1238572"
},
{
"category": "external",
"summary": "SUSE Bug 1238611 for CVE-2025-22870",
"url": "https://bugzilla.suse.com/1238611"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 4.4,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:L",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-23T16:22:47Z",
"details": "moderate"
}
],
"title": "CVE-2025-22870"
},
{
"cve": "CVE-2025-30204",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-30204"
}
],
"notes": [
{
"category": "general",
"text": "golang-jwt is a Go implementation of JSON Web Tokens. Starting in version 3.2.0 and prior to versions 5.2.2 and 4.5.2, the function parse.ParseUnverified splits (via a call to strings.Split) its argument (which is untrusted data) on periods. As a result, in the face of a malicious request whose Authorization header consists of Bearer followed by many period characters, a call to that function incurs allocations to the tune of O(n) bytes (where n stands for the length of the function\u0027s argument), with a constant factor of about 16. This issue is fixed in 5.2.2 and 4.5.2.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-30204",
"url": "https://www.suse.com/security/cve/CVE-2025-30204"
},
{
"category": "external",
"summary": "SUSE Bug 1240441 for CVE-2025-30204",
"url": "https://bugzilla.suse.com/1240441"
},
{
"category": "external",
"summary": "SUSE Bug 1240442 for CVE-2025-30204",
"url": "https://bugzilla.suse.com/1240442"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-23T16:22:47Z",
"details": "important"
}
],
"title": "CVE-2025-30204"
},
{
"cve": "CVE-2025-58181",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-58181"
}
],
"notes": [
{
"category": "general",
"text": "SSH servers parsing GSSAPI authentication requests do not validate the number of mechanisms specified in the request, allowing an attacker to cause unbounded memory consumption.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-58181",
"url": "https://www.suse.com/security/cve/CVE-2025-58181"
},
{
"category": "external",
"summary": "SUSE Bug 1253784 for CVE-2025-58181",
"url": "https://bugzilla.suse.com/1253784"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-23T16:22:47Z",
"details": "moderate"
}
],
"title": "CVE-2025-58181"
},
{
"cve": "CVE-2025-68121",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-68121"
}
],
"notes": [
{
"category": "general",
"text": "During session resumption in crypto/tls, if the underlying Config has its ClientCAs or RootCAs fields mutated between the initial handshake and the resumed handshake, the resumed handshake may succeed when it should have failed. This may happen when a user calls Config.Clone and mutates the returned Config, or uses Config.GetConfigForClient. This can cause a client to resume a session with a server that it would not have resumed with during the initial handshake, or cause a server to resume a session with a client that it would not have resumed with during the initial handshake.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-68121",
"url": "https://www.suse.com/security/cve/CVE-2025-68121"
},
{
"category": "external",
"summary": "SUSE Bug 1256818 for CVE-2025-68121",
"url": "https://bugzilla.suse.com/1256818"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.4,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-23T16:22:47Z",
"details": "important"
}
],
"title": "CVE-2025-68121"
},
{
"cve": "CVE-2026-1229",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-1229"
}
],
"notes": [
{
"category": "general",
"text": "The CombinedMult function in the CIRCL ecc/p384 package (secp384r1 curve) produces an incorrect value for specific inputs. The issue is fixed by using complete addition formulas.\nECDH and ECDSA signing relying on this curve are not affected.\n\nThe bug was fixed in v1.6.3 https://github.com/cloudflare/circl/releases/tag/v1.6.3 .",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-1229",
"url": "https://www.suse.com/security/cve/CVE-2026-1229"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 9.8,
"baseSeverity": "CRITICAL",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-23T16:22:47Z",
"details": "critical"
}
],
"title": "CVE-2026-1229"
},
{
"cve": "CVE-2026-27141",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-27141"
}
],
"notes": [
{
"category": "general",
"text": "Due to missing nil check, sending 0x0a-0x0f HTTP/2 frames will cause a running server to panic",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-27141",
"url": "https://www.suse.com/security/cve/CVE-2026-27141"
},
{
"category": "external",
"summary": "SUSE Bug 1259062 for CVE-2026-27141",
"url": "https://bugzilla.suse.com/1259062"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-23T16:22:47Z",
"details": "important"
}
],
"title": "CVE-2026-27141"
},
{
"cve": "CVE-2026-33186",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-33186"
}
],
"notes": [
{
"category": "general",
"text": "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.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-33186",
"url": "https://www.suse.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "SUSE Bug 1260085 for CVE-2026-33186",
"url": "https://bugzilla.suse.com/1260085"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-23T16:22:47Z",
"details": "important"
}
],
"title": "CVE-2026-33186"
},
{
"cve": "CVE-2026-41176",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-41176"
}
],
"notes": [
{
"category": "general",
"text": "Rclone is a command-line program to sync files and directories to and from different cloud storage providers. The RC endpoint `options/set` is exposed without `AuthRequired: true`, but it can mutate global runtime configuration, including the RC option block itself. Starting in version 1.45.0 and prior to version 1.73.5, an unauthenticated attacker can set `rc.NoAuth=true`, which disables the authorization gate for many RC methods registered with `AuthRequired: true` on reachable RC servers that are started without global HTTP authentication. This can lead to unauthorized access to sensitive administrative functionality, including configuration and operational RC methods. Version 1.73.5 patches the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-41176",
"url": "https://www.suse.com/security/cve/CVE-2026-41176"
},
{
"category": "external",
"summary": "SUSE Bug 1262438 for CVE-2026-41176",
"url": "https://bugzilla.suse.com/1262438"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-23T16:22:47Z",
"details": "moderate"
}
],
"title": "CVE-2026-41176"
},
{
"cve": "CVE-2026-41179",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-41179"
}
],
"notes": [
{
"category": "general",
"text": "Rclone is a command-line program to sync files and directories to and from different cloud storage providers. Starting in version 1.48.0 and prior to version 1.73.5, the RC endpoint `operations/fsinfo` is exposed without `AuthRequired: true` and accepts attacker-controlled `fs` input. Because `rc.GetFs(...)` supports inline backend definitions, an unauthenticated attacker can instantiate an attacker-controlled backend on demand. For the WebDAV backend, `bearer_token_command` is executed during backend initialization, making single-request unauthenticated local command execution possible on reachable RC deployments without global HTTP authentication. Version 1.73.5 patches the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-41179",
"url": "https://www.suse.com/security/cve/CVE-2026-41179"
},
{
"category": "external",
"summary": "SUSE Bug 1262439 for CVE-2026-41179",
"url": "https://bugzilla.suse.com/1262439"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.aarch64",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:rclone-1.73.5-bp160.1.1.x86_64",
"openSUSE Leap 16.0:rclone-bash-completion-1.73.5-bp160.1.1.noarch",
"openSUSE Leap 16.0:rclone-zsh-completion-1.73.5-bp160.1.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-23T16:22:47Z",
"details": "moderate"
}
],
"title": "CVE-2026-41179"
}
]
}
OPENSUSE-SU-2026:20856-1
Vulnerability from csaf_opensuse - Published: 2026-06-01 16:05 - Updated: 2026-06-01 16:05| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:golang-github-teddysun-v2ray-plugin-5.49.0-bp160.1.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.x86_64 | — |
Vendor Fix
|
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Security update for shadowsocks-v2ray-plugin",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for shadowsocks-v2ray-plugin fixes the following issues:\n\nChanges in shadowsocks-v2ray-plugin:\n\n- Update version to 5.49.0\n * Update v2ray-core to 5.49.0\n * Update grpc to 1.81.1 (boo#1260328 and CVE-2026-33186)\n\n- Update version to 5.44.1\n * Update v2ray-core to v5.44.1\n\n- Update version to 5.41.0\n * Update v2ray-core to v5.41.0\n\n- Update version to 5.37.0\n * Update v2ray-core to 5.37.0\n- Drop update-vendor.patch, fixed by upstream\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Leap-16.0-packagehub-286",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2026_20856-1.json"
},
{
"category": "self",
"summary": "SUSE Bug 1260328",
"url": "https://bugzilla.suse.com/1260328"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-33186 page",
"url": "https://www.suse.com/security/cve/CVE-2026-33186/"
}
],
"title": "Security update for shadowsocks-v2ray-plugin",
"tracking": {
"current_release_date": "2026-06-01T16:05:48Z",
"generator": {
"date": "2026-06-01T16:05:48Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2026:20856-1",
"initial_release_date": "2026-06-01T16:05:48Z",
"revision_history": [
{
"date": "2026-06-01T16:05:48Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.aarch64",
"product": {
"name": "shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.aarch64",
"product_id": "shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "golang-github-teddysun-v2ray-plugin-5.49.0-bp160.1.1.noarch",
"product": {
"name": "golang-github-teddysun-v2ray-plugin-5.49.0-bp160.1.1.noarch",
"product_id": "golang-github-teddysun-v2ray-plugin-5.49.0-bp160.1.1.noarch"
}
}
],
"category": "architecture",
"name": "noarch"
},
{
"branches": [
{
"category": "product_version",
"name": "shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.ppc64le",
"product": {
"name": "shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.ppc64le",
"product_id": "shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.s390x",
"product": {
"name": "shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.s390x",
"product_id": "shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.x86_64",
"product": {
"name": "shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.x86_64",
"product_id": "shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "openSUSE Leap 16.0",
"product": {
"name": "openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0"
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "golang-github-teddysun-v2ray-plugin-5.49.0-bp160.1.1.noarch as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:golang-github-teddysun-v2ray-plugin-5.49.0-bp160.1.1.noarch"
},
"product_reference": "golang-github-teddysun-v2ray-plugin-5.49.0-bp160.1.1.noarch",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.aarch64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.aarch64"
},
"product_reference": "shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.ppc64le"
},
"product_reference": "shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.s390x"
},
"product_reference": "shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.x86_64"
},
"product_reference": "shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33186",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-33186"
}
],
"notes": [
{
"category": "general",
"text": "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.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:golang-github-teddysun-v2ray-plugin-5.49.0-bp160.1.1.noarch",
"openSUSE Leap 16.0:shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.aarch64",
"openSUSE Leap 16.0:shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.s390x",
"openSUSE Leap 16.0:shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-33186",
"url": "https://www.suse.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "SUSE Bug 1260085 for CVE-2026-33186",
"url": "https://bugzilla.suse.com/1260085"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:golang-github-teddysun-v2ray-plugin-5.49.0-bp160.1.1.noarch",
"openSUSE Leap 16.0:shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.aarch64",
"openSUSE Leap 16.0:shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.s390x",
"openSUSE Leap 16.0:shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:golang-github-teddysun-v2ray-plugin-5.49.0-bp160.1.1.noarch",
"openSUSE Leap 16.0:shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.aarch64",
"openSUSE Leap 16.0:shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.ppc64le",
"openSUSE Leap 16.0:shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.s390x",
"openSUSE Leap 16.0:shadowsocks-v2ray-plugin-5.49.0-bp160.1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-01T16:05:48Z",
"details": "important"
}
],
"title": "CVE-2026-33186"
}
]
}
RHSA-2026:10093
Vulnerability from csaf_redhat - Published: 2026-04-29 08:06 - Updated: 2026-06-28 21:15A flaw was found in ajv. When the $data option is enabled, the value of the pattern keyword is passed directly to the JavaScript RegExp() constructor without sufficient validation. An attacker able to supply a malicious regular expression pattern can trigger a ReDoS (Regular Expression Denial of Service), causing the application to become unresponsive and resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013f0b271dc70347bae313209781261c76127a19b3a2f8bd074d170a84e49047_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:19c6031d8609f10b2b075201c0ccbe6f26e6efd03f567b485b6b327a4f6a7fc5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:304cad693bfac84415c3f6311edf8234f412a4bec7635178c963e2f3fda74d44_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ee8bb516566d6a9dafaa65ae52177421adece839dd4db80426d3d2ba30a1ec10_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3198e3a7911d65997d84ae2c4a4756213bd6169408f8e5b4d4fcfc1312ec221f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:75b581b7faaa791148cfc9a5e5b4c87faf3a809d2baa0fbcec38bac757007b49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:af1751213d6286401c0e1d177bb2952715b50a255dd0072452cfcd1a239c9be9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fdc295c04d946e1294cbc811e5ee20827cce284c7a5358c9c6c926f5afb5fc7b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1fbf0bae66e3d3feafd7a5d800ffdc203ad1171d41da344c7bc899fa9df0c439_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a83b03a6cc820386376a5e0b5ac0bc43147338cd0f77ba6b20284b93cde06b63_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ab5dc4b258e7a47d4a05f2f4975324ecdb53481bf591d41dad10543be93ac59c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f6fa7b17816eb0b9d73c00dbf4715a26458d784e65858ebba255b032a5a2b3f0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:565239690ed2974560e390d87055eb74f793a4d2abe8dcfcf0d40c4b1d3e4334_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5769b6120ec44707f7b98ec0ba5e90dc8dee0cf14a2795a0785435cb01711fa1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9640a22ea7f43b46c281d8271b89480a9df2b5c9ef500b3b9600c5373ebdade6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9e682bfd352c260c9127e3f2affa6dd16af28b3abb8ee7303753eb0ade31c1e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a84a096bab105b8e51bdc5f2d93c011a8a6a32e0ccf5b3a5ee2cbb2abeeb2aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ef77e97f9b16035db985cc79029fc5c3bcd6004ecaee9fec9c05e354ac1e599_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5f3011e69a519014b7801d2acf0897f95635dbe17492a09216673ebd4a1c791b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:eaa84214ab82626dee31c0f652f6d4d980065a920932eb8e69f2e078c8fc16b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2684c0efc9838adc240b08c8b263d829bec71acd381dcb4147d8c45eb1d08d08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:31b01092a5183808a2a97430743d04941f034388254cc7007e74c4ce3083df25_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5699e966b38060569e298ccd084fe89bd719302ca70e2ceeb4bb9b6ca5be8991_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d052315ad81d7689a02be445c9a1df8d296fc3c32a33e3975dcc4297fffa2bfa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:4b16fcfd326efb0618351bc9ddb2c3206b18e189c188e5c9fcf27f3ca8f3afa7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:511bd02437b2ab8480a54dfe2ed3e8c11c3d9d2b332212cb455c8540678665da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6d971be6c49127312d1568f9619c9f4684254c64b77a047f6e24e1caa83e9416_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7df6d4e5830f60779a607ad0ce8716034f168d5d9c6b563bf098dbdf3b2fae05_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:274d4e7ca8dc6003a3d18d931e63a4a0b4d5f80582351fadccef4195de8b847a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:2bd57947814981b16996f8d12e40d5a5670dad3eae9fffbd57e700c39c1b1155_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7339fa5d4a95cd617046d6dc06a2e97b78c2448353f2ee464095e787a3a2fcca_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cd93cbcc8568e8bc3965cfdf4c989a91782a08c38c6affb64a0a3121fabb7075_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:04e57127605538ba40496972299b81737cc2e5197a2ec97fba0b34d74fc9ab5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4c9055e26a32fd7f824d0e0c5dc605c6e59ee22369812ab8331f7572e5154ac5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e8d4c571e3c88206979f8e3c28aaec2fb961b028df0d499ea236c494c0c4096_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ffef56a2b3d651b521f8cfd8024babe6fdd9e8987df4b37fd3d1945d1dff1a64_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1dbb201ad9ba579d5fec8a6cd23834d0c1ad9c4d44927b1c90ae448458ecccfe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:2057e81c225d137b781788c9df16ecc5bab9a103a029a47196b9e2c53d4171bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d66f70ef41f4cb5cabd1e1c36cf32923cd0f228687925ef8c1b08348dff12ea7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e61c5aaa06056181b140e49b24b25835c806df7a51efd7597d3d29c8504dfe3e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2dade7bac074ae0b6d6b8a47004a3c534c6b1a484a822c45001f5d4083742aa2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:40132843fd968f729205f908824489fd67b9b0e5bfba1717840f661147af6adc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53c8d86e293208c966c8e7e4fd3435c9d8806e97ebb31c3e963f26456fc38600_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a310f85c49c19cd35070957d0621694e30215432b5d01e035ed3e8242f82c283_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:29247ef394a58b75aabdd5cc168e578fc2347c8e0c1d779b7b355848a97df2e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:795a0b596a024d3793c0d211f8e2acf771ae79d4c5d47decef1facba2d5a318b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b5277a1b6205eb2ef3c75d691272da6f070b2d10fb1f27558f9241941471cc8d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:d2acb9e2a03e0c2873f562605b1e9c9d32215d1d9d265ce18bd262c7c4263f20_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:874eab1c9150b030a11a0742589008c00cd6f8af8fe188ffbbe28ee6b90f7bf6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:9ee41a2f3a833a077416d0bdd181d767145830fde45cc6fa5c31196ef749b1e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a2dfbd0198e34753e82c002abf31d92585dff3b8093d77fd38d8369cb4c44ba9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b4f9122a9571ebe6e0da7465f498ae3e74cf7c77dd6062a675105f4c437e29df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:054e6260810a05bbcb889e80cf6a4f3668409bcfaf6302148c1230b443fcd8a9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3d0ceefebed5e66f56692e62fde1a1b435cfaf596932058d0f2768d7141b6bc9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:499f3d65ea6972937bfed0d482a782ebbf807c4c0cc369e81d53dfa72c591657_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c08cf8ce6baf72aee6019b7318106e3a02e635f4b385a71a2e58387e706a2cbe_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:97af951210f4ac7395effe942732418e9999e7b8e54c9db5317eadee25491b3d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a80d32903c82085a1904b088453a13c88202d53c26626a0ad3663c784f36230e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a913a01a437d7a6d0ec6cd6eddccf25f064e161b07ed3f9fb0510b485130df08_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbe31a367bd21946e4dc641324c5091a85bf3ae3befb4f40bdd59b00c23bd67f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0d7dd7c2f034bca5dcb69cbf5d8e1989e10076fb4187e9c144201b2afec28a2c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:11286a96806113bfbc34db1b1e230fb678f11135da1809bf7162cee01bfcd267_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6fc448b6852cb86de3661f170f364c99940a004d1f85f9e0d546f24aba812fad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:82b0dd3db731b7a84ac6b7ff11c2407ab0020e30ef04cea06b25a007be5cae31_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1aac0c8d30f9ceb91a9ef3cd76fe90c338568b6408656687fe168a8c9a48d628_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7062eb071701245aabc8f0839c966e7b4b5fb1673a0f5713b44d82cd726f3ef9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:79de159f6b1033732145619c507f29b09fa50f2709fffaa5a10f6554c6818651_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c56ca8e906e3b544e0dbdeca92c33ad8a7b0a846378e3b6c9ecb050bf60f2d7c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:11c374a767b0cdcb1eee64e69900ca970dbd67f814a76ce9648f578862db2dfd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:1ae113ba4a4f5c2e2d9a2abf69d37ea047da7e879486ddf25303ab709648bc79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:64ba60275b58312a1a2472ddc46894c40e746014eef5ea4379f71c0b6d7c96a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a0a1e7e812c0f1280e24cf4feff8dabaf299f110a8e8e695dd2e3dfb98c1c698_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29de1fa9e82a64eb363bfa664dfac943e9531a5cc46ca5c2e2c41b93d8b7fee2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:2eee252e29fc035c3d8b5b91ea2e08a63d96b9f11c6d29961cb738cf1ca73d19_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bc0fd93c51986738cb1f49fa4a31f066ea2ccccfd45c36a2ae7066244cf1e351_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:ce46c15516097e435174ffdd74a4a89f1c9d44b256f0ab5ea84b846ca2f339d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bbb9f7761a83c0face258f4c056fc8276f1e84e37e533ceee3cd1ac11367ed1d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:d23edb6ed5bae7f0f2be4e09cc70e031579e06bb2d42cb1c507727c319deb38e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ed2a405c06a57740f0f44a8c3cd9b7e3aedd0bfa372d85e06852082f4ce87ae0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f360847ce5b67a5ca834ace7da710150d47786dc10eea85494e467cd4d6ef908_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1d3073d76a6486e752c91e90ff6030c0c0993e9b09ca8f9efa44e5decfd52d97_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4c49749a0ead346171f842c37c832cb6c2457f6812fb487728d561aa85d262e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f1f47f29cbc61ddc25a846d4c7d9caa18b91cfcf0e089989883a28ad86b1f2b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fc01321fe5597aa44e732fdb7e99670d525a47dc7a0e0a37546f4b28fd697b60_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3b5506219e72fab36ad67c982bd7f9bd2d462070214a71b4fd115ced29aab710_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:465009fe0147ff5370183ee02173f430d0b9cfae5d579aec78bedbd3cb9d5dad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:607051d5881ef1f78d6a62e3ebdeb761f83988788f7898d869482c22773dbe9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f12bc532130dc5fa8c8392d3885bde80ca93ba9700844bf9fe54f4878ac53f46_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:33e52f2ae99d85b6fc05d53efb17d0a72540a782a33fa91e766fe2e47a878a9a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6d03501991d6fc5efd43a6c73cb0e3c8630db1f690bf07253c7e7d17a3de07c8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:97598836bf560759a9ff39d9675e5c7f18a03e14500982e442ea93514cbf3677_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f24128b82f5c31b4eaf4f7198e4b8c0c702588f0568221b07df121175066372b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:671d23e3d686856a4d47efc6c410ace8deffff06134c979c042fde8e9de487a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9b9e3e354b0218bc54258ca7a8f7117cfe164c2311965769847e83e7f6c15d78_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d59d91a2af93c1c7b2dd66e5cb98cd8ccc29c3c64b2cf016dea1d2828a6e06a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ff08f965b67efb7ff451665a77a7bc0f247cde4ca9038d5558393686bc037c39_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5e4971e899f775e21b6e1a91f00f633c9467d31bdbf4b71038be98520600a625_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ae63547bd2f56fb1f1efe75e17413e43cf503fc7089dff3fecb68d2fc50bef97_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:80154aeefda9559b46845fb40f50aa723f75f29485cfb4846995d08b0c0bceb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:fe5558e0b36855d11e4a57511f878702f87a3d907f79bcca226e99a0c8052628_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0ee0d97e5b746a6df7d95ee4ef32075b52a235cd285039e2460f6ad084b1f5e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d80a021dbf04d702b2bc9736f036c0436191ab4ab3510749ccd03c533e9b5aeb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6898ceb180df4a46da74c974cdd105e3bcbc5ddd1575e3cabe53a43dc676258e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d4c950b548bc3ed89ba8e5e216115bda1600c67d5c35fc9979fb4155415a7b42_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:39af594e6f2fd164192c69bab214557cad92989f21e059cf66f00e455c7f816d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f94694f0d2db1759fa507fdde4594e6b4025a61e3c3f8f2e6caad509a77f6709_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5033eb3bcb9c08972c36d6e19b8d192d85822373e76eb3b54cc9168d86ea62b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:a9fb56ddfaafe28542fd8a824923257122500903fc18626f90d84b7e9b2da856_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:0f4d2bd2755eb5467e25d30ef813275b15ec77c1433d406250af5294b8b49f55_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8a2d63e97b83cac2d12e809ea63398ba1c188dd996a00189664c5dd009551860_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:10847c520f582706d956c48a95e6e2fac51cce89aa8a3d4fee316fb1ec97e140_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:73d3bc342e17226fc6e47dfaf448d09e394ea53ec199bef1ba42abf3e0be8c5c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:11f214e396caf556ca08273015712fc739d1df22b550812d079ef51af642d311_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b8a8e237f5827d7935e0dd8dafe0f59157cdada056580d74feb4ac1b9e05b683_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:26422066656afd16e5e36afeb7e4b5a92cb6888d550ab0a0071da9a198f290d5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3a2ee96fcf0963d55d4c1b6ffb874be6c3552ea0b9917b410976bd59e4a58efb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:2f41d30f61ee12bd34b94ba6d37a517eacb2dc4a51c938f588a87c1f4333b924_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:b49b52eea375dce5ee2b1fa3aca1facd6ed65b94e44ab235753eebfd917fdf58_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91e0a641719fea07fe1185250e91b13f8ece46fe371bb603308306fa9bbfc5d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a0839939275e2b68712d77224d5a7612b10a1bf0152a6f57050f179a1c492f70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:bd2d266a384c88aeff5ef7174ecb532b24aa2a9d6d17a2e5c01ec384102571d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:fcbec489ae513f599fd533e30672085aacb0f937b7d3ecb8f97a39b24d0e3143_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a37378e201c50cfd94eddd0ca6163650e8af46e7c3a4f97d821aff530ea5374_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:22eb07d776eed9b364e0f8843dd2eed75c4295cd9c5d3567cb76b5e5ce20b725_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:73622f6358a99c5b2666edc3f8b680b4cc3906e2f198c67709973dfcd7cbb0df_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b18d10d989d149b9bf1e94be6b115ec3445541d5d0cee0358b0fdaf634f93378_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d1772e78e5b5aed465c12a05548f9eff106f7a1e00d3d913830f8dee427fa4c0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e9ca0475950b50db7e62be4c43d82cb25734b00fb081359208323067c511c19e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f403594cab45dfc4de5a1fb56f8c9cb8d67ee8b8da68ef64487ef45ff6578236_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fab18be096158a97131184f91230ca5ad7a66946ad4ad527c224f279a4d413f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3e79c9035ffce3cb2f835487bd144c0976dc407890016d1fb86d1f1dc3453ed1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:70c684711eaef0d1b4f996d745c936f98707584a54b5d9920b8c25af4adec597_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8371e3f60ff9846b4249201911cad68360c81e944f753a6eff72003a17c2512a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ebae85f444356b6e695da3e3d2846bccdb8ef037b8cdc77f94128574531851b5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:0c0ffcda769ef04c9b46206aafeed9d6afe4f82ebd46751aab4b47ee6584fab4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:408f3dd8943ad4ba2ae37bc2708b698e60a150e98e1c0876e46d088832ed8d24_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5cddf09377c1fda878639186f3844bab8833fe3890f3266c79dea36faa4f11e9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bc7f21410949e77fe85c5a7330548b893706c2471d7d4e8d5c6c26a873132263_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:283596834104ae59f2780b8f0d61d90ea6128c4b09d57da03e05414203ee9245_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:53eb49907793916b8c24463ab096e15d14265a19da7a735a38bf5ec2b9625a79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6ec2c12950d227467d95fb84bbb1f9237cf8ea00b0a414371123dc524e94c71d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9fa52422e5bb14cd6eed3ae6d2a3c0ab07f801e6f92493ec59217025239a5121_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:089a4975c6964f0c0a435586733b9fa5c3c9c8a5e139580f016f7f69ab83da27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:950bee80200f2d9bdcb3f07446eb6aaebe4b31642990272178441b6f9e56a761_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ba71968598ba3fcc8dd2d9e3a861484f74804828ebbe5b7251da6706b4cbaae0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d5513c03787f261759b02454de8248faab74c402a7c8d9e948f469181dbb786d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56b40826166445e18229752bbcf65a4cf498e30c4f763110099e9adf1accb209_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:62a48fb1fc6545c57e524b1e1e3dc43b9749c024578e5266defc819d46d264e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:aa2333d5515daba8a887e66ea88370041a21a6f3c483bbc4e2bd888723c25285_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:d61549e87a7d32c426699db0e1e7f716a575427c65493f9af953a74581ce41f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:328589e1b67b3322968ac4f8b57193b936fbcac1317136e2818f8792e76a7d0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:362523f56123e0d1b18e7b3028db4d883de2c886e5796e569bffc64118577ca0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:5b18e39a6782f2bac42b00c42d88a05f19d1740d49082289aaac11aa07a48f35_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:86961033ea238cdf3d061f8aa811f4559001c4e047e98165b00a8f9018b74c2e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4056b49b2c42986f94456c5c3a5df02d04f8a08fc4cba8b957c040e4590fe581_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:94b1cf74b70f1ea57d939327a45cc2202783f1ca1d098ff27ac8aeefaec8f2aa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b7acf9a4f00a5134eb1810f0ea70fdacfcf56549ced88a80b36abeda4435d925_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d43c576b25a46f4b13aa9968a17c93078c96acbe364e2fc13e12cbeeb334e796_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:020cd17bf8debf39db376f9f514901b1bb882de052631a01814812dd0a913f53_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f857a7dde34e1082edf0e26f92be3ead9148a3c581595a5a945704697d9a9e8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ca86e79869a7ab48486107e3637aa3953201ea36b6b8559ae8b2a04041606c8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7f0561027732ff639f602c3a24d89894302fd43879370658fffd01a57a99a1fd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:077fa69807819b9cf9c057e592c8e75c8108ea09cb2da43d7c378dd76ae68c51_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1493ba223106394c3d89d993ed18f37af46c86aefa50d2a3da144d1ca49d10cc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3d6a4223a99f958f0fa1c4afa6f1aaa7a584a996fd95140c1bc151eddf215c57_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:917aade90b9dbdb7c59ac5c85dff49ec74b29a27aa330352c24680a6987a9a7f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0539cd95b403a48c3ba7a04e3e27da96798e7e342bb6696f65599c693a4b4297_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0a3991f02157723641d576f54823b42d424e612837f7871ceec21e40633235c4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:60cda39573f604f52c427956ff45e8517e498783efee60cb8c7804ffed26a465_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a564cbff84b987d316d891c033ba1ce2299d0ebb655452671498b3de789b6f02_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:23e8f2481d7c5f71053408be6bb5831e6a852ee4c9428f2e72403b6fd721068a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:38cceaff79e567296a50b816cd81cf60c695315474c62e0b380d9d0ed253eebb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6301be72ffce6f973f70fc6977632499d2930cfcf23ef6e477af59f3b283e3e2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e70213ca82db398d11de723f2dd463c196059fed0639ccec30709332648efe78_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2bc4240c6a9f5abe64db9b36884b14d0a763e93a6474096e23a353cab562c400_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4a524f1fcf7c5710ceec19c651216c326ce15290848e4736d504f3247a20e1eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e2dd70d80b53776a74125790edbd091dab84b8da27545e129f9ac99d7d5d4657_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ead5377c32eb77ed07c2285ce30eccd930ee6348d19977ec8c7f8050d9b0ff04_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:27a4c883fefa0bdb0033fc23d93875f3eccdda559d2813fa131a8ad3b24b9356_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67182434ce84ce97c5374f5ab962a79f67777bf02f82ae92be8f7eb5d0c2b85a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:8731368ad974fd8d1e5c954284fce9346912eb4210b01e01e6fc95893320f591_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:bc7dd594fb0d5018aa4dc0d26653f73d1859d978e07f0a1939189c5d2d654895_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:20874645efadc9cd5b6a176a6d76cc1f6ee5175404f7da5e10fea3bc98498ede_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5854e872994fcf1c4c534fb1b64f7f24ecffc120b177dc8079056b6a420ae698_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89802f2938cd3444ab90393b1046d61cbd3d05280432ea2390732a0d0520990d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f6a6951136c7faa7b9bcd0f6c892ec9658a2fa8701e0dec5e45225c3bae52bc9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0b54c713dd339589a9b1fc5e109a7b65117139bd27de833ced58f9716fce95cc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0eae1a64fecdc43b68370d99fb14c369c5f0116d37bda62cba7196c0ea002116_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6b167e1a3755b0a2362ec86878e5614ee29226fcc956b2e193666a7bfc47d44b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b97afe9ff8250ec6647976373edddd171f0b362ce576087d8dcac7c4ea4054bf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3d7227cef380afdefd5f5a05001129a389029547c6f5ea8dba4fc46e20793f23_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002f5d99c5fc748401bed6ef7d0aebf2fb58d6850e7d1de4df622c84e020e87_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e8d8d468ce7f75b0653d4b3e41dc63bc2fd7e231d32bd2296d08155eb258349e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ec0e7dd227d354544a2e67dd236b93970d393c87c1d6093f8191b9141c40ad01_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7807ea7a4377bbc2df491ec5bb74d324eaa66649fba9f40ba46957fe1a758081_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7a977b59ab4f908549ad66c89473f9dbb84e31eefbe6a8dfc92f5598d3f882bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e10922bda03c19bfcb9e6b85eeb3bb0e5ad0ed717375c19e2a31c94940ef74ee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e9101408b3219a72c3e43b88129a6bc6918df42b116ad18efce8c7a1b32e50bc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0618e1978b5b4ac2a90f578af3b8b1c471ef922a3d01d58d413215aae8c5a509_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:164e9edcf185697cf77fef80a7b26eaf42efeae25aeb04a91a7e2afe8299828a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:366eb47b3cb6c42670ceba8966f0ab119694536fb2baac881685e75e6615dc85_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6afb37d303abf20e6e100a4e472d782d6bf063ae6d131852a4ef9cdac53f7dd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:28b92b175c80d10b33844a1466fe71cb48f48431513dd0c634f2ced57e0fa5b6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2cab2a6c6f64eafdc588cc11a5537e1a2ccdd0cb37eb84507c985cdb79855e25_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c8322ff72825fe9dcc1c4446c8c3e4dd73619c15542d7f483642789e0463fee4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d3ef2745733b13faa31084c3cc345368c89f43b80b2a76e5b10fd7bfc008bcc9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:6ca65a281af1b92df6872e052381ccf15cb51c4adb0ba9afca4c3d3041e9d9e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a387760a9151eb37055ae66aa4821ee114125536324c3404a1b4c7044beebcfb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b6f9dbf0e6927d43f45ac8efcad6913ce67b663747d509666cf0ce87455b0379_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:f7828b8fc7d451c4b252b52150b2278d310e456e4b06de990bce9d123d923b9c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:215cb8bf8d6ed22118bebdc28ed8766acfe0d8bcc2c5e8311d3b4dbf8a664d48_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7077e9ed025326ff3ebc0277b0d716efd46bfcff079442d777dd572c35842ba9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7987b5ef6ba2b7e5a9fd3be756c5cab95cd2464af7c9e8459d00e527609513cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8e5fa9f4eadf03465802101457da9e3a618572e47bf8ebd2859e9b1c50310991_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0d11910863bd5a411090ddf070c1be9d58c6f8cfe94eaed1c3ebc9cbe26c3cf6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6ad8362a4cb63bb7bae0e49db53ff65fc60a16f01a414e9f2ab540606a284b08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7f889df4c103d4fb66fdb537989e34f139c953344fda28b60920feafeb1964f2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cadf5ebac4b179bbc456ebc6743a061cb44437675a0b69f825670a753ff3fb0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6d5855d82cc1db4c9b87e58fdcd0133f56d26e44942787c74d0cd27e212ddfba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fe02ef18800c00ea33cc42fd3e7bb5d5ab2855499250279c785ae222e69f537_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9bec401a9b520ec096af6673657d6265501df64d94da332e818eaab70ce54722_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ac7aa75334ba6e157584d2fc588d682c9c841ddb1cad9d03ef0df96f7274041a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0077c7ef1053ca67c87920402ca1cbf21bf54626ba4046031528822a176e0875_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1d103663fd08d4a67877ff23ec32b2d16e290f2cfa268fa89c59c3f296c3b080_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:78baab63d2e3ad8f17734423f5b10cd137d944af647104bd40401f433a9ea996_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:7ebf3a7acad88ffd14b4ae54a1a8fac1eb1d22b6f102216df4586e544d2fe1f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:07ced40602810c0a35ffbed0e120a396076ff01e1d254ba9488a8714d766319b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:080a99a5e9663712b898e49ea608d1195c8e113753e23e403954fc0852e2b8da_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:125008a0bd8a64e396b32583f34c77e15e45e212e7e623ca20f418bd89cb618d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9b8c9e0dba83ba79ff28bda01050caca261f0e723e8f222cfce4a840db29e300_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08c33ef6a9b30a565ddad8d93b0529ea8a7c29a6e0f403cb0f49face063ae162_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5928577bdfc2683410ba93dba0ec9106d1ab29bce79f56a832c06e00ef82fb48_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9f0fa62bbcb4f5b18ee1ab7831d634e2faf5e945e94fcc61a204d7a4a5d39d24_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f448d0ef7d1bd805abc57fb34fd9acdae51656851126b9abd3038703592ba4a8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:21000531fed1065562e8e0d275bcf48eaaad2d35f54e81e13a03e9dbe22fce2e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:41a99736bd8c61ac43d9cd84f3f21d4d174851c81e2a4039263b81d0cb3520e0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:95c36149f02710b63a6c05bd3249027dea0cb332ce600226b6a7aebf4ff73e38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:988d7aab9c210f5e09de3488b38758cac859c4619f8e8d715176c60b95993ee1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1dbaa49ed53404150877894965d638ec0558f4e17bb2b0d70933d1e93c26b713_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2bfbea264fdf5062c9454ad7efeeb799d1568071ebac6195c8138c171dacde67_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:a7a07a455ee7e89c4702fb1f15c7888945acec38d7ff1cf731129b098050a591_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b965fdf100922a0b263f372f4757fec562f0b48a8032d2c7090d9c8f19b5aca0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:54bb0200c75df26bf82e42db71faef1dc309be87095afb5de60e39d2853acd62_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:63d7e09d2367614dd7b83c41b35b538a6e3d98fb49c03a103f31355202528319_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:9557a3d19aec734063ea30485f71fc2f279b7ea77ef1b2d1cbd7e98ebf7e2938_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:de22ad5dc832ca597947d9eebd182f01721908bb26f8367e077134bc442bca68_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2568dfbc55a8a64fab947b40e160757402d1598a563bb1ea7a42103d2e6c049a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5044508d683bfb7c1fcb538293e01a54e21360f85dd3d6b6d9150be3571e4604_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7f9d5ae402c429ceb81c952f23b0898f4f768b048e87f4c7c193f970d83248a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cbde0cfe56b953fbee3a2fed6ea3cd13e6cdb0dd0fa74414b488295feecdf5bc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2ba313bef314b9e69e1b2a545ab54b0fbfec2d5a6c8b558dccf18abaa7d7e33e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9848ebd13facf8daf9ca0f32295a280ca5d4dff1d48b9f3e8c0b249b616278aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ae1bc048acdaaf5dab22505faec4c6b0c582b97023409da8ceb84d983494a0b2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f8a862ce45dd686fb79c68036e611e15ce84922dfc64f847abcf6b65aa55742a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:11d975797a78fdaca7e28cc15699aaee700b3ac8185bd5d019ecc2a51980ef10_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:40debe8017daf2ff3c5b17e89a4ab7e96cb717ae7bddcec305fb1eab8bbce0bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aa195335b903dcf873590deea8e425735760fee97ab33c5b648bfea1aacfa894_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d71c752e32a996fda35a49d7c7ab959689a91197b0e229481891a03c151d48f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:666c36444702f862ad1df16b8dc76f3a8f7b4eba8d63473a4cacfcd34c7ca914_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:836090b24936b955f5b60d236ae328e50ac91ba3cc367249cb5d7762cb15ebc6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:837118a81cc9bdc984af5e9a3f4fedeae4489ba4aa98cd6513dbdaece6acea61_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8bcaefae8c33ff10f758558796e4e90193b1ce2ad3ece24a21ab93a7e685dfb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3fccc681700104f6edd949e78d406f8c10375739f4ce8c5c23c9e85b69b1f201_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac846a2c18b90026c941cc2fcd91197ca909f985f0cfc14e91fa8c0cf2b10b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:96f715b9440bfb17ea68aa161b833ac33265b372e174123bc10dac3eba00a872_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a7750c02c168c6243c3cd666816d5a4be224e3799d9f7d626cf7e64f07cf06f8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:32286da133273dd699de38a8ea62c46b66fd0f0271788ba6b205ce7e34fd5ff6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:34faf675b9e5361a23ee97d02ae1257feb38fda6e287b3b2c67e0b2e4e3ab06c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:997ea290d800e3599f44e72cea8bdb65876dba2483d486938e2d024b1b9a4fae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b329d7566ac8f0b7f45be16a1b364e249036c2c8f703af70c9965240f682f808_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:309782f6dc79d9760dde0265959260871b592a5586bf4073e9561e813f316816_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:529879780fd60bb296f0d2656d7d5805459827820b0b07e839909032ec9fbc17_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9a12ba31f5a9e9e4b8114ed30bf9a067cd5b92430c35905224899a819c627741_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ee31620709847e19ee56a6187986df168cc55a41e86bee1488291ff6a0415d31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:16f45167a5407ccf892d7518ca3c7a9912d5d0cc3f07446cfd3a1de175e5321a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3ec816ffcd991bf5082f28a7edad858d9b02cd65f8e23ca2e320c41a33a0cd79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:50e0dcc3cf9d804afd0a8a3f633f36283817569fa1f5b7cad47db6cfc61c4a48_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:af6e2eef8ff2eadcff4cd975245ba0cdc56f04931b248cde6d581d2d17582fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29b6202fa854ec12e85774564ed5da58d314916d5843aa6032428c3cbf97123f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8c019754ed9656d55c293ce39412f910b0f3ac833615aaa03e961183c4831fd3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a985f0116d10743bdde5e34fb181c4639ff0941caa66a3590713ea5d2586115c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b01b10b5836dae32a5b9938ba42fd4db2ae33a6b311da4e0c54ce0e48668ddf1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:64a243eb83f743985213e3c255f7ae58909fd3a4ab69bce80b30361bc9cd9225_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:995d3fcffd3f156dcd8831241e80223d35b6a150d9d72e89bf639b6ef6f2b81a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:aa7c8a340787569438c3c7515d62384f9a5ecdc53e400cc6768bc92c940efda5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:ee434038f9c8039bb2e2729584617a8d1b2554cb1e981f24a746badcc63c9022_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:772cccd41fa1d467cc54dec80bb7de08fc746507148f6220360c89f3f731c31f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:80c44734612ee4b1c13c995b1583a317e4742755ddd9ae515d6b9c61ecb5f152_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ae27d39fe63e4d5859648c7cc80b0fdf8ab8072bb8ecb34d21790552274a7abc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:cc9a958fbda1e4df8e235a0ae4c62d23e2e02dfcf25c3c18c3dfc8bcc787b7f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:223602e0d30df9f086cec5c4f63562fd46f46726c44e186a5fec80f57689bc24_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7099a6800e9cd28758ace736f2c602a223f61dc00fd45def548e6d9a4bd23539_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:af138219459f8f23471300a38c65d1d0c580ab93b30c63798d51e8891a948afd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d7da61ad815088b8c671d5dde3b5878fff0083776e1618c3a11594e6f08c26b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:18eace0b9a62e03ca9e882c582a3ca9362a14488044b9b30076447ce3731206b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2dc26c9c7dd35b78f4ed2c520337631bc45fb10076d94e52d9a632dd66982765_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ad7c164753be2cf26a2c69aacb95f5d91e5b1120dac43cb2ec505794fd98fb7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5b23ce65b543c607e5547f2bb71866255794752a920b7f644fb203086cabae72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:385e0ff7ff74b73dac4393c5ed5d700cb3a1289d501917dd44a6adee10f492b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4393f322b7404940430e70469c0ede12e724564e87c3359946e349cea2304a11_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5ba8673706092251814d05e8dc3d6de7e74faf5829c57dae0e3634cb6e80aec5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7cce8b979af738044110eae0d3f16db2e70178b32b340b7f98c339c6c1c80791_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:070167681620cee73ddfffac875e999f5a32c5ba48fca753ba907671c70e3ba3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3ae7edcafadd5fc3a2ce15754828efe17dd81a7fe95759f5d10fb843d8f0cff0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:4465d88b33622cf161e2df43aafe3fbedbd4e63f833a729df6ec5d6ffbb23b1a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f0dccb2d388210d13763e44e7aaf06712b1c463b73698566b32665030a881dec_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:60a1f3345766ea95b39394925fcae2358dd8cc819a0f7b187363bff9f3bd1bad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ea484b41505f1e5b8ddade45cf6f89e7b22ad4b81d740e9db3b4263672611398_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0a527723fa338e5204f37b50f7c3ea7f46055a91f391aa12f5ff91dfc621b45b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6fd265148a4fd19ed6f39345ae982687a6ccfadefb2dc96af15737550c46891a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1df097f85a3b46c3624fc2b59b6755ec1dd1bb6843ce84fceca2c40b8af74eda_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fb4965e61b337cbbc13b082ccfc8ba17f7c98e3a9946a2429967203a71ab5ffa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:19233828b527446a7c210823b43ab95d309ed58c124ce07bf2cc70f809a6abc4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:953d7116656841f449d6b295f0753a0d39a2474b3b6a4b6d6240d53e357ff86b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad08029d8e31a6c80b9d25947ea267b78ddc0e7f3a97dc1dbc075dc4a02283ff_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:e163cc3aff166d01ced5f33c6f5c9145a330cd35a7f82538017338ff9ac43f19_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:039ccc1b8843a4dae1d65e616c23066e2e921f5f4693f52a6c6a9e0091ee298f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6c5f2e308f308f3892acb46179df4b6bd460b234a416f4414194005cf915ef5b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ed23039296c3dbd7ddce99ee1a538b7b83e32e827932e3d00b929d0f9de13a91_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:efccb4622508c44f67b3693732b8da8bf28bf80097723497289cc3cd3180d19f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:77dfdc4b6e35954e750b90627d720a0f7a3cb6fe224459c09f5de359c589f939_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c4ad92a5a5a030bd90ad8be8df3914f70dad8fa8e2c984144791685c7150132_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:924c6a190d3e2ccf26e3486fe09b892629736bbad223bf608cb02cc4ca2b5991_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f75d1ef206cef5035c7a4e2d0f8e73330eee059919cc4283cf0ae8711a3e7865_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3daca8e471b071e56c8f9551af5d9afd8c2eb1e29cf87e09dc48214cc885e262_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4a3b3272a261a24b3fa681898aa7d0c55e8a8f67f719200e05e580b0606c16e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:683faf9d19ecd98b5cc92545e3628a1049b13156136f86626896572e7401a356_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e294500f174a12001306f888e6bdf9e10d3d30bf8554bccd5c82f1227de196b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:08d7cbc7bf9e4d19e36b4fd5d27040329982b353032c525179227c3e15d30f32_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:58b18bfb4498e2a7890ee5979598decd1b9692168ee10ece35178e9c2191f430_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5eaf2d7d197bc327adb488bf3514d2ce6886900164bb8a7e3d8c92061baeb783_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9728bac89d23922ef66913d370ccaf943465509f8a068494d517984ff490f707_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6257b90eaa900f50cee0d5cf84c105158f70d9ad4a9829d5208cc261de3ab5e0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:7b851c7bfbaaa9227d15850922fc76f76bc517f60be3c984e23d339fc2091eeb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d6142179c8354154a885955351e093aea68de58f0cbae8ec631da2d3d8cba63a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d939f022cd84850c27b617d17d71edd7dcb549908b74ff92d5115dcb5149df28_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:530f79ee436e2ba7bf71f7cbc3b62c3be81665f5207555dec663565772158b99_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9aad9fae53a218cf8bd83d50b3df6163a9f0ef6fe742a9527d0cc267fc8164a5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c43b8d25569a9a26f77e1c1b6be0fff4467a9dbb8117ff562c2e650a2a62aeba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f0b3d8e6b527fee7bb63906136288b117ae31a38ad93aef266b7e0d84dff4f5a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26fc6ee878e8b9b76a61d203bfd0e01a61175ae9d6e350b4c8a01afc8e388080_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:93b66467306d137b06f29b307a72f45eb3a9149a15cdce0bbefd93a9034de3a7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ada0c79488c2d4b388d12f9e4238054ec9e038bde604659fc70b1c368ad36964_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eaf2dff09f9cdbb55d3486888f5e18db19f535767aca754ea0ead9129bc6ca0e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4a738c52c3e5bcf3c1d94b679aaea8e91b3cb3a3f981be534d8ee1274d8455c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66d6f7a10465049938e81ddc1e4c13b2b375b2c92b39af99b2c7fb8bfe2d5e3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:75e8df980f8d21fae7af1185852e235db098190d2e3098c7cc9086236a60eeba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e819fb1752cc974f7ec462dd49c52f9575c7b0db53f8cda50121ce1a391ef0a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5c0a5ac804bc8bc5f5e368bab64945e8e6b506358e4511387869f9bf458ba3f3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:9f541ec9efd0d0553a8648c8048c7b91854c3d8419e07c909e621d2ff5276c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:cc987d4c88966417b6c45bc66dd878cd885b4805c9e2885fcbaca1734e7bbcb3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e88d308e0ea7524be29e017096eb77ca6df3c8b3ea58a8a6a16dd7fc2fd5949c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:231178be9e1d4d547dc7705f82f8e529672f47786de781ca53424543d9b1e073_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3dc25f71c79a131cdb79f72e3c6bd2a3c987728e52d3261c5935f15b1466150f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b05e21c1862a49132611c23c1c0b589c5ee29b98ef5711244a7c32438f55f7fd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f1a5782a8202fa153b78b53324954109911991dffa9d7997229da1c6ceff7d45_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:17bcf0374c1cdded8c518835d832bac6b8ca75e05efeb0a6528e0ee49643bb35_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2873f8aca5b0ead479497c023010d6cf324fa893522eaa924f10695a63c1045d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ce52fcb8c19848e8fc81e8cfca9c47e1a257339eb96e6a5e4d214066dad9afe6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1f93b71bd8b9bd62776c67cd5c41b93f94b4b60b58a06625e7d57548518f3669_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5599c06a31ac2bdd1a8f190f5095a1614788b2aedab9fc4f454cdbdcff9bca9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e79429feca8812a6d1bb6316906b670ccbb89c506d0f47a0ec8568cd9975a479_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32526be8ad65ea6e3f70126e66ec2494364930f90aeaae32f1ea3611ac7e167e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:9575d057a034bdd890854a08559cc08013ac76dd0aaf2ef11e26a5734be590e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d6f6a6f074d7794ed9d7015ea7937582f0ad1d07b35d983dfc07236fa3323bde_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:7246b6b2f38d276340ab7d46baf8e67166639d6bcdb75aa901ddc09999fedd92_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:87a0e8e9d89cbb753a2507abcb8b0b1b3258a7a88f5d632f174e6097789cc7c6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:96069c3067b68f1e2942d7758c89426eefd21722db2d0b08ff5f1db39f2b12aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c2401f994e1783a28eab6f7289a25a6dfb9e6edbf6b424dd0ee9320469cc3a7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3eaeaa507833c96c48161f8fc13d4ade13b4ad85f397a41574326e7ef81239a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e84c44ad88440bde18b3f65817a1ffd69ce15d48f8772dd82f5984d68c73928_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6914c074989cf18597497721c5b4006874a7e9a12fff27c513f8e6ab049be83c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4b2274d948f48f8cc0df96f3bccd2d610034ac4495c977bdda82c440b65092c6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:72ba74f4ad3c5c803af1c9388ed1c7186295b74429f7466304339f22deecd40f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d47a6d11b74143b03ababf249a83e8ca576752a2ad58482a2dda2986d79e7098_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d71b697e5c67952876677ad7d89394139d322dd6320943c1bc32fef9c501c326_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:3cf00020f76f7dd6428f49aee9060f70f2d5d73a7579cf8400ba22f8a3c16364_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8a9fc2fc1351bcf4a939eb506e5ac91788d65c5f1826c46d3b41e15e8ac7b3ab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e16e35579e3696474f357bcd4bb3c77bdfdb1603b971c3267d08f8fd119da62a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f3623315e94aa6a0748d390674e9f2f8632bcadc5b8ccccd75bc45019cb5a9ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:bd3081cfa4a3a02061a6908b469dd9a0b987b5fd1dc73aa67bb2dc05ccd2c5d0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c84b8c416b3b543d4406aa42eefdc1c02c12f2bdb1b7d56a3e5c0d9c549dec44_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ef6ee4f9fb6e0ebeca08a2a2dfd69cc6b5baeb5bdee0b3158f575b14398f3ad4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ffb6610a0f2627dfd68731bde61d78df97e4ef5ba769dbfb9fe723dfff0a62cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:9329715c3820b10b14bd23f2f3e89ea1172886a3c61333d8b099019701f80619_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:cb9ffb3b3c64cc43b15f52a40235df199172800aa837ee2fa136c785312126a7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:834b63c9cd783e684ce59e99d4b060af5f2d6b6027bc62793e511bd5ae91afc6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c362a8609bd2a9b6ca073545e2ffc732949b1791929dacd899faea3c4176e984_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f050a78d1622d2a10a4549fa7d2340eacdfc80e4c1a628078a4a13006df99e35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f32061109e6d1b72145ead1598d0a2065ccecb2ae424e743dd613b03992ba030_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0650df0f1f51958baf5fecd36385b4ad6afdccfc77ff0bdb90fb140a7e6a72af_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4c95f82bafd9f1a3207635da63f752252d94cf5d13405748bf9f1dc6d4e5f9bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:70ec142f9336133ffb3e4caebd30e579d59bcc3d52a3fd4c4642884103cd5134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:11a23b0b5190d560d8a7e45c7ac015f71c18fac0f1672f2db84c55ec7d55f9ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e04e8d139638d3b8444961f636909cbf640ab494b88a738cebb3c6a7805e19e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:503da2bcb8b582dd98c685b81bd031aafd71e1bbfc8962b3c8b0ea9110e9f69c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:e1e3d49db220a1e3f4f540ec89e06b8a4bb7dc72cefa4b96cb278001154cb21c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:12908e94266b5a90846f50b7fe8688d66c359fb3fc3e9c317450ddb65b455076_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:587f806a8e6500d4dcced927409c0b582a658fee0f51c31c79736f8c31c3dea7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8c53297adf899ca1152c61b10149db660a9146fe067476c82114287f564ac191_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e530b7dae37afa62a6c9def8c54b573975018b94b5a56fc88e218792b85237e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4cb9d96442ea8b54307369d340a8cca987471b191b21c9463027c9bddd754074_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:791d876a5d256f592916c167dc0919fd16e1251317356838146a5fde8fd8a6e1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a9a8d43364851f839ae1bc62a807a983421cf5b41a7488f8da7e68b7261af056_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e1571e62821f55bcfb611afb286ff61773a16ac15a67da5bf210b5d141a6b3ef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:21e4959e7a52ffdfd8df79a73177f02714f8689270c9a4aab4f390be59524042_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:51a465dd014fe567fc52613a127c932e386d2a6e5f1faf4fe1cbb1e6becf7e4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:64f077c897c6ee0c9db36c7cc4f9913d1ed66afb822975974c40d98fc21bead0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ed3e46a857f509e0c8a08c750cea6e1de65bb6a1f86933165b36ca5e45171377_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4b47b7c763f063e8afe3014f0f902d55ec6d1fbe832c2fc2f0585121f68c618b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:affe71c5753db62c3117e7d4d8d3a79f3e076b740fe8895b5337211ac6809eb3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:664fcca5d05f7993a6ca81942ea48894df00d46728bae7580f534891e47fa72c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b37fe0e3a3212b0e82bb27cdf4b84f4423e4886d2a3fff5ffe46be761e98aec8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a2a838ee2839658272f41aba9d5e1b41fbb05039c1aee8a63eff7d14d7a1f0fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ffbee6c294475f3dbe6b73884fcb411b1e5303f9b549b7adfd24708b776eb306_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:43fd6e0b0d869a25c61ac074076a78a7f8f389a0c5247af03e7ce51392e90108_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:9f05231471d861b8e8a788a6f448aeeee16693fceea9521fd87e4f6a6b6d6c9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:049dbb920b57cff7ffb88073192c4c843fef754775862e4d57d2373637e45c85_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3b801c6c05a17b0b1c763f0a87d4908ba4980ad09aa8f12dce6f3e11b8ca637b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5afc27dc982aa722303ec6aa2b10cf727f2d1b409a5a77e0f599569559275b76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6354ab3fa4a9e9cfa2c51da14109a1a67e98a3b43c346203ba40036ef5c3665a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:22f52c4591a8ccddda25dc4a1eebcc92010f49832ffc28cf935b0873021b2f96_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ab74018d4cba5a5f1ed65e9de515209321ff6be359ae0958f2a1b73d799805b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:65b2efd1ededf1a89f9e6a3e12ee8c7085a1282b2520b2906cab1d80520c00d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:98d6f4f8d76d6dc810ca3d927fcf93740efe1a56fa6100c1ed1e80b84d1be21f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b07ab0a485d53b9ed37a1a1b244c94a70630972020176fa7206d5c9dc40d9962_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b4501412341595aa8eefec6973195073fbf3d961cd813e21e02f3cc14150e223_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c03291d932607165444321fb2fa980104e60ac414920c1c05c499a898b2afedb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e1caaa1ddc51954943c6b44448ef50d7113fcd1f8aae4a84fcb24749de315e60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1268948f6dae5346a6a8052db8644297c1b98e1732d64b24073d959de18aa22d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:458cf14369629b17e735598d3e6c24eed47bdd8bfe054034b5a60f4f40b6ec4e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6d51ed70ff145e62ae5d22d42b7cdb071e06053d2d456bc5411da7265c29c96d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c11d63f511b868c53303849b22d71273e844679808aaf604c87b373491a99db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:043460ad9ec9a4b05671ebfac16b6b2eeb39e3ebe5f43e3867f3767b7b2f993d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:62420bf7fc2b91f60b32851f2c099ac5fda8083e6274d2a5523ccd0ece3b6a80_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:77301f40eca2b49f92f3c89a93fc6766306d39013350d635f0bfeff4b98ae012_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:b86db4181d9fe036b77d0473dda243523003c19d0fa5888a54f3f19c104a7e52_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6bb49580fa2f15130fd93f51e34f31f963a4c9b8b9cd898ed573ba88ea24a60d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6caecd5a01bd49eff8acad2449074c505d07e521208af296b0cd9f0822f54911_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ca38c682197a97a075635209b6091a60ff412df3461950a24d1d881f830fb3d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dd9a440a68817b45e6d2d04b3c31feddb82304ac1d246c20c0e33355631d9624_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a251f2b5d7f716fecb5119acdbbfdbb9b535f2c6d8fd51ee0c57cef72cfa1964_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b0188af5f7dcf5f286e4ec4f331062ec77f341391c612aac52e017df26f89a89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b3f13d71ce9dddbce566d9a5bb5783d3e5417b8fa3cae427f7f74997e4a8c8ed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d6384ac004f36838bc5b35ff63c4d1edcb3223c0a3907d4f099c5d85ab51b014_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:db20ce7a947978ea2646d479eab935796e8cfe482ddce01f3675066b221e2e3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:eaa77c0a842cf32f826c2ca19abbe4020997810c35e079c0c88a0a9361323893_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:59988d13b37880c4b79bf8622161c6e975136bdbfb59c8fe73ee8e39bc0f7fe2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:f6dd660a76715b8eef53fa459376986a60d9f2e7cd3f176b0ec5c6e8ce19cfea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:05fb046ec30c464d04a70831316de4af2c29a226be1e7f73036c90899e6bd193_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1da080de78222a6c01704597983765a751b1b4544a81168fdbc952ab31f11a54_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:45c9e9816f3b14886661b4c82dd75f87e242f4ad3e0c1c5f264d1a1839e8cff3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2ab57f0587e4ff1adee3ac4ca2c3383955448c0b26849eb24c77aa3f4cb5e959_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:66b581d789ec455fc8bd8e01e980c7fb183bb0f6ccc09ff525ffdfa4aafd9a52_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:721aa2904e0c2d5c4d0e3134fb695b6613e74809e0faf3faa949c93b68ed168f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a84aa018bfe05a74226938ca4e34b58dde33019aa093e01a7a60a8d6a4c913ca_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1a255a287f3100cade2efe8d8b75ca7f031b9606f6d8ea31581a59e0ca38fde1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3778fc40b92ab82012aacfa7589247e6ff79edb9aa918caf6ba6c5fa3159ae61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:60433084081071dbf7cd337a3769f60ab109201e2ac323be2471c62178d87703_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96b873289284cbff34ea1c9f852dce31e5a72669f204d742288e266cc3a19d21_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0e2cca7da188aebd3f4445715b88a3f4727456cdfee2147e7521059722162fa2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:23043c95c32122eaef725c3e2f65ea824e4f83242614d2609e9367cd6707e454_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:68a9dd5597bb207e899a4716a7642cc28260e059ead26fc84d1e48d4e6159683_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c1a6b704c85cfb829b9a3421cbde16b5011d2c506143322e8f2563d6a5191fe2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1f6f4d1a8a3c89486253cd025f8d0e5aa34c0ef221487aed5e4e968e8d810285_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9955ec574da8c2821d783edbf833af9c4b4d4a2abcffd603b85d706333c68111_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dfcef3e2b6dfabf0abd72dd9743c91ca4c5c4bbe5bfe7488c2a85c2cbf467661_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ec5717ba7c764e22cf72a5792423078ccb9c3a3bb06b92a33eb6014f03f82fef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:371a5fe6ba1f62960a89e6b1050a2d324c2c91b733704fed2fb0356ff2cd9524_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5eb44886f42c57f0e736d6259b55ba561beb6324ca58537e253581f6570b22cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:854407987817269c3069c1d1e4ebd7441465f971e28d391eddd456371162b449_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e7184c5af00f0dc4551f17ef5539952c25c37aa32d596514e463464c92ad146c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:039a4cc5025db0cacd9e5dec922d9cd51194cf0ce903904210000245c5e7c048_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6ccfe8e12098c660310fa2af574a71b7b27b23050f6b6c524e9c1787c7127110_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a5f3adb97a88b5910f2b5375e05fe3411652541687262714d50105f05ca31c34_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:de16bed38709aacd8a1c25b3e68a995631d38c12d9d28924360fffcc17adb0cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4cc2ec3ed32c991240703b0a40c6602db1320fdbd328e887b517a11474149030_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52e3ca4eb01859dcd5c4346d73339889f494576b19577fee88cb1800c84f8fc1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:949a7355b5e946e1d5c760e14244073db9df660fd8b28a3c6d06420dddccc298_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aca1f2e8b0aeb6eae4a77bf712b8c255dd50526c76e843f9960871cbd4abb6f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c075a7526723ebf1b921ceb895e63a6d5f3df60707afd79c4fcf1c9bb6f33e3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a952d0aa30010721e7a2cb903e30260a02f4a9dd9d83eb7ff02d2847f1e76e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7a7b182e9ec23abab1daeee26897eecb99e1785569a62888db4b54d6e897568e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9025051729370f663bc9231aa612b0bb51b35bc6da68f8b504dcc01c760a1fee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0232982c7a3431d641fde0e3b3b8921f855cb872d470e5b9f69edc9b573c2714_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1e05df129e355b9a76f8bbb8aa65e9b4263fb9e888639fd2fb61f79d6d212c04_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:89451c63f28e8e515b4529c8a834f6e8e558179ed3d4f973df539a509933f942_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ace5b486176727834f9e1ca6ce46b4d0ab0bc6ddf651f4142626b543a02c61d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:007e6fe2b8d7a384cfe07309e8a523bd1b7d3cea896f3b7f29908a8d41c62f16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3fbc6e29fc388b15dc77aa93d2623ba9a23db114399f3b07da429707a03eb8fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:42f1e088777be6853d6845aa25cee3f46df776aba71ed1209285ea853dcafb95_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:73f6897c667e3fa46703b50ec857958738442bb7d8b95fae051f761f42a01605_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:3f69c1b708c411bfdd1a2f5387e6084f2fa28e1c4bfcfe136db5b66377918bf9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:46ba8317ce0d48d6d0e8902fa4b6deea668d6f3c9c6c15c2a3aa6238cc06e52b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5e919ab71bf57a160c89b6e5964525a708a10c7cfdd87aaf911e57e6353daf23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c706a7354b0006b9e9c7c351954f179d6c50cc2b872833bbb59214ae7148ae3e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7439625194105ec8e55d4f7b3acd13a5f2ca70da75f9c82cad5f5693b604bf28_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ffcf4fc9bf77edd7944824b25136db6027d21faef80bef9d7b126b9fb6c0574_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8540ec8af82488dd6edb249e811036b1e639a74f892af1ffac1ab5d59ceb0abf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9b497b933ce2f828025dcf4390c7d53debb2418394317da9a8c52ba82a6f2fc0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:37fa7e2453893831aa0ea8bfe068e692ca4f1ffd6f69afca37a6a4e7ad401c49_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:63db7c4a436ffd18fb03a7cda09cd47844691a8025f2ab04492ff405a85ed144_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9a30469bc5882ab2711af24dc3b3cbcbd0532f49bfa9dead772070c5fd1280e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ef2e5a237cc5d69647af1b904a902e4e216ae8480a54587357fb135b738db120_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6be6d5b27b6e178e0806938850699d1e760c4d456ae517a658b47cf5a1401a2e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9389ab668e31d432d3b2d44fe11f68df7f9d926179d0fbec8a6d1b30f489857e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ab20bef5ffe91fc06a7dad3508294cfb9a72745da8cc0342e59f515db447e264_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c5c16e51700e2c16c6fd496225946c033875f4fa4c0174ea625958bd62a7ac51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:37c574ecbe02ca7bc99355b6bbd952c392cbb2abb430db4b752257306c37bcbb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:db6cfccfb142d8f7addac06e4aec0d6686361bc15b459d169b0df831b1d00160_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e813ed4ae0135da60fc1e7e572f6a46495e03764c96ec3c095a4e61a8bdd338_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2766e79b9a9a3fae66e1d331ad2fcc2141a4108e816cb1f91557bcf2e045882c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bfcf47037dce9565700224c63e19aa2ca8935d72e355c08cc8754cbb84b41d00_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d4588b2594a2fcb58e676ea0e8d11372e0bea9deb53824b47a4d8f3c63e774bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2bb5a02fa2032146aed8fcae80961e9a6e37e1c8a13a368ea07d6b124f303519_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5998439ba17cc0cdbe1bf48e888862182d6e10400fd9df74dfab53d161f0582a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7e0233017e706ead44793f1fff610a4625a22a834de67511cd66efb208a24a47_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:97bdb1cc0033381c61bc1c9abeb5f3ecaac1adc70e91b203fbcbfca9a9ae6c39_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f4605b13a1cd445835bfa2bf8d2f094533e4b731ede1d00e6e15a83ca924bea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:20955243143106da7d9e730ece6e49bc84a18427ddce20cd90fb5ce712e5477e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6c27e11d2ba7f408c9ca5dc0bd898bf395b3f773931b04c558759493e0aece8f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:7f08d881878f5d69360edd1be3e1e5190a66df75a087120abb37b2c0a78b4473_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:755632416caf3e2fa4e8c24958855e78c74b12d5e3f2dcae93152ce06274d428_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:847a5098475d0ab53e351d52148f5a2211dcc8090e03e17dd7b161b7332465d1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:93c4ad9c017eba69c7105c1f60cba46f201b39da79f5ded60ce13a98d7608e7d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b559c70d997c0ce2c57e2cc3f1d3160f5ec2367c53c8d1fe1d9418b142c5c577_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2674a13e799262a6ba79ba3e43c2560304a1201374272e8622aa1a5e3df33d66_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6bafd363141b2012cd318a353cfff9c109c6ccc90d227587f2d0e08316309602_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ad9865c56a3ac1997b3aa16166966f73a24b49a1a8c71edec2eeb795016b849c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c2d53d7716676842974f1dda29eba47d03b525614857591426a01b4186ad2edb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2098ea118ff218c9004be57932760642db74b9387d11fd5376593ebb3b2f13c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac90d3f60f0a9de597df5344adc3d6b1478b96d47fad0ea71a00597e8576b12_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:81c29521d2aa0a7d8a0eed047e5948d145c9e4a72fd0697fa9aa613033e7faf9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d9208e402a04781e9dffbab5c989e91804b14b6d8a5f5f29a79cc54f85782e24_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:71602c5c8069030db0fa7373e496c7bc23bba707756f57a082d7eea44f61c9cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:72d17c4acb7d58df68ccc1ccd8d7334f35df3091d8bd8e25a949e3c7f528de1d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8817af94a399c898fea21c34bdd60dd2c927ba3613436f79aab4906ecfc92cfc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f9d6ccdb270a01e408d70d01d692955ba92282ec5e577fd695f6c51289edce2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:005773da78ed8522b96f69d9e53c961811e79340b54d49dffdce92c59a0cea2e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:502e2c5f47b1b95e0ce1e3922306ee37c604845d1d1accd92181342b473d3b3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6c68854cff5a2b94527d6230740551ccc74d1161e7a1bd82d8119065e9e764d3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6ff88655c6a7e78def695735bde806319fe65b5fb68ee0c3ec2a82c6d80a9b00_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:179c818cc5f2021988e1b71e4edaed742e62d398da747cb548896697617254a1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a75ee91ea3ee181623a22f9e54b00c5d4b2e6cf3f222a912c8aff5a29dde1376_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:eeffe28791e4306c642f156e83c6035bebdff5d1232174d56ccb09b805f9271c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:fec4f6e102887cd0d47167eecfee667e3161dd21a13383e96ef3b36f8e319076_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:167bea17ac181347213db54ace41bd0191b77ad20a3a355e56c90fefcfef0c1f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:734b7d0af02c1b79781846ffd3c617b27728ae053941b112d544c73e0bf3a3b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a7cc1cc44f13ea307fb79522996cc56264a0e036bd5ab9134b24e4a0f6639843_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ca75fc486998027f4903a313c7bd742711e2b7bd11e55b1e0c557582ca3d1dbd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5d23f5103a7bb7c71ab5b79c2149be46e4ce746f3556508933593a94f15ba945_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b2dcf4c5a2b14b677212eaecf6ec3fbba8bef7e21d51a437449456979b5fb551_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b692ee1154fd6b6a8fae68467ae87ad89c8a528d50599db14f614c7f08831d81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fe7bd87ddcdf1ec088e780a9e3421286cc0e4aefcccabf17d1c50e4a4656b2e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1775e9ce012c333caee47c4df8f9187d85d8b47f6300e3a7ddf6d83af462986e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5403330e0c28b3af4b3fda34ea84b3e6edced89649cd00bf6ff7f8352d2f7708_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7e13f7a4f2a67e74b36e39b5e582b54a8979c270158789c658974993ad351262_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ad1b944c7135118573159adb6eb359face5ab141e8328420eaca3999fabd8575_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22ed10b10973b3a91b30a7269a88013439964eca8e6954fd515442d543bb74af_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:74dfd09f047da2dcdbdaf8b16a3aba913df216cae2f26898c4f9fe423ff6e330_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d7f0f0b52c3c3c7feed13d3ab9d70fdfdb89af06210b90650123b362444a292_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:88732e8c96326c07670db570f1b1549412775fd07a66b0816f227d1d4320a27c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3e0bc6b1b9cfd488a3cf5fd19d5a6d2839d37bd609c08e6a5a7a9da869ab3cbb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7efa402118210c406818a1791109dae10962706df8c04b290561d0c784f8a57d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:8872db8f65a31459cc63eaec8f03d40ff2b21e95871e59e3bff97b6b0bc9b9d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bc298ee8cd84ce0a44f51ba31cefe4052b67cbf9ea559fac77de3ca7a02762fe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:1715daa2ffc4a6ea78b5de1a1ffe556d27e3e9aa1cca1d6ec9e53217f27b7ffc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:32d4fbd0cbd715ed35ef290d459834423dcf6203374a2a480fc5513b3764873f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d22fe92972f9d9303f541977a3d753750554e6675545ad7e511b723c3869c4c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a51b74a21651e21c9d8d8538c2cbf9272d09696abe8244cd2b1290777ad452b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2a82548bcb003f718c669be20b0abf13183fccb5d7d4e34a17e9be6ee08dc2cc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2bb613f365004e6cca2c81baa7a59ff75a08efff24294779f54a51296a4f1afe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2e010df4822fc8ce8b452dd6d9381d38b1dced3c0e429a9d88e02ac61384c825_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a8ff1c3b2fa1dd0d849d5cd35526a5ef2135bfd6c551ecade04e4744ac595453_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:86e68bbe22d576839fa35f704596b2f643c09e3cd755fae8effe90935f65ab10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d48fa90ded7d3c77d535abf9eb8f56d32e1567a3c292686a7f76c6ac39b5c6e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f781a380867adf7f20c38114cc8d7c751cc84faba5fbcbfc67b721793f017339_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f9d1a4c9d0a5404e8493a84f94fc1715d6226b22b672f0e378157405f5a7204e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0696026a1a59a9227aaac743602e83017e0281e6726d94d46c20c69e61bb6ee3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:18ead28e318b6a165c6988639f9361dfdb3b7936c026f6043b66996e806be30c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:64802d951a8cc8294fa9194e5778fd8ba178cc2dff80234d85234121013ee58b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e6adba899b629ba8eea41574e66d8ed2eaac9169aae5fcb789aff787f0724b73_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:06d3718842b1f074dd7b6477dd8e738e91ad243e06e466cd9cf8b08d7b7fa024_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:220e8b87b16dc9219b324fe7b97208869a17d1039e620bc91cdb5aec19d4a0c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d85785005a4cf5e4bc26adabdddffe345fa8827a0db2240d01cf64a49747675_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fb190187adc311919da380eef951373ed4f907a07606af0797e96cd7d253f20b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1d5caff7082d26409e72c3d18b018f01178321f3922a0868af8058f839261d3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a0968a8bb5df2b0b41bf55b06f11397a4d0c0ec290d22bde93fcf631923091a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5882d9e24bf330ab1bd022877c1f3b711a41b329c46c64652105a1b0a1c24cbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:a7f9b163518a7508adb281ab052ca9e1c233c9ee5efe37efad238eb0febad187_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:059a0c17ca865b86ef3b3c19cf641d3dd43b007de861583f5c160083dc52a012_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7fd099e945dc79ff47d6aef25ab62b66920ae6e7338ef2da01ec5865970bb62b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:2461d40854f69f775c2643a67eb8676729f4fde44b8ad6f106b86b8a66342f67_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:c69c4ec8cd052eeca122726323294481522580372cc3c948fbeace53beb74765_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:05f0aaebb8307b693452309341fef6e3bfe6912a34c1a9d7ced1be398d81351f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:0a46ca252418f181a86af41b48cbabda464d51f9d9f44792efea11e54ed2167d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8e9b9f7048b849a45ea2edbfcdbc1601d8a11cb4260d5c1d89d85b5ed462e7ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:cc9d2ebecaf2c78d99104d0a3ff23cf7748e42f13d00215783cac971193b1f69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:25e957fc0f6723e791625c55d1b251f6b7a894e15d74e7af29e004add4e3a6bc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:42a64c335c5af6c607f435c9a09411e789ba8b66d4df1201d532f27df5b9dc04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7c98311b8e0f89f03a4250cbcc60ff62ffe65c4ee1bd8c34c31b623442f348e7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:abdd622e2447490b74f285cf653b9f6900b904aa6750b34bf9a39f09dc6337de_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6a3350010ffc87ac68f2c8eff3ccd707bef4d9295be9aa7d5633e83b3fdcec1d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9ce9629c6a48384d0dd7d325fd61cf62b8c290db57b2917a8ed671f7e3d4fa9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a71526c9cd2f4c5f9a397348f1ebc08590caad252cf3bce6e5d07ee6c77274c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9cce3c5b53509924dd37d4d3a250925226372f26b45bb52a9dcb46526b1f3d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:137c1f39ca66f98cd37c8a9deb3279d0acd18c24d70a88b6e8d9033a1926fc0a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a38f0412ab643c849826b9600b42aa8975f4d77546ed3b36e92e7b2dce237e4a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:de2eb4f5453b3a0463c333a1770034a9016eadddbe8a07c2666c3d58367ce3f9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e463a6ace53d6f8eeb652db6a69ecda86245cf3a87cf10ec7735738375d17c9f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:348c8fad1c84cc45b10e7add9d5bb5c37057b699d6466e18c3bec3d593e1adde_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:37bcb5a159c17e1241a4e5add6d5276512ce99418b2f779c1e2a976a099de7a3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5653e3a360eb8e725d483a152ef0510d5e1f7142666cc5c6e27f62965f6cd08c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:57ea23e19a26640f9e8bebcef70419d22c23ff334878e89d4b77a894acc2ce7b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0d0633b8cb1de498ee1441b5e28b4ac6aba808f6ad37d3c2bac9f01c94ff33ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:702219e963a769b7dbe97a0f9ea6a20dfd1415097dd6f38cf31cea657b1e4936_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:aa9dc51ef8366806a19116f700448b4c0ea9dc1de7fc9f2b8191872de744e591_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:dc192484377ead9c1805632aa8a8252186c4f5f0649bc30ce521b67f521c66a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:02a58199e4b61c2d8854772359ea02b3abe946e3e67d1cea7ff753c49b0ad3e7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:35e90ec749853c76f098be940be10e29e25401c6a1064a27843f09cac052378f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5fdb8a778fc61b0900436f22aacadd59f7da453af25b9b2eb9c22aca76bc9b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4554e982ba99a234ce6c3717e3447b817fc1c35a384e8fae9766dbb4f22b868_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:3d5ff34a3f9281202e3c0c9593b481d9b16a8321020caca71fa4e3b4d6527579_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:423f3c92919536202042249d0e3911b30e777ad4616ae8f6ca9968c87e14c33d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bcc604910483ac005899662bc05a597cbc8af51dd0c1dbaa05d521b95cc2ee94_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d76ee581c268ee313f9815c181bbbaa91f976c2da68a7a5dfd304e62f4e4a003_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:213608462f3f06ee113095a0b0be07ab8b1e8c194824a11f56c67392729e906d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5f1fd024087262006ea5a3a03b1eaae1590be13fede1f318987921df0c2c3800_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a5d235485bcf72b816bafa06ed24b596b2b72f543e17e845ac8b79dc16f88a86_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ac8a2e047872045fba2fc0ea483a700de6c6398ae2cd184bfbdb021969d6eb6d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:58dc4f0cae516c3613bcb01833e42399b2db12bf7f82c68701baace24fc77b12_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5c793d527449dfb1b10921bc56e8a31ad3d0f8e05dfd19a1782a67025b89879d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5ce2fa8d80f65f80b35fdce9568eb02d1a30252222f8593f60d3d2ab85ca9a7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ec31e82b039af04deb6b8f9c13810a61281a3cedd616aaeb03315bd3abdb2d6d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14d78d97d80007bbfb90b2db94a3d0aab2c5f73e1785fb27ce570cfc5e31c964_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5ed57df32a4594d7acd4e4411b009c6bcfc54b2e90a337f809b8a6a53e858480_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:69275336a4bb1cd9093233541e6f1e29ccecbb8096673ad0b1880d81ae454ef0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b889a52cecf44d33e496bb09da6073217d856dfbe6fe78149669ec2af3dd4f63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:39348b1628d4c75591d22648681ae23c441338241b48d2ed748df691a56dcd36_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6964ff070c67d6f71068014ba253466e6ede36b043cd0f8e3908a32d91953f87_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a274ec689248b4fe3431501c0045736e3b24df4afafcf86ea6d0704e22586c27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ad6f9a3b78b0e98bab747ece64657e69f301337f4966e3f40d3fe0588d1a530b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c28651ad376814116ca3592e5df4853dc0cb04402d825a2d12812ea6df06a4b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6fa533909fe009e146d0522a95259e7f80399cea0ced183c308e146bc51fd9bf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:30c988074c30420793cecbd4d3912868197661b61f00d01bb8fb86f4aae2aeab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3dd6b992e2620c2d08de3ac99c687a9b1562d1a46bc9159a14e34abae9d40f36_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1200e38684ea24ad9e98352ad84e3c3791be192f08f22c77197987e548c02939_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2fa632f63034c5e2ba411ecd6a6655da1f1b5cd65e05dd1c2063893c77fdfb9f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6f9a533d4e52e87336542eaeea992cd22d2979888f7c96d1537fe89a7a186a8c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:784e009ef59f00cf7e127d811f2cbb30f8c4b5c489c9d51985c8385400ce97fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:3576099906e843ef0a4639ab2563ea90c9c875d6be59b1bb687f59cdcff0acb3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6d0bedcf0cfc56da79f55effbb2315fa7da2a126347bf0fa3b21fe96b9c3f037_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7aab0df04151b6970f04174e2b257a77615be9eb724121ff29b59347f8edc8b7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b9a4f7fc7ef59029d19640802db410d32d52a35bf7c8a5ad229ce1e0b559614b_ppc64le | — |
Workaround
|
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1d5caff7082d26409e72c3d18b018f01178321f3922a0868af8058f839261d3b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a0968a8bb5df2b0b41bf55b06f11397a4d0c0ec290d22bde93fcf631923091a0_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3198e3a7911d65997d84ae2c4a4756213bd6169408f8e5b4d4fcfc1312ec221f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:75b581b7faaa791148cfc9a5e5b4c87faf3a809d2baa0fbcec38bac757007b49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:af1751213d6286401c0e1d177bb2952715b50a255dd0072452cfcd1a239c9be9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fdc295c04d946e1294cbc811e5ee20827cce284c7a5358c9c6c926f5afb5fc7b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1fbf0bae66e3d3feafd7a5d800ffdc203ad1171d41da344c7bc899fa9df0c439_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a83b03a6cc820386376a5e0b5ac0bc43147338cd0f77ba6b20284b93cde06b63_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ab5dc4b258e7a47d4a05f2f4975324ecdb53481bf591d41dad10543be93ac59c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f6fa7b17816eb0b9d73c00dbf4715a26458d784e65858ebba255b032a5a2b3f0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:565239690ed2974560e390d87055eb74f793a4d2abe8dcfcf0d40c4b1d3e4334_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5769b6120ec44707f7b98ec0ba5e90dc8dee0cf14a2795a0785435cb01711fa1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9640a22ea7f43b46c281d8271b89480a9df2b5c9ef500b3b9600c5373ebdade6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9e682bfd352c260c9127e3f2affa6dd16af28b3abb8ee7303753eb0ade31c1e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a84a096bab105b8e51bdc5f2d93c011a8a6a32e0ccf5b3a5ee2cbb2abeeb2aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ef77e97f9b16035db985cc79029fc5c3bcd6004ecaee9fec9c05e354ac1e599_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5f3011e69a519014b7801d2acf0897f95635dbe17492a09216673ebd4a1c791b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:eaa84214ab82626dee31c0f652f6d4d980065a920932eb8e69f2e078c8fc16b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2684c0efc9838adc240b08c8b263d829bec71acd381dcb4147d8c45eb1d08d08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:31b01092a5183808a2a97430743d04941f034388254cc7007e74c4ce3083df25_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5699e966b38060569e298ccd084fe89bd719302ca70e2ceeb4bb9b6ca5be8991_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d052315ad81d7689a02be445c9a1df8d296fc3c32a33e3975dcc4297fffa2bfa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:4b16fcfd326efb0618351bc9ddb2c3206b18e189c188e5c9fcf27f3ca8f3afa7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:511bd02437b2ab8480a54dfe2ed3e8c11c3d9d2b332212cb455c8540678665da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6d971be6c49127312d1568f9619c9f4684254c64b77a047f6e24e1caa83e9416_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7df6d4e5830f60779a607ad0ce8716034f168d5d9c6b563bf098dbdf3b2fae05_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:274d4e7ca8dc6003a3d18d931e63a4a0b4d5f80582351fadccef4195de8b847a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:2bd57947814981b16996f8d12e40d5a5670dad3eae9fffbd57e700c39c1b1155_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7339fa5d4a95cd617046d6dc06a2e97b78c2448353f2ee464095e787a3a2fcca_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cd93cbcc8568e8bc3965cfdf4c989a91782a08c38c6affb64a0a3121fabb7075_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:04e57127605538ba40496972299b81737cc2e5197a2ec97fba0b34d74fc9ab5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4c9055e26a32fd7f824d0e0c5dc605c6e59ee22369812ab8331f7572e5154ac5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e8d4c571e3c88206979f8e3c28aaec2fb961b028df0d499ea236c494c0c4096_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ffef56a2b3d651b521f8cfd8024babe6fdd9e8987df4b37fd3d1945d1dff1a64_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1dbb201ad9ba579d5fec8a6cd23834d0c1ad9c4d44927b1c90ae448458ecccfe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:2057e81c225d137b781788c9df16ecc5bab9a103a029a47196b9e2c53d4171bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d66f70ef41f4cb5cabd1e1c36cf32923cd0f228687925ef8c1b08348dff12ea7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e61c5aaa06056181b140e49b24b25835c806df7a51efd7597d3d29c8504dfe3e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2dade7bac074ae0b6d6b8a47004a3c534c6b1a484a822c45001f5d4083742aa2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:40132843fd968f729205f908824489fd67b9b0e5bfba1717840f661147af6adc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53c8d86e293208c966c8e7e4fd3435c9d8806e97ebb31c3e963f26456fc38600_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a310f85c49c19cd35070957d0621694e30215432b5d01e035ed3e8242f82c283_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:29247ef394a58b75aabdd5cc168e578fc2347c8e0c1d779b7b355848a97df2e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:795a0b596a024d3793c0d211f8e2acf771ae79d4c5d47decef1facba2d5a318b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b5277a1b6205eb2ef3c75d691272da6f070b2d10fb1f27558f9241941471cc8d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:d2acb9e2a03e0c2873f562605b1e9c9d32215d1d9d265ce18bd262c7c4263f20_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:874eab1c9150b030a11a0742589008c00cd6f8af8fe188ffbbe28ee6b90f7bf6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:9ee41a2f3a833a077416d0bdd181d767145830fde45cc6fa5c31196ef749b1e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a2dfbd0198e34753e82c002abf31d92585dff3b8093d77fd38d8369cb4c44ba9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b4f9122a9571ebe6e0da7465f498ae3e74cf7c77dd6062a675105f4c437e29df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:054e6260810a05bbcb889e80cf6a4f3668409bcfaf6302148c1230b443fcd8a9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3d0ceefebed5e66f56692e62fde1a1b435cfaf596932058d0f2768d7141b6bc9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:499f3d65ea6972937bfed0d482a782ebbf807c4c0cc369e81d53dfa72c591657_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c08cf8ce6baf72aee6019b7318106e3a02e635f4b385a71a2e58387e706a2cbe_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:97af951210f4ac7395effe942732418e9999e7b8e54c9db5317eadee25491b3d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a80d32903c82085a1904b088453a13c88202d53c26626a0ad3663c784f36230e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a913a01a437d7a6d0ec6cd6eddccf25f064e161b07ed3f9fb0510b485130df08_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbe31a367bd21946e4dc641324c5091a85bf3ae3befb4f40bdd59b00c23bd67f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0d7dd7c2f034bca5dcb69cbf5d8e1989e10076fb4187e9c144201b2afec28a2c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:11286a96806113bfbc34db1b1e230fb678f11135da1809bf7162cee01bfcd267_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6fc448b6852cb86de3661f170f364c99940a004d1f85f9e0d546f24aba812fad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:82b0dd3db731b7a84ac6b7ff11c2407ab0020e30ef04cea06b25a007be5cae31_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1aac0c8d30f9ceb91a9ef3cd76fe90c338568b6408656687fe168a8c9a48d628_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7062eb071701245aabc8f0839c966e7b4b5fb1673a0f5713b44d82cd726f3ef9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:79de159f6b1033732145619c507f29b09fa50f2709fffaa5a10f6554c6818651_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c56ca8e906e3b544e0dbdeca92c33ad8a7b0a846378e3b6c9ecb050bf60f2d7c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:11c374a767b0cdcb1eee64e69900ca970dbd67f814a76ce9648f578862db2dfd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:1ae113ba4a4f5c2e2d9a2abf69d37ea047da7e879486ddf25303ab709648bc79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:64ba60275b58312a1a2472ddc46894c40e746014eef5ea4379f71c0b6d7c96a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a0a1e7e812c0f1280e24cf4feff8dabaf299f110a8e8e695dd2e3dfb98c1c698_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29de1fa9e82a64eb363bfa664dfac943e9531a5cc46ca5c2e2c41b93d8b7fee2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:2eee252e29fc035c3d8b5b91ea2e08a63d96b9f11c6d29961cb738cf1ca73d19_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bc0fd93c51986738cb1f49fa4a31f066ea2ccccfd45c36a2ae7066244cf1e351_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:ce46c15516097e435174ffdd74a4a89f1c9d44b256f0ab5ea84b846ca2f339d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bbb9f7761a83c0face258f4c056fc8276f1e84e37e533ceee3cd1ac11367ed1d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:d23edb6ed5bae7f0f2be4e09cc70e031579e06bb2d42cb1c507727c319deb38e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ed2a405c06a57740f0f44a8c3cd9b7e3aedd0bfa372d85e06852082f4ce87ae0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f360847ce5b67a5ca834ace7da710150d47786dc10eea85494e467cd4d6ef908_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1d3073d76a6486e752c91e90ff6030c0c0993e9b09ca8f9efa44e5decfd52d97_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4c49749a0ead346171f842c37c832cb6c2457f6812fb487728d561aa85d262e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f1f47f29cbc61ddc25a846d4c7d9caa18b91cfcf0e089989883a28ad86b1f2b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fc01321fe5597aa44e732fdb7e99670d525a47dc7a0e0a37546f4b28fd697b60_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3b5506219e72fab36ad67c982bd7f9bd2d462070214a71b4fd115ced29aab710_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:465009fe0147ff5370183ee02173f430d0b9cfae5d579aec78bedbd3cb9d5dad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:607051d5881ef1f78d6a62e3ebdeb761f83988788f7898d869482c22773dbe9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f12bc532130dc5fa8c8392d3885bde80ca93ba9700844bf9fe54f4878ac53f46_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:33e52f2ae99d85b6fc05d53efb17d0a72540a782a33fa91e766fe2e47a878a9a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6d03501991d6fc5efd43a6c73cb0e3c8630db1f690bf07253c7e7d17a3de07c8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:97598836bf560759a9ff39d9675e5c7f18a03e14500982e442ea93514cbf3677_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f24128b82f5c31b4eaf4f7198e4b8c0c702588f0568221b07df121175066372b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:671d23e3d686856a4d47efc6c410ace8deffff06134c979c042fde8e9de487a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9b9e3e354b0218bc54258ca7a8f7117cfe164c2311965769847e83e7f6c15d78_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d59d91a2af93c1c7b2dd66e5cb98cd8ccc29c3c64b2cf016dea1d2828a6e06a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ff08f965b67efb7ff451665a77a7bc0f247cde4ca9038d5558393686bc037c39_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5e4971e899f775e21b6e1a91f00f633c9467d31bdbf4b71038be98520600a625_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ae63547bd2f56fb1f1efe75e17413e43cf503fc7089dff3fecb68d2fc50bef97_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:80154aeefda9559b46845fb40f50aa723f75f29485cfb4846995d08b0c0bceb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:fe5558e0b36855d11e4a57511f878702f87a3d907f79bcca226e99a0c8052628_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0ee0d97e5b746a6df7d95ee4ef32075b52a235cd285039e2460f6ad084b1f5e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d80a021dbf04d702b2bc9736f036c0436191ab4ab3510749ccd03c533e9b5aeb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6898ceb180df4a46da74c974cdd105e3bcbc5ddd1575e3cabe53a43dc676258e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d4c950b548bc3ed89ba8e5e216115bda1600c67d5c35fc9979fb4155415a7b42_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:39af594e6f2fd164192c69bab214557cad92989f21e059cf66f00e455c7f816d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f94694f0d2db1759fa507fdde4594e6b4025a61e3c3f8f2e6caad509a77f6709_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5033eb3bcb9c08972c36d6e19b8d192d85822373e76eb3b54cc9168d86ea62b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:a9fb56ddfaafe28542fd8a824923257122500903fc18626f90d84b7e9b2da856_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:0f4d2bd2755eb5467e25d30ef813275b15ec77c1433d406250af5294b8b49f55_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8a2d63e97b83cac2d12e809ea63398ba1c188dd996a00189664c5dd009551860_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:10847c520f582706d956c48a95e6e2fac51cce89aa8a3d4fee316fb1ec97e140_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:73d3bc342e17226fc6e47dfaf448d09e394ea53ec199bef1ba42abf3e0be8c5c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:11f214e396caf556ca08273015712fc739d1df22b550812d079ef51af642d311_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b8a8e237f5827d7935e0dd8dafe0f59157cdada056580d74feb4ac1b9e05b683_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:26422066656afd16e5e36afeb7e4b5a92cb6888d550ab0a0071da9a198f290d5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3a2ee96fcf0963d55d4c1b6ffb874be6c3552ea0b9917b410976bd59e4a58efb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:2f41d30f61ee12bd34b94ba6d37a517eacb2dc4a51c938f588a87c1f4333b924_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:b49b52eea375dce5ee2b1fa3aca1facd6ed65b94e44ab235753eebfd917fdf58_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91e0a641719fea07fe1185250e91b13f8ece46fe371bb603308306fa9bbfc5d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a0839939275e2b68712d77224d5a7612b10a1bf0152a6f57050f179a1c492f70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:bd2d266a384c88aeff5ef7174ecb532b24aa2a9d6d17a2e5c01ec384102571d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:fcbec489ae513f599fd533e30672085aacb0f937b7d3ecb8f97a39b24d0e3143_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a37378e201c50cfd94eddd0ca6163650e8af46e7c3a4f97d821aff530ea5374_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:22eb07d776eed9b364e0f8843dd2eed75c4295cd9c5d3567cb76b5e5ce20b725_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:73622f6358a99c5b2666edc3f8b680b4cc3906e2f198c67709973dfcd7cbb0df_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b18d10d989d149b9bf1e94be6b115ec3445541d5d0cee0358b0fdaf634f93378_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d1772e78e5b5aed465c12a05548f9eff106f7a1e00d3d913830f8dee427fa4c0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e9ca0475950b50db7e62be4c43d82cb25734b00fb081359208323067c511c19e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f403594cab45dfc4de5a1fb56f8c9cb8d67ee8b8da68ef64487ef45ff6578236_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fab18be096158a97131184f91230ca5ad7a66946ad4ad527c224f279a4d413f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3e79c9035ffce3cb2f835487bd144c0976dc407890016d1fb86d1f1dc3453ed1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:70c684711eaef0d1b4f996d745c936f98707584a54b5d9920b8c25af4adec597_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8371e3f60ff9846b4249201911cad68360c81e944f753a6eff72003a17c2512a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ebae85f444356b6e695da3e3d2846bccdb8ef037b8cdc77f94128574531851b5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:0c0ffcda769ef04c9b46206aafeed9d6afe4f82ebd46751aab4b47ee6584fab4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:408f3dd8943ad4ba2ae37bc2708b698e60a150e98e1c0876e46d088832ed8d24_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5cddf09377c1fda878639186f3844bab8833fe3890f3266c79dea36faa4f11e9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bc7f21410949e77fe85c5a7330548b893706c2471d7d4e8d5c6c26a873132263_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:283596834104ae59f2780b8f0d61d90ea6128c4b09d57da03e05414203ee9245_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:53eb49907793916b8c24463ab096e15d14265a19da7a735a38bf5ec2b9625a79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6ec2c12950d227467d95fb84bbb1f9237cf8ea00b0a414371123dc524e94c71d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9fa52422e5bb14cd6eed3ae6d2a3c0ab07f801e6f92493ec59217025239a5121_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:089a4975c6964f0c0a435586733b9fa5c3c9c8a5e139580f016f7f69ab83da27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:950bee80200f2d9bdcb3f07446eb6aaebe4b31642990272178441b6f9e56a761_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ba71968598ba3fcc8dd2d9e3a861484f74804828ebbe5b7251da6706b4cbaae0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d5513c03787f261759b02454de8248faab74c402a7c8d9e948f469181dbb786d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56b40826166445e18229752bbcf65a4cf498e30c4f763110099e9adf1accb209_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:62a48fb1fc6545c57e524b1e1e3dc43b9749c024578e5266defc819d46d264e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:aa2333d5515daba8a887e66ea88370041a21a6f3c483bbc4e2bd888723c25285_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:d61549e87a7d32c426699db0e1e7f716a575427c65493f9af953a74581ce41f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:328589e1b67b3322968ac4f8b57193b936fbcac1317136e2818f8792e76a7d0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:362523f56123e0d1b18e7b3028db4d883de2c886e5796e569bffc64118577ca0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:5b18e39a6782f2bac42b00c42d88a05f19d1740d49082289aaac11aa07a48f35_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:86961033ea238cdf3d061f8aa811f4559001c4e047e98165b00a8f9018b74c2e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4056b49b2c42986f94456c5c3a5df02d04f8a08fc4cba8b957c040e4590fe581_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:94b1cf74b70f1ea57d939327a45cc2202783f1ca1d098ff27ac8aeefaec8f2aa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b7acf9a4f00a5134eb1810f0ea70fdacfcf56549ced88a80b36abeda4435d925_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d43c576b25a46f4b13aa9968a17c93078c96acbe364e2fc13e12cbeeb334e796_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:020cd17bf8debf39db376f9f514901b1bb882de052631a01814812dd0a913f53_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f857a7dde34e1082edf0e26f92be3ead9148a3c581595a5a945704697d9a9e8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ca86e79869a7ab48486107e3637aa3953201ea36b6b8559ae8b2a04041606c8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7f0561027732ff639f602c3a24d89894302fd43879370658fffd01a57a99a1fd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:077fa69807819b9cf9c057e592c8e75c8108ea09cb2da43d7c378dd76ae68c51_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1493ba223106394c3d89d993ed18f37af46c86aefa50d2a3da144d1ca49d10cc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3d6a4223a99f958f0fa1c4afa6f1aaa7a584a996fd95140c1bc151eddf215c57_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:917aade90b9dbdb7c59ac5c85dff49ec74b29a27aa330352c24680a6987a9a7f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0539cd95b403a48c3ba7a04e3e27da96798e7e342bb6696f65599c693a4b4297_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0a3991f02157723641d576f54823b42d424e612837f7871ceec21e40633235c4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:60cda39573f604f52c427956ff45e8517e498783efee60cb8c7804ffed26a465_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a564cbff84b987d316d891c033ba1ce2299d0ebb655452671498b3de789b6f02_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:23e8f2481d7c5f71053408be6bb5831e6a852ee4c9428f2e72403b6fd721068a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:38cceaff79e567296a50b816cd81cf60c695315474c62e0b380d9d0ed253eebb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6301be72ffce6f973f70fc6977632499d2930cfcf23ef6e477af59f3b283e3e2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e70213ca82db398d11de723f2dd463c196059fed0639ccec30709332648efe78_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2bc4240c6a9f5abe64db9b36884b14d0a763e93a6474096e23a353cab562c400_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4a524f1fcf7c5710ceec19c651216c326ce15290848e4736d504f3247a20e1eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e2dd70d80b53776a74125790edbd091dab84b8da27545e129f9ac99d7d5d4657_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ead5377c32eb77ed07c2285ce30eccd930ee6348d19977ec8c7f8050d9b0ff04_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:27a4c883fefa0bdb0033fc23d93875f3eccdda559d2813fa131a8ad3b24b9356_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67182434ce84ce97c5374f5ab962a79f67777bf02f82ae92be8f7eb5d0c2b85a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:8731368ad974fd8d1e5c954284fce9346912eb4210b01e01e6fc95893320f591_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:bc7dd594fb0d5018aa4dc0d26653f73d1859d978e07f0a1939189c5d2d654895_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:20874645efadc9cd5b6a176a6d76cc1f6ee5175404f7da5e10fea3bc98498ede_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5854e872994fcf1c4c534fb1b64f7f24ecffc120b177dc8079056b6a420ae698_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89802f2938cd3444ab90393b1046d61cbd3d05280432ea2390732a0d0520990d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f6a6951136c7faa7b9bcd0f6c892ec9658a2fa8701e0dec5e45225c3bae52bc9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0b54c713dd339589a9b1fc5e109a7b65117139bd27de833ced58f9716fce95cc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0eae1a64fecdc43b68370d99fb14c369c5f0116d37bda62cba7196c0ea002116_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6b167e1a3755b0a2362ec86878e5614ee29226fcc956b2e193666a7bfc47d44b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b97afe9ff8250ec6647976373edddd171f0b362ce576087d8dcac7c4ea4054bf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3d7227cef380afdefd5f5a05001129a389029547c6f5ea8dba4fc46e20793f23_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002f5d99c5fc748401bed6ef7d0aebf2fb58d6850e7d1de4df622c84e020e87_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e8d8d468ce7f75b0653d4b3e41dc63bc2fd7e231d32bd2296d08155eb258349e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ec0e7dd227d354544a2e67dd236b93970d393c87c1d6093f8191b9141c40ad01_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7807ea7a4377bbc2df491ec5bb74d324eaa66649fba9f40ba46957fe1a758081_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7a977b59ab4f908549ad66c89473f9dbb84e31eefbe6a8dfc92f5598d3f882bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e10922bda03c19bfcb9e6b85eeb3bb0e5ad0ed717375c19e2a31c94940ef74ee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e9101408b3219a72c3e43b88129a6bc6918df42b116ad18efce8c7a1b32e50bc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0618e1978b5b4ac2a90f578af3b8b1c471ef922a3d01d58d413215aae8c5a509_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:164e9edcf185697cf77fef80a7b26eaf42efeae25aeb04a91a7e2afe8299828a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:366eb47b3cb6c42670ceba8966f0ab119694536fb2baac881685e75e6615dc85_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6afb37d303abf20e6e100a4e472d782d6bf063ae6d131852a4ef9cdac53f7dd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:28b92b175c80d10b33844a1466fe71cb48f48431513dd0c634f2ced57e0fa5b6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2cab2a6c6f64eafdc588cc11a5537e1a2ccdd0cb37eb84507c985cdb79855e25_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c8322ff72825fe9dcc1c4446c8c3e4dd73619c15542d7f483642789e0463fee4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d3ef2745733b13faa31084c3cc345368c89f43b80b2a76e5b10fd7bfc008bcc9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:6ca65a281af1b92df6872e052381ccf15cb51c4adb0ba9afca4c3d3041e9d9e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a387760a9151eb37055ae66aa4821ee114125536324c3404a1b4c7044beebcfb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b6f9dbf0e6927d43f45ac8efcad6913ce67b663747d509666cf0ce87455b0379_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:f7828b8fc7d451c4b252b52150b2278d310e456e4b06de990bce9d123d923b9c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:215cb8bf8d6ed22118bebdc28ed8766acfe0d8bcc2c5e8311d3b4dbf8a664d48_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7077e9ed025326ff3ebc0277b0d716efd46bfcff079442d777dd572c35842ba9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7987b5ef6ba2b7e5a9fd3be756c5cab95cd2464af7c9e8459d00e527609513cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8e5fa9f4eadf03465802101457da9e3a618572e47bf8ebd2859e9b1c50310991_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0d11910863bd5a411090ddf070c1be9d58c6f8cfe94eaed1c3ebc9cbe26c3cf6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6ad8362a4cb63bb7bae0e49db53ff65fc60a16f01a414e9f2ab540606a284b08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7f889df4c103d4fb66fdb537989e34f139c953344fda28b60920feafeb1964f2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cadf5ebac4b179bbc456ebc6743a061cb44437675a0b69f825670a753ff3fb0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6d5855d82cc1db4c9b87e58fdcd0133f56d26e44942787c74d0cd27e212ddfba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fe02ef18800c00ea33cc42fd3e7bb5d5ab2855499250279c785ae222e69f537_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9bec401a9b520ec096af6673657d6265501df64d94da332e818eaab70ce54722_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ac7aa75334ba6e157584d2fc588d682c9c841ddb1cad9d03ef0df96f7274041a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0077c7ef1053ca67c87920402ca1cbf21bf54626ba4046031528822a176e0875_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1d103663fd08d4a67877ff23ec32b2d16e290f2cfa268fa89c59c3f296c3b080_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:78baab63d2e3ad8f17734423f5b10cd137d944af647104bd40401f433a9ea996_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:7ebf3a7acad88ffd14b4ae54a1a8fac1eb1d22b6f102216df4586e544d2fe1f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:07ced40602810c0a35ffbed0e120a396076ff01e1d254ba9488a8714d766319b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:080a99a5e9663712b898e49ea608d1195c8e113753e23e403954fc0852e2b8da_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:125008a0bd8a64e396b32583f34c77e15e45e212e7e623ca20f418bd89cb618d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9b8c9e0dba83ba79ff28bda01050caca261f0e723e8f222cfce4a840db29e300_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08c33ef6a9b30a565ddad8d93b0529ea8a7c29a6e0f403cb0f49face063ae162_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5928577bdfc2683410ba93dba0ec9106d1ab29bce79f56a832c06e00ef82fb48_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9f0fa62bbcb4f5b18ee1ab7831d634e2faf5e945e94fcc61a204d7a4a5d39d24_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f448d0ef7d1bd805abc57fb34fd9acdae51656851126b9abd3038703592ba4a8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:21000531fed1065562e8e0d275bcf48eaaad2d35f54e81e13a03e9dbe22fce2e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:41a99736bd8c61ac43d9cd84f3f21d4d174851c81e2a4039263b81d0cb3520e0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:95c36149f02710b63a6c05bd3249027dea0cb332ce600226b6a7aebf4ff73e38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:988d7aab9c210f5e09de3488b38758cac859c4619f8e8d715176c60b95993ee1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1dbaa49ed53404150877894965d638ec0558f4e17bb2b0d70933d1e93c26b713_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2bfbea264fdf5062c9454ad7efeeb799d1568071ebac6195c8138c171dacde67_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:a7a07a455ee7e89c4702fb1f15c7888945acec38d7ff1cf731129b098050a591_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b965fdf100922a0b263f372f4757fec562f0b48a8032d2c7090d9c8f19b5aca0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:54bb0200c75df26bf82e42db71faef1dc309be87095afb5de60e39d2853acd62_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:63d7e09d2367614dd7b83c41b35b538a6e3d98fb49c03a103f31355202528319_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:9557a3d19aec734063ea30485f71fc2f279b7ea77ef1b2d1cbd7e98ebf7e2938_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:de22ad5dc832ca597947d9eebd182f01721908bb26f8367e077134bc442bca68_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2568dfbc55a8a64fab947b40e160757402d1598a563bb1ea7a42103d2e6c049a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5044508d683bfb7c1fcb538293e01a54e21360f85dd3d6b6d9150be3571e4604_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7f9d5ae402c429ceb81c952f23b0898f4f768b048e87f4c7c193f970d83248a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cbde0cfe56b953fbee3a2fed6ea3cd13e6cdb0dd0fa74414b488295feecdf5bc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2ba313bef314b9e69e1b2a545ab54b0fbfec2d5a6c8b558dccf18abaa7d7e33e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9848ebd13facf8daf9ca0f32295a280ca5d4dff1d48b9f3e8c0b249b616278aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ae1bc048acdaaf5dab22505faec4c6b0c582b97023409da8ceb84d983494a0b2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f8a862ce45dd686fb79c68036e611e15ce84922dfc64f847abcf6b65aa55742a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:11d975797a78fdaca7e28cc15699aaee700b3ac8185bd5d019ecc2a51980ef10_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:40debe8017daf2ff3c5b17e89a4ab7e96cb717ae7bddcec305fb1eab8bbce0bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aa195335b903dcf873590deea8e425735760fee97ab33c5b648bfea1aacfa894_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d71c752e32a996fda35a49d7c7ab959689a91197b0e229481891a03c151d48f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:666c36444702f862ad1df16b8dc76f3a8f7b4eba8d63473a4cacfcd34c7ca914_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:836090b24936b955f5b60d236ae328e50ac91ba3cc367249cb5d7762cb15ebc6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:837118a81cc9bdc984af5e9a3f4fedeae4489ba4aa98cd6513dbdaece6acea61_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8bcaefae8c33ff10f758558796e4e90193b1ce2ad3ece24a21ab93a7e685dfb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3fccc681700104f6edd949e78d406f8c10375739f4ce8c5c23c9e85b69b1f201_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac846a2c18b90026c941cc2fcd91197ca909f985f0cfc14e91fa8c0cf2b10b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:96f715b9440bfb17ea68aa161b833ac33265b372e174123bc10dac3eba00a872_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a7750c02c168c6243c3cd666816d5a4be224e3799d9f7d626cf7e64f07cf06f8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:32286da133273dd699de38a8ea62c46b66fd0f0271788ba6b205ce7e34fd5ff6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:34faf675b9e5361a23ee97d02ae1257feb38fda6e287b3b2c67e0b2e4e3ab06c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:997ea290d800e3599f44e72cea8bdb65876dba2483d486938e2d024b1b9a4fae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b329d7566ac8f0b7f45be16a1b364e249036c2c8f703af70c9965240f682f808_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:309782f6dc79d9760dde0265959260871b592a5586bf4073e9561e813f316816_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:529879780fd60bb296f0d2656d7d5805459827820b0b07e839909032ec9fbc17_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9a12ba31f5a9e9e4b8114ed30bf9a067cd5b92430c35905224899a819c627741_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ee31620709847e19ee56a6187986df168cc55a41e86bee1488291ff6a0415d31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:16f45167a5407ccf892d7518ca3c7a9912d5d0cc3f07446cfd3a1de175e5321a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3ec816ffcd991bf5082f28a7edad858d9b02cd65f8e23ca2e320c41a33a0cd79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:50e0dcc3cf9d804afd0a8a3f633f36283817569fa1f5b7cad47db6cfc61c4a48_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:af6e2eef8ff2eadcff4cd975245ba0cdc56f04931b248cde6d581d2d17582fd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29b6202fa854ec12e85774564ed5da58d314916d5843aa6032428c3cbf97123f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8c019754ed9656d55c293ce39412f910b0f3ac833615aaa03e961183c4831fd3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a985f0116d10743bdde5e34fb181c4639ff0941caa66a3590713ea5d2586115c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b01b10b5836dae32a5b9938ba42fd4db2ae33a6b311da4e0c54ce0e48668ddf1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:64a243eb83f743985213e3c255f7ae58909fd3a4ab69bce80b30361bc9cd9225_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:995d3fcffd3f156dcd8831241e80223d35b6a150d9d72e89bf639b6ef6f2b81a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:aa7c8a340787569438c3c7515d62384f9a5ecdc53e400cc6768bc92c940efda5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:ee434038f9c8039bb2e2729584617a8d1b2554cb1e981f24a746badcc63c9022_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:772cccd41fa1d467cc54dec80bb7de08fc746507148f6220360c89f3f731c31f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:80c44734612ee4b1c13c995b1583a317e4742755ddd9ae515d6b9c61ecb5f152_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ae27d39fe63e4d5859648c7cc80b0fdf8ab8072bb8ecb34d21790552274a7abc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:cc9a958fbda1e4df8e235a0ae4c62d23e2e02dfcf25c3c18c3dfc8bcc787b7f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:223602e0d30df9f086cec5c4f63562fd46f46726c44e186a5fec80f57689bc24_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7099a6800e9cd28758ace736f2c602a223f61dc00fd45def548e6d9a4bd23539_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:af138219459f8f23471300a38c65d1d0c580ab93b30c63798d51e8891a948afd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d7da61ad815088b8c671d5dde3b5878fff0083776e1618c3a11594e6f08c26b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:18eace0b9a62e03ca9e882c582a3ca9362a14488044b9b30076447ce3731206b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2dc26c9c7dd35b78f4ed2c520337631bc45fb10076d94e52d9a632dd66982765_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ad7c164753be2cf26a2c69aacb95f5d91e5b1120dac43cb2ec505794fd98fb7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5b23ce65b543c607e5547f2bb71866255794752a920b7f644fb203086cabae72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:385e0ff7ff74b73dac4393c5ed5d700cb3a1289d501917dd44a6adee10f492b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4393f322b7404940430e70469c0ede12e724564e87c3359946e349cea2304a11_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5ba8673706092251814d05e8dc3d6de7e74faf5829c57dae0e3634cb6e80aec5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7cce8b979af738044110eae0d3f16db2e70178b32b340b7f98c339c6c1c80791_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:070167681620cee73ddfffac875e999f5a32c5ba48fca753ba907671c70e3ba3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3ae7edcafadd5fc3a2ce15754828efe17dd81a7fe95759f5d10fb843d8f0cff0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:4465d88b33622cf161e2df43aafe3fbedbd4e63f833a729df6ec5d6ffbb23b1a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f0dccb2d388210d13763e44e7aaf06712b1c463b73698566b32665030a881dec_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:60a1f3345766ea95b39394925fcae2358dd8cc819a0f7b187363bff9f3bd1bad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ea484b41505f1e5b8ddade45cf6f89e7b22ad4b81d740e9db3b4263672611398_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0a527723fa338e5204f37b50f7c3ea7f46055a91f391aa12f5ff91dfc621b45b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6fd265148a4fd19ed6f39345ae982687a6ccfadefb2dc96af15737550c46891a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1df097f85a3b46c3624fc2b59b6755ec1dd1bb6843ce84fceca2c40b8af74eda_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fb4965e61b337cbbc13b082ccfc8ba17f7c98e3a9946a2429967203a71ab5ffa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:19233828b527446a7c210823b43ab95d309ed58c124ce07bf2cc70f809a6abc4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:953d7116656841f449d6b295f0753a0d39a2474b3b6a4b6d6240d53e357ff86b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad08029d8e31a6c80b9d25947ea267b78ddc0e7f3a97dc1dbc075dc4a02283ff_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:e163cc3aff166d01ced5f33c6f5c9145a330cd35a7f82538017338ff9ac43f19_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:039ccc1b8843a4dae1d65e616c23066e2e921f5f4693f52a6c6a9e0091ee298f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6c5f2e308f308f3892acb46179df4b6bd460b234a416f4414194005cf915ef5b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ed23039296c3dbd7ddce99ee1a538b7b83e32e827932e3d00b929d0f9de13a91_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:efccb4622508c44f67b3693732b8da8bf28bf80097723497289cc3cd3180d19f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:77dfdc4b6e35954e750b90627d720a0f7a3cb6fe224459c09f5de359c589f939_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c4ad92a5a5a030bd90ad8be8df3914f70dad8fa8e2c984144791685c7150132_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:924c6a190d3e2ccf26e3486fe09b892629736bbad223bf608cb02cc4ca2b5991_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f75d1ef206cef5035c7a4e2d0f8e73330eee059919cc4283cf0ae8711a3e7865_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3daca8e471b071e56c8f9551af5d9afd8c2eb1e29cf87e09dc48214cc885e262_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4a3b3272a261a24b3fa681898aa7d0c55e8a8f67f719200e05e580b0606c16e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:683faf9d19ecd98b5cc92545e3628a1049b13156136f86626896572e7401a356_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e294500f174a12001306f888e6bdf9e10d3d30bf8554bccd5c82f1227de196b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:08d7cbc7bf9e4d19e36b4fd5d27040329982b353032c525179227c3e15d30f32_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:58b18bfb4498e2a7890ee5979598decd1b9692168ee10ece35178e9c2191f430_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5eaf2d7d197bc327adb488bf3514d2ce6886900164bb8a7e3d8c92061baeb783_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9728bac89d23922ef66913d370ccaf943465509f8a068494d517984ff490f707_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6257b90eaa900f50cee0d5cf84c105158f70d9ad4a9829d5208cc261de3ab5e0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:7b851c7bfbaaa9227d15850922fc76f76bc517f60be3c984e23d339fc2091eeb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d6142179c8354154a885955351e093aea68de58f0cbae8ec631da2d3d8cba63a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d939f022cd84850c27b617d17d71edd7dcb549908b74ff92d5115dcb5149df28_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:530f79ee436e2ba7bf71f7cbc3b62c3be81665f5207555dec663565772158b99_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9aad9fae53a218cf8bd83d50b3df6163a9f0ef6fe742a9527d0cc267fc8164a5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c43b8d25569a9a26f77e1c1b6be0fff4467a9dbb8117ff562c2e650a2a62aeba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f0b3d8e6b527fee7bb63906136288b117ae31a38ad93aef266b7e0d84dff4f5a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26fc6ee878e8b9b76a61d203bfd0e01a61175ae9d6e350b4c8a01afc8e388080_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:93b66467306d137b06f29b307a72f45eb3a9149a15cdce0bbefd93a9034de3a7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ada0c79488c2d4b388d12f9e4238054ec9e038bde604659fc70b1c368ad36964_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eaf2dff09f9cdbb55d3486888f5e18db19f535767aca754ea0ead9129bc6ca0e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4a738c52c3e5bcf3c1d94b679aaea8e91b3cb3a3f981be534d8ee1274d8455c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66d6f7a10465049938e81ddc1e4c13b2b375b2c92b39af99b2c7fb8bfe2d5e3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:75e8df980f8d21fae7af1185852e235db098190d2e3098c7cc9086236a60eeba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e819fb1752cc974f7ec462dd49c52f9575c7b0db53f8cda50121ce1a391ef0a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5c0a5ac804bc8bc5f5e368bab64945e8e6b506358e4511387869f9bf458ba3f3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:9f541ec9efd0d0553a8648c8048c7b91854c3d8419e07c909e621d2ff5276c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:cc987d4c88966417b6c45bc66dd878cd885b4805c9e2885fcbaca1734e7bbcb3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e88d308e0ea7524be29e017096eb77ca6df3c8b3ea58a8a6a16dd7fc2fd5949c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:231178be9e1d4d547dc7705f82f8e529672f47786de781ca53424543d9b1e073_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3dc25f71c79a131cdb79f72e3c6bd2a3c987728e52d3261c5935f15b1466150f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b05e21c1862a49132611c23c1c0b589c5ee29b98ef5711244a7c32438f55f7fd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f1a5782a8202fa153b78b53324954109911991dffa9d7997229da1c6ceff7d45_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:17bcf0374c1cdded8c518835d832bac6b8ca75e05efeb0a6528e0ee49643bb35_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2873f8aca5b0ead479497c023010d6cf324fa893522eaa924f10695a63c1045d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ce52fcb8c19848e8fc81e8cfca9c47e1a257339eb96e6a5e4d214066dad9afe6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1f93b71bd8b9bd62776c67cd5c41b93f94b4b60b58a06625e7d57548518f3669_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5599c06a31ac2bdd1a8f190f5095a1614788b2aedab9fc4f454cdbdcff9bca9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e79429feca8812a6d1bb6316906b670ccbb89c506d0f47a0ec8568cd9975a479_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32526be8ad65ea6e3f70126e66ec2494364930f90aeaae32f1ea3611ac7e167e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:9575d057a034bdd890854a08559cc08013ac76dd0aaf2ef11e26a5734be590e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d6f6a6f074d7794ed9d7015ea7937582f0ad1d07b35d983dfc07236fa3323bde_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:7246b6b2f38d276340ab7d46baf8e67166639d6bcdb75aa901ddc09999fedd92_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:87a0e8e9d89cbb753a2507abcb8b0b1b3258a7a88f5d632f174e6097789cc7c6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:96069c3067b68f1e2942d7758c89426eefd21722db2d0b08ff5f1db39f2b12aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c2401f994e1783a28eab6f7289a25a6dfb9e6edbf6b424dd0ee9320469cc3a7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3eaeaa507833c96c48161f8fc13d4ade13b4ad85f397a41574326e7ef81239a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e84c44ad88440bde18b3f65817a1ffd69ce15d48f8772dd82f5984d68c73928_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6914c074989cf18597497721c5b4006874a7e9a12fff27c513f8e6ab049be83c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4b2274d948f48f8cc0df96f3bccd2d610034ac4495c977bdda82c440b65092c6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:72ba74f4ad3c5c803af1c9388ed1c7186295b74429f7466304339f22deecd40f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d47a6d11b74143b03ababf249a83e8ca576752a2ad58482a2dda2986d79e7098_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d71b697e5c67952876677ad7d89394139d322dd6320943c1bc32fef9c501c326_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:3cf00020f76f7dd6428f49aee9060f70f2d5d73a7579cf8400ba22f8a3c16364_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8a9fc2fc1351bcf4a939eb506e5ac91788d65c5f1826c46d3b41e15e8ac7b3ab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e16e35579e3696474f357bcd4bb3c77bdfdb1603b971c3267d08f8fd119da62a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f3623315e94aa6a0748d390674e9f2f8632bcadc5b8ccccd75bc45019cb5a9ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:bd3081cfa4a3a02061a6908b469dd9a0b987b5fd1dc73aa67bb2dc05ccd2c5d0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c84b8c416b3b543d4406aa42eefdc1c02c12f2bdb1b7d56a3e5c0d9c549dec44_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ef6ee4f9fb6e0ebeca08a2a2dfd69cc6b5baeb5bdee0b3158f575b14398f3ad4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ffb6610a0f2627dfd68731bde61d78df97e4ef5ba769dbfb9fe723dfff0a62cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:9329715c3820b10b14bd23f2f3e89ea1172886a3c61333d8b099019701f80619_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:cb9ffb3b3c64cc43b15f52a40235df199172800aa837ee2fa136c785312126a7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:834b63c9cd783e684ce59e99d4b060af5f2d6b6027bc62793e511bd5ae91afc6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c362a8609bd2a9b6ca073545e2ffc732949b1791929dacd899faea3c4176e984_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f050a78d1622d2a10a4549fa7d2340eacdfc80e4c1a628078a4a13006df99e35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f32061109e6d1b72145ead1598d0a2065ccecb2ae424e743dd613b03992ba030_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0650df0f1f51958baf5fecd36385b4ad6afdccfc77ff0bdb90fb140a7e6a72af_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4c95f82bafd9f1a3207635da63f752252d94cf5d13405748bf9f1dc6d4e5f9bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:70ec142f9336133ffb3e4caebd30e579d59bcc3d52a3fd4c4642884103cd5134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:11a23b0b5190d560d8a7e45c7ac015f71c18fac0f1672f2db84c55ec7d55f9ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e04e8d139638d3b8444961f636909cbf640ab494b88a738cebb3c6a7805e19e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:503da2bcb8b582dd98c685b81bd031aafd71e1bbfc8962b3c8b0ea9110e9f69c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:e1e3d49db220a1e3f4f540ec89e06b8a4bb7dc72cefa4b96cb278001154cb21c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:12908e94266b5a90846f50b7fe8688d66c359fb3fc3e9c317450ddb65b455076_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:587f806a8e6500d4dcced927409c0b582a658fee0f51c31c79736f8c31c3dea7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8c53297adf899ca1152c61b10149db660a9146fe067476c82114287f564ac191_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e530b7dae37afa62a6c9def8c54b573975018b94b5a56fc88e218792b85237e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4cb9d96442ea8b54307369d340a8cca987471b191b21c9463027c9bddd754074_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:791d876a5d256f592916c167dc0919fd16e1251317356838146a5fde8fd8a6e1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a9a8d43364851f839ae1bc62a807a983421cf5b41a7488f8da7e68b7261af056_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e1571e62821f55bcfb611afb286ff61773a16ac15a67da5bf210b5d141a6b3ef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:21e4959e7a52ffdfd8df79a73177f02714f8689270c9a4aab4f390be59524042_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:51a465dd014fe567fc52613a127c932e386d2a6e5f1faf4fe1cbb1e6becf7e4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:64f077c897c6ee0c9db36c7cc4f9913d1ed66afb822975974c40d98fc21bead0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ed3e46a857f509e0c8a08c750cea6e1de65bb6a1f86933165b36ca5e45171377_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4b47b7c763f063e8afe3014f0f902d55ec6d1fbe832c2fc2f0585121f68c618b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:affe71c5753db62c3117e7d4d8d3a79f3e076b740fe8895b5337211ac6809eb3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:664fcca5d05f7993a6ca81942ea48894df00d46728bae7580f534891e47fa72c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b37fe0e3a3212b0e82bb27cdf4b84f4423e4886d2a3fff5ffe46be761e98aec8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a2a838ee2839658272f41aba9d5e1b41fbb05039c1aee8a63eff7d14d7a1f0fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ffbee6c294475f3dbe6b73884fcb411b1e5303f9b549b7adfd24708b776eb306_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:43fd6e0b0d869a25c61ac074076a78a7f8f389a0c5247af03e7ce51392e90108_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:9f05231471d861b8e8a788a6f448aeeee16693fceea9521fd87e4f6a6b6d6c9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:049dbb920b57cff7ffb88073192c4c843fef754775862e4d57d2373637e45c85_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3b801c6c05a17b0b1c763f0a87d4908ba4980ad09aa8f12dce6f3e11b8ca637b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5afc27dc982aa722303ec6aa2b10cf727f2d1b409a5a77e0f599569559275b76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6354ab3fa4a9e9cfa2c51da14109a1a67e98a3b43c346203ba40036ef5c3665a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:22f52c4591a8ccddda25dc4a1eebcc92010f49832ffc28cf935b0873021b2f96_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ab74018d4cba5a5f1ed65e9de515209321ff6be359ae0958f2a1b73d799805b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:65b2efd1ededf1a89f9e6a3e12ee8c7085a1282b2520b2906cab1d80520c00d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:98d6f4f8d76d6dc810ca3d927fcf93740efe1a56fa6100c1ed1e80b84d1be21f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b07ab0a485d53b9ed37a1a1b244c94a70630972020176fa7206d5c9dc40d9962_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b4501412341595aa8eefec6973195073fbf3d961cd813e21e02f3cc14150e223_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c03291d932607165444321fb2fa980104e60ac414920c1c05c499a898b2afedb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e1caaa1ddc51954943c6b44448ef50d7113fcd1f8aae4a84fcb24749de315e60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1268948f6dae5346a6a8052db8644297c1b98e1732d64b24073d959de18aa22d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:458cf14369629b17e735598d3e6c24eed47bdd8bfe054034b5a60f4f40b6ec4e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6d51ed70ff145e62ae5d22d42b7cdb071e06053d2d456bc5411da7265c29c96d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c11d63f511b868c53303849b22d71273e844679808aaf604c87b373491a99db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:043460ad9ec9a4b05671ebfac16b6b2eeb39e3ebe5f43e3867f3767b7b2f993d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:62420bf7fc2b91f60b32851f2c099ac5fda8083e6274d2a5523ccd0ece3b6a80_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:77301f40eca2b49f92f3c89a93fc6766306d39013350d635f0bfeff4b98ae012_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:b86db4181d9fe036b77d0473dda243523003c19d0fa5888a54f3f19c104a7e52_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6bb49580fa2f15130fd93f51e34f31f963a4c9b8b9cd898ed573ba88ea24a60d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6caecd5a01bd49eff8acad2449074c505d07e521208af296b0cd9f0822f54911_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ca38c682197a97a075635209b6091a60ff412df3461950a24d1d881f830fb3d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dd9a440a68817b45e6d2d04b3c31feddb82304ac1d246c20c0e33355631d9624_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a251f2b5d7f716fecb5119acdbbfdbb9b535f2c6d8fd51ee0c57cef72cfa1964_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b0188af5f7dcf5f286e4ec4f331062ec77f341391c612aac52e017df26f89a89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b3f13d71ce9dddbce566d9a5bb5783d3e5417b8fa3cae427f7f74997e4a8c8ed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d6384ac004f36838bc5b35ff63c4d1edcb3223c0a3907d4f099c5d85ab51b014_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:db20ce7a947978ea2646d479eab935796e8cfe482ddce01f3675066b221e2e3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:eaa77c0a842cf32f826c2ca19abbe4020997810c35e079c0c88a0a9361323893_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:59988d13b37880c4b79bf8622161c6e975136bdbfb59c8fe73ee8e39bc0f7fe2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:f6dd660a76715b8eef53fa459376986a60d9f2e7cd3f176b0ec5c6e8ce19cfea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:05fb046ec30c464d04a70831316de4af2c29a226be1e7f73036c90899e6bd193_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1da080de78222a6c01704597983765a751b1b4544a81168fdbc952ab31f11a54_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:45c9e9816f3b14886661b4c82dd75f87e242f4ad3e0c1c5f264d1a1839e8cff3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2ab57f0587e4ff1adee3ac4ca2c3383955448c0b26849eb24c77aa3f4cb5e959_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:66b581d789ec455fc8bd8e01e980c7fb183bb0f6ccc09ff525ffdfa4aafd9a52_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:721aa2904e0c2d5c4d0e3134fb695b6613e74809e0faf3faa949c93b68ed168f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a84aa018bfe05a74226938ca4e34b58dde33019aa093e01a7a60a8d6a4c913ca_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1a255a287f3100cade2efe8d8b75ca7f031b9606f6d8ea31581a59e0ca38fde1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3778fc40b92ab82012aacfa7589247e6ff79edb9aa918caf6ba6c5fa3159ae61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:60433084081071dbf7cd337a3769f60ab109201e2ac323be2471c62178d87703_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96b873289284cbff34ea1c9f852dce31e5a72669f204d742288e266cc3a19d21_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0e2cca7da188aebd3f4445715b88a3f4727456cdfee2147e7521059722162fa2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:23043c95c32122eaef725c3e2f65ea824e4f83242614d2609e9367cd6707e454_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:68a9dd5597bb207e899a4716a7642cc28260e059ead26fc84d1e48d4e6159683_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c1a6b704c85cfb829b9a3421cbde16b5011d2c506143322e8f2563d6a5191fe2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1f6f4d1a8a3c89486253cd025f8d0e5aa34c0ef221487aed5e4e968e8d810285_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9955ec574da8c2821d783edbf833af9c4b4d4a2abcffd603b85d706333c68111_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dfcef3e2b6dfabf0abd72dd9743c91ca4c5c4bbe5bfe7488c2a85c2cbf467661_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ec5717ba7c764e22cf72a5792423078ccb9c3a3bb06b92a33eb6014f03f82fef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013f0b271dc70347bae313209781261c76127a19b3a2f8bd074d170a84e49047_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:19c6031d8609f10b2b075201c0ccbe6f26e6efd03f567b485b6b327a4f6a7fc5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:304cad693bfac84415c3f6311edf8234f412a4bec7635178c963e2f3fda74d44_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ee8bb516566d6a9dafaa65ae52177421adece839dd4db80426d3d2ba30a1ec10_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:371a5fe6ba1f62960a89e6b1050a2d324c2c91b733704fed2fb0356ff2cd9524_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5eb44886f42c57f0e736d6259b55ba561beb6324ca58537e253581f6570b22cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:854407987817269c3069c1d1e4ebd7441465f971e28d391eddd456371162b449_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e7184c5af00f0dc4551f17ef5539952c25c37aa32d596514e463464c92ad146c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:039a4cc5025db0cacd9e5dec922d9cd51194cf0ce903904210000245c5e7c048_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6ccfe8e12098c660310fa2af574a71b7b27b23050f6b6c524e9c1787c7127110_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a5f3adb97a88b5910f2b5375e05fe3411652541687262714d50105f05ca31c34_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:de16bed38709aacd8a1c25b3e68a995631d38c12d9d28924360fffcc17adb0cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4cc2ec3ed32c991240703b0a40c6602db1320fdbd328e887b517a11474149030_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52e3ca4eb01859dcd5c4346d73339889f494576b19577fee88cb1800c84f8fc1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:949a7355b5e946e1d5c760e14244073db9df660fd8b28a3c6d06420dddccc298_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aca1f2e8b0aeb6eae4a77bf712b8c255dd50526c76e843f9960871cbd4abb6f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c075a7526723ebf1b921ceb895e63a6d5f3df60707afd79c4fcf1c9bb6f33e3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a952d0aa30010721e7a2cb903e30260a02f4a9dd9d83eb7ff02d2847f1e76e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7a7b182e9ec23abab1daeee26897eecb99e1785569a62888db4b54d6e897568e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9025051729370f663bc9231aa612b0bb51b35bc6da68f8b504dcc01c760a1fee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0232982c7a3431d641fde0e3b3b8921f855cb872d470e5b9f69edc9b573c2714_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1e05df129e355b9a76f8bbb8aa65e9b4263fb9e888639fd2fb61f79d6d212c04_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:89451c63f28e8e515b4529c8a834f6e8e558179ed3d4f973df539a509933f942_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ace5b486176727834f9e1ca6ce46b4d0ab0bc6ddf651f4142626b543a02c61d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:007e6fe2b8d7a384cfe07309e8a523bd1b7d3cea896f3b7f29908a8d41c62f16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3fbc6e29fc388b15dc77aa93d2623ba9a23db114399f3b07da429707a03eb8fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:42f1e088777be6853d6845aa25cee3f46df776aba71ed1209285ea853dcafb95_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:73f6897c667e3fa46703b50ec857958738442bb7d8b95fae051f761f42a01605_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:3f69c1b708c411bfdd1a2f5387e6084f2fa28e1c4bfcfe136db5b66377918bf9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:46ba8317ce0d48d6d0e8902fa4b6deea668d6f3c9c6c15c2a3aa6238cc06e52b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5e919ab71bf57a160c89b6e5964525a708a10c7cfdd87aaf911e57e6353daf23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c706a7354b0006b9e9c7c351954f179d6c50cc2b872833bbb59214ae7148ae3e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7439625194105ec8e55d4f7b3acd13a5f2ca70da75f9c82cad5f5693b604bf28_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ffcf4fc9bf77edd7944824b25136db6027d21faef80bef9d7b126b9fb6c0574_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8540ec8af82488dd6edb249e811036b1e639a74f892af1ffac1ab5d59ceb0abf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9b497b933ce2f828025dcf4390c7d53debb2418394317da9a8c52ba82a6f2fc0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:37fa7e2453893831aa0ea8bfe068e692ca4f1ffd6f69afca37a6a4e7ad401c49_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:63db7c4a436ffd18fb03a7cda09cd47844691a8025f2ab04492ff405a85ed144_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9a30469bc5882ab2711af24dc3b3cbcbd0532f49bfa9dead772070c5fd1280e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ef2e5a237cc5d69647af1b904a902e4e216ae8480a54587357fb135b738db120_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6be6d5b27b6e178e0806938850699d1e760c4d456ae517a658b47cf5a1401a2e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9389ab668e31d432d3b2d44fe11f68df7f9d926179d0fbec8a6d1b30f489857e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ab20bef5ffe91fc06a7dad3508294cfb9a72745da8cc0342e59f515db447e264_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c5c16e51700e2c16c6fd496225946c033875f4fa4c0174ea625958bd62a7ac51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:37c574ecbe02ca7bc99355b6bbd952c392cbb2abb430db4b752257306c37bcbb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:db6cfccfb142d8f7addac06e4aec0d6686361bc15b459d169b0df831b1d00160_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e813ed4ae0135da60fc1e7e572f6a46495e03764c96ec3c095a4e61a8bdd338_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2766e79b9a9a3fae66e1d331ad2fcc2141a4108e816cb1f91557bcf2e045882c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bfcf47037dce9565700224c63e19aa2ca8935d72e355c08cc8754cbb84b41d00_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d4588b2594a2fcb58e676ea0e8d11372e0bea9deb53824b47a4d8f3c63e774bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2bb5a02fa2032146aed8fcae80961e9a6e37e1c8a13a368ea07d6b124f303519_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5998439ba17cc0cdbe1bf48e888862182d6e10400fd9df74dfab53d161f0582a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7e0233017e706ead44793f1fff610a4625a22a834de67511cd66efb208a24a47_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:97bdb1cc0033381c61bc1c9abeb5f3ecaac1adc70e91b203fbcbfca9a9ae6c39_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f4605b13a1cd445835bfa2bf8d2f094533e4b731ede1d00e6e15a83ca924bea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:20955243143106da7d9e730ece6e49bc84a18427ddce20cd90fb5ce712e5477e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6c27e11d2ba7f408c9ca5dc0bd898bf395b3f773931b04c558759493e0aece8f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:7f08d881878f5d69360edd1be3e1e5190a66df75a087120abb37b2c0a78b4473_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:755632416caf3e2fa4e8c24958855e78c74b12d5e3f2dcae93152ce06274d428_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:847a5098475d0ab53e351d52148f5a2211dcc8090e03e17dd7b161b7332465d1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:93c4ad9c017eba69c7105c1f60cba46f201b39da79f5ded60ce13a98d7608e7d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b559c70d997c0ce2c57e2cc3f1d3160f5ec2367c53c8d1fe1d9418b142c5c577_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2674a13e799262a6ba79ba3e43c2560304a1201374272e8622aa1a5e3df33d66_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6bafd363141b2012cd318a353cfff9c109c6ccc90d227587f2d0e08316309602_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ad9865c56a3ac1997b3aa16166966f73a24b49a1a8c71edec2eeb795016b849c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c2d53d7716676842974f1dda29eba47d03b525614857591426a01b4186ad2edb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2098ea118ff218c9004be57932760642db74b9387d11fd5376593ebb3b2f13c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac90d3f60f0a9de597df5344adc3d6b1478b96d47fad0ea71a00597e8576b12_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:81c29521d2aa0a7d8a0eed047e5948d145c9e4a72fd0697fa9aa613033e7faf9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d9208e402a04781e9dffbab5c989e91804b14b6d8a5f5f29a79cc54f85782e24_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:71602c5c8069030db0fa7373e496c7bc23bba707756f57a082d7eea44f61c9cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:72d17c4acb7d58df68ccc1ccd8d7334f35df3091d8bd8e25a949e3c7f528de1d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8817af94a399c898fea21c34bdd60dd2c927ba3613436f79aab4906ecfc92cfc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f9d6ccdb270a01e408d70d01d692955ba92282ec5e577fd695f6c51289edce2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:005773da78ed8522b96f69d9e53c961811e79340b54d49dffdce92c59a0cea2e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:502e2c5f47b1b95e0ce1e3922306ee37c604845d1d1accd92181342b473d3b3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6c68854cff5a2b94527d6230740551ccc74d1161e7a1bd82d8119065e9e764d3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6ff88655c6a7e78def695735bde806319fe65b5fb68ee0c3ec2a82c6d80a9b00_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:179c818cc5f2021988e1b71e4edaed742e62d398da747cb548896697617254a1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a75ee91ea3ee181623a22f9e54b00c5d4b2e6cf3f222a912c8aff5a29dde1376_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:eeffe28791e4306c642f156e83c6035bebdff5d1232174d56ccb09b805f9271c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:fec4f6e102887cd0d47167eecfee667e3161dd21a13383e96ef3b36f8e319076_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:167bea17ac181347213db54ace41bd0191b77ad20a3a355e56c90fefcfef0c1f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:734b7d0af02c1b79781846ffd3c617b27728ae053941b112d544c73e0bf3a3b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a7cc1cc44f13ea307fb79522996cc56264a0e036bd5ab9134b24e4a0f6639843_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ca75fc486998027f4903a313c7bd742711e2b7bd11e55b1e0c557582ca3d1dbd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5d23f5103a7bb7c71ab5b79c2149be46e4ce746f3556508933593a94f15ba945_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b2dcf4c5a2b14b677212eaecf6ec3fbba8bef7e21d51a437449456979b5fb551_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b692ee1154fd6b6a8fae68467ae87ad89c8a528d50599db14f614c7f08831d81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fe7bd87ddcdf1ec088e780a9e3421286cc0e4aefcccabf17d1c50e4a4656b2e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1775e9ce012c333caee47c4df8f9187d85d8b47f6300e3a7ddf6d83af462986e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5403330e0c28b3af4b3fda34ea84b3e6edced89649cd00bf6ff7f8352d2f7708_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7e13f7a4f2a67e74b36e39b5e582b54a8979c270158789c658974993ad351262_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ad1b944c7135118573159adb6eb359face5ab141e8328420eaca3999fabd8575_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22ed10b10973b3a91b30a7269a88013439964eca8e6954fd515442d543bb74af_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:74dfd09f047da2dcdbdaf8b16a3aba913df216cae2f26898c4f9fe423ff6e330_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d7f0f0b52c3c3c7feed13d3ab9d70fdfdb89af06210b90650123b362444a292_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:88732e8c96326c07670db570f1b1549412775fd07a66b0816f227d1d4320a27c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3e0bc6b1b9cfd488a3cf5fd19d5a6d2839d37bd609c08e6a5a7a9da869ab3cbb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7efa402118210c406818a1791109dae10962706df8c04b290561d0c784f8a57d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:8872db8f65a31459cc63eaec8f03d40ff2b21e95871e59e3bff97b6b0bc9b9d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bc298ee8cd84ce0a44f51ba31cefe4052b67cbf9ea559fac77de3ca7a02762fe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:1715daa2ffc4a6ea78b5de1a1ffe556d27e3e9aa1cca1d6ec9e53217f27b7ffc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:32d4fbd0cbd715ed35ef290d459834423dcf6203374a2a480fc5513b3764873f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d22fe92972f9d9303f541977a3d753750554e6675545ad7e511b723c3869c4c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a51b74a21651e21c9d8d8538c2cbf9272d09696abe8244cd2b1290777ad452b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2a82548bcb003f718c669be20b0abf13183fccb5d7d4e34a17e9be6ee08dc2cc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2bb613f365004e6cca2c81baa7a59ff75a08efff24294779f54a51296a4f1afe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2e010df4822fc8ce8b452dd6d9381d38b1dced3c0e429a9d88e02ac61384c825_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a8ff1c3b2fa1dd0d849d5cd35526a5ef2135bfd6c551ecade04e4744ac595453_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:86e68bbe22d576839fa35f704596b2f643c09e3cd755fae8effe90935f65ab10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d48fa90ded7d3c77d535abf9eb8f56d32e1567a3c292686a7f76c6ac39b5c6e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f781a380867adf7f20c38114cc8d7c751cc84faba5fbcbfc67b721793f017339_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f9d1a4c9d0a5404e8493a84f94fc1715d6226b22b672f0e378157405f5a7204e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0696026a1a59a9227aaac743602e83017e0281e6726d94d46c20c69e61bb6ee3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:18ead28e318b6a165c6988639f9361dfdb3b7936c026f6043b66996e806be30c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:64802d951a8cc8294fa9194e5778fd8ba178cc2dff80234d85234121013ee58b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e6adba899b629ba8eea41574e66d8ed2eaac9169aae5fcb789aff787f0724b73_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:06d3718842b1f074dd7b6477dd8e738e91ad243e06e466cd9cf8b08d7b7fa024_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:220e8b87b16dc9219b324fe7b97208869a17d1039e620bc91cdb5aec19d4a0c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d85785005a4cf5e4bc26adabdddffe345fa8827a0db2240d01cf64a49747675_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fb190187adc311919da380eef951373ed4f907a07606af0797e96cd7d253f20b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5882d9e24bf330ab1bd022877c1f3b711a41b329c46c64652105a1b0a1c24cbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:a7f9b163518a7508adb281ab052ca9e1c233c9ee5efe37efad238eb0febad187_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:059a0c17ca865b86ef3b3c19cf641d3dd43b007de861583f5c160083dc52a012_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7fd099e945dc79ff47d6aef25ab62b66920ae6e7338ef2da01ec5865970bb62b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:2461d40854f69f775c2643a67eb8676729f4fde44b8ad6f106b86b8a66342f67_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:c69c4ec8cd052eeca122726323294481522580372cc3c948fbeace53beb74765_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:05f0aaebb8307b693452309341fef6e3bfe6912a34c1a9d7ced1be398d81351f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:0a46ca252418f181a86af41b48cbabda464d51f9d9f44792efea11e54ed2167d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8e9b9f7048b849a45ea2edbfcdbc1601d8a11cb4260d5c1d89d85b5ed462e7ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:cc9d2ebecaf2c78d99104d0a3ff23cf7748e42f13d00215783cac971193b1f69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:25e957fc0f6723e791625c55d1b251f6b7a894e15d74e7af29e004add4e3a6bc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:42a64c335c5af6c607f435c9a09411e789ba8b66d4df1201d532f27df5b9dc04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7c98311b8e0f89f03a4250cbcc60ff62ffe65c4ee1bd8c34c31b623442f348e7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:abdd622e2447490b74f285cf653b9f6900b904aa6750b34bf9a39f09dc6337de_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6a3350010ffc87ac68f2c8eff3ccd707bef4d9295be9aa7d5633e83b3fdcec1d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9ce9629c6a48384d0dd7d325fd61cf62b8c290db57b2917a8ed671f7e3d4fa9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a71526c9cd2f4c5f9a397348f1ebc08590caad252cf3bce6e5d07ee6c77274c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9cce3c5b53509924dd37d4d3a250925226372f26b45bb52a9dcb46526b1f3d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:137c1f39ca66f98cd37c8a9deb3279d0acd18c24d70a88b6e8d9033a1926fc0a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a38f0412ab643c849826b9600b42aa8975f4d77546ed3b36e92e7b2dce237e4a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:de2eb4f5453b3a0463c333a1770034a9016eadddbe8a07c2666c3d58367ce3f9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e463a6ace53d6f8eeb652db6a69ecda86245cf3a87cf10ec7735738375d17c9f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:348c8fad1c84cc45b10e7add9d5bb5c37057b699d6466e18c3bec3d593e1adde_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:37bcb5a159c17e1241a4e5add6d5276512ce99418b2f779c1e2a976a099de7a3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5653e3a360eb8e725d483a152ef0510d5e1f7142666cc5c6e27f62965f6cd08c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:57ea23e19a26640f9e8bebcef70419d22c23ff334878e89d4b77a894acc2ce7b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0d0633b8cb1de498ee1441b5e28b4ac6aba808f6ad37d3c2bac9f01c94ff33ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:702219e963a769b7dbe97a0f9ea6a20dfd1415097dd6f38cf31cea657b1e4936_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:aa9dc51ef8366806a19116f700448b4c0ea9dc1de7fc9f2b8191872de744e591_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:dc192484377ead9c1805632aa8a8252186c4f5f0649bc30ce521b67f521c66a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:02a58199e4b61c2d8854772359ea02b3abe946e3e67d1cea7ff753c49b0ad3e7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:35e90ec749853c76f098be940be10e29e25401c6a1064a27843f09cac052378f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5fdb8a778fc61b0900436f22aacadd59f7da453af25b9b2eb9c22aca76bc9b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4554e982ba99a234ce6c3717e3447b817fc1c35a384e8fae9766dbb4f22b868_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:3d5ff34a3f9281202e3c0c9593b481d9b16a8321020caca71fa4e3b4d6527579_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:423f3c92919536202042249d0e3911b30e777ad4616ae8f6ca9968c87e14c33d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bcc604910483ac005899662bc05a597cbc8af51dd0c1dbaa05d521b95cc2ee94_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d76ee581c268ee313f9815c181bbbaa91f976c2da68a7a5dfd304e62f4e4a003_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:213608462f3f06ee113095a0b0be07ab8b1e8c194824a11f56c67392729e906d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5f1fd024087262006ea5a3a03b1eaae1590be13fede1f318987921df0c2c3800_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a5d235485bcf72b816bafa06ed24b596b2b72f543e17e845ac8b79dc16f88a86_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ac8a2e047872045fba2fc0ea483a700de6c6398ae2cd184bfbdb021969d6eb6d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:58dc4f0cae516c3613bcb01833e42399b2db12bf7f82c68701baace24fc77b12_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5c793d527449dfb1b10921bc56e8a31ad3d0f8e05dfd19a1782a67025b89879d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5ce2fa8d80f65f80b35fdce9568eb02d1a30252222f8593f60d3d2ab85ca9a7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ec31e82b039af04deb6b8f9c13810a61281a3cedd616aaeb03315bd3abdb2d6d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14d78d97d80007bbfb90b2db94a3d0aab2c5f73e1785fb27ce570cfc5e31c964_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5ed57df32a4594d7acd4e4411b009c6bcfc54b2e90a337f809b8a6a53e858480_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:69275336a4bb1cd9093233541e6f1e29ccecbb8096673ad0b1880d81ae454ef0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b889a52cecf44d33e496bb09da6073217d856dfbe6fe78149669ec2af3dd4f63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:39348b1628d4c75591d22648681ae23c441338241b48d2ed748df691a56dcd36_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6964ff070c67d6f71068014ba253466e6ede36b043cd0f8e3908a32d91953f87_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a274ec689248b4fe3431501c0045736e3b24df4afafcf86ea6d0704e22586c27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ad6f9a3b78b0e98bab747ece64657e69f301337f4966e3f40d3fe0588d1a530b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c28651ad376814116ca3592e5df4853dc0cb04402d825a2d12812ea6df06a4b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6fa533909fe009e146d0522a95259e7f80399cea0ced183c308e146bc51fd9bf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:30c988074c30420793cecbd4d3912868197661b61f00d01bb8fb86f4aae2aeab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3dd6b992e2620c2d08de3ac99c687a9b1562d1a46bc9159a14e34abae9d40f36_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1200e38684ea24ad9e98352ad84e3c3791be192f08f22c77197987e548c02939_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2fa632f63034c5e2ba411ecd6a6655da1f1b5cd65e05dd1c2063893c77fdfb9f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6f9a533d4e52e87336542eaeea992cd22d2979888f7c96d1537fe89a7a186a8c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:784e009ef59f00cf7e127d811f2cbb30f8c4b5c489c9d51985c8385400ce97fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:3576099906e843ef0a4639ab2563ea90c9c875d6be59b1bb687f59cdcff0acb3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6d0bedcf0cfc56da79f55effbb2315fa7da2a126347bf0fa3b21fe96b9c3f037_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7aab0df04151b6970f04174e2b257a77615be9eb724121ff29b59347f8edc8b7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b9a4f7fc7ef59029d19640802db410d32d52a35bf7c8a5ad229ce1e0b559614b_ppc64le | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.19.29 is now available with updates to packages and images that fix several bugs and add enhancements.\n\n This release includes a security update for Red Hat OpenShift Container Platform 4.19.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the container images for Red Hat OpenShift Container Platform 4.19.29. See the following advisory for the RPM packages for this release:\n\nhttps://access.redhat.com/errata/RHBA-2026:10080\n\nSpace precludes documenting all of the container images in this advisory. See the following Release Notes documentation, which will be updated shortly for this release, for details about these changes:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html/release_notes/",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:10093",
"url": "https://access.redhat.com/errata/RHSA-2026:10093"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-69873",
"url": "https://access.redhat.com/security/cve/CVE-2025-69873"
},
{
"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_10093.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.19.29 bug fix and security update",
"tracking": {
"current_release_date": "2026-06-28T21:15:01+00:00",
"generator": {
"date": "2026-06-28T21:15:01+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:10093",
"initial_release_date": "2026-04-29T08:06:12+00:00",
"revision_history": [
{
"date": "2026-04-29T08:06:12+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-04-29T08:07:33+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-28T21:15:01+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.19",
"product": {
"name": "Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.19::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0539cd95b403a48c3ba7a04e3e27da96798e7e342bb6696f65599c693a4b4297_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0539cd95b403a48c3ba7a04e3e27da96798e7e342bb6696f65599c693a4b4297_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0539cd95b403a48c3ba7a04e3e27da96798e7e342bb6696f65599c693a4b4297_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A0539cd95b403a48c3ba7a04e3e27da96798e7e342bb6696f65599c693a4b4297?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:75b581b7faaa791148cfc9a5e5b4c87faf3a809d2baa0fbcec38bac757007b49_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:75b581b7faaa791148cfc9a5e5b4c87faf3a809d2baa0fbcec38bac757007b49_amd64",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:75b581b7faaa791148cfc9a5e5b4c87faf3a809d2baa0fbcec38bac757007b49_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3A75b581b7faaa791148cfc9a5e5b4c87faf3a809d2baa0fbcec38bac757007b49?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674349"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ab5dc4b258e7a47d4a05f2f4975324ecdb53481bf591d41dad10543be93ac59c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ab5dc4b258e7a47d4a05f2f4975324ecdb53481bf591d41dad10543be93ac59c_amd64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ab5dc4b258e7a47d4a05f2f4975324ecdb53481bf591d41dad10543be93ac59c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3Aab5dc4b258e7a47d4a05f2f4975324ecdb53481bf591d41dad10543be93ac59c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673159"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91e0a641719fea07fe1185250e91b13f8ece46fe371bb603308306fa9bbfc5d4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91e0a641719fea07fe1185250e91b13f8ece46fe371bb603308306fa9bbfc5d4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91e0a641719fea07fe1185250e91b13f8ece46fe371bb603308306fa9bbfc5d4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3A91e0a641719fea07fe1185250e91b13f8ece46fe371bb603308306fa9bbfc5d4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:b49b52eea375dce5ee2b1fa3aca1facd6ed65b94e44ab235753eebfd917fdf58_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:b49b52eea375dce5ee2b1fa3aca1facd6ed65b94e44ab235753eebfd917fdf58_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:b49b52eea375dce5ee2b1fa3aca1facd6ed65b94e44ab235753eebfd917fdf58_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3Ab49b52eea375dce5ee2b1fa3aca1facd6ed65b94e44ab235753eebfd917fdf58?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:565239690ed2974560e390d87055eb74f793a4d2abe8dcfcf0d40c4b1d3e4334_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:565239690ed2974560e390d87055eb74f793a4d2abe8dcfcf0d40c4b1d3e4334_amd64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:565239690ed2974560e390d87055eb74f793a4d2abe8dcfcf0d40c4b1d3e4334_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A565239690ed2974560e390d87055eb74f793a4d2abe8dcfcf0d40c4b1d3e4334?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3e79c9035ffce3cb2f835487bd144c0976dc407890016d1fb86d1f1dc3453ed1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3e79c9035ffce3cb2f835487bd144c0976dc407890016d1fb86d1f1dc3453ed1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3e79c9035ffce3cb2f835487bd144c0976dc407890016d1fb86d1f1dc3453ed1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A3e79c9035ffce3cb2f835487bd144c0976dc407890016d1fb86d1f1dc3453ed1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674376"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9fa52422e5bb14cd6eed3ae6d2a3c0ab07f801e6f92493ec59217025239a5121_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9fa52422e5bb14cd6eed3ae6d2a3c0ab07f801e6f92493ec59217025239a5121_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9fa52422e5bb14cd6eed3ae6d2a3c0ab07f801e6f92493ec59217025239a5121_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A9fa52422e5bb14cd6eed3ae6d2a3c0ab07f801e6f92493ec59217025239a5121?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675631"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a387760a9151eb37055ae66aa4821ee114125536324c3404a1b4c7044beebcfb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a387760a9151eb37055ae66aa4821ee114125536324c3404a1b4c7044beebcfb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a387760a9151eb37055ae66aa4821ee114125536324c3404a1b4c7044beebcfb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Aa387760a9151eb37055ae66aa4821ee114125536324c3404a1b4c7044beebcfb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:9557a3d19aec734063ea30485f71fc2f279b7ea77ef1b2d1cbd7e98ebf7e2938_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:9557a3d19aec734063ea30485f71fc2f279b7ea77ef1b2d1cbd7e98ebf7e2938_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:9557a3d19aec734063ea30485f71fc2f279b7ea77ef1b2d1cbd7e98ebf7e2938_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A9557a3d19aec734063ea30485f71fc2f279b7ea77ef1b2d1cbd7e98ebf7e2938?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673171"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cbde0cfe56b953fbee3a2fed6ea3cd13e6cdb0dd0fa74414b488295feecdf5bc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cbde0cfe56b953fbee3a2fed6ea3cd13e6cdb0dd0fa74414b488295feecdf5bc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cbde0cfe56b953fbee3a2fed6ea3cd13e6cdb0dd0fa74414b488295feecdf5bc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3Acbde0cfe56b953fbee3a2fed6ea3cd13e6cdb0dd0fa74414b488295feecdf5bc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673217"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2ba313bef314b9e69e1b2a545ab54b0fbfec2d5a6c8b558dccf18abaa7d7e33e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2ba313bef314b9e69e1b2a545ab54b0fbfec2d5a6c8b558dccf18abaa7d7e33e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2ba313bef314b9e69e1b2a545ab54b0fbfec2d5a6c8b558dccf18abaa7d7e33e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A2ba313bef314b9e69e1b2a545ab54b0fbfec2d5a6c8b558dccf18abaa7d7e33e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674212"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:32286da133273dd699de38a8ea62c46b66fd0f0271788ba6b205ce7e34fd5ff6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:32286da133273dd699de38a8ea62c46b66fd0f0271788ba6b205ce7e34fd5ff6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:32286da133273dd699de38a8ea62c46b66fd0f0271788ba6b205ce7e34fd5ff6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A32286da133273dd699de38a8ea62c46b66fd0f0271788ba6b205ce7e34fd5ff6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674084"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:af6e2eef8ff2eadcff4cd975245ba0cdc56f04931b248cde6d581d2d17582fd6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:af6e2eef8ff2eadcff4cd975245ba0cdc56f04931b248cde6d581d2d17582fd6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:af6e2eef8ff2eadcff4cd975245ba0cdc56f04931b248cde6d581d2d17582fd6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3Aaf6e2eef8ff2eadcff4cd975245ba0cdc56f04931b248cde6d581d2d17582fd6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676087"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:995d3fcffd3f156dcd8831241e80223d35b6a150d9d72e89bf639b6ef6f2b81a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:995d3fcffd3f156dcd8831241e80223d35b6a150d9d72e89bf639b6ef6f2b81a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:995d3fcffd3f156dcd8831241e80223d35b6a150d9d72e89bf639b6ef6f2b81a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A995d3fcffd3f156dcd8831241e80223d35b6a150d9d72e89bf639b6ef6f2b81a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674189"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ae27d39fe63e4d5859648c7cc80b0fdf8ab8072bb8ecb34d21790552274a7abc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ae27d39fe63e4d5859648c7cc80b0fdf8ab8072bb8ecb34d21790552274a7abc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ae27d39fe63e4d5859648c7cc80b0fdf8ab8072bb8ecb34d21790552274a7abc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Aae27d39fe63e4d5859648c7cc80b0fdf8ab8072bb8ecb34d21790552274a7abc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674215"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:511bd02437b2ab8480a54dfe2ed3e8c11c3d9d2b332212cb455c8540678665da_amd64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:511bd02437b2ab8480a54dfe2ed3e8c11c3d9d2b332212cb455c8540678665da_amd64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:511bd02437b2ab8480a54dfe2ed3e8c11c3d9d2b332212cb455c8540678665da_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A511bd02437b2ab8480a54dfe2ed3e8c11c3d9d2b332212cb455c8540678665da?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:070167681620cee73ddfffac875e999f5a32c5ba48fca753ba907671c70e3ba3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:070167681620cee73ddfffac875e999f5a32c5ba48fca753ba907671c70e3ba3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:070167681620cee73ddfffac875e999f5a32c5ba48fca753ba907671c70e3ba3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A070167681620cee73ddfffac875e999f5a32c5ba48fca753ba907671c70e3ba3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674522"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:e163cc3aff166d01ced5f33c6f5c9145a330cd35a7f82538017338ff9ac43f19_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:e163cc3aff166d01ced5f33c6f5c9145a330cd35a7f82538017338ff9ac43f19_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:e163cc3aff166d01ced5f33c6f5c9145a330cd35a7f82538017338ff9ac43f19_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3Ae163cc3aff166d01ced5f33c6f5c9145a330cd35a7f82538017338ff9ac43f19?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676307"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6fd265148a4fd19ed6f39345ae982687a6ccfadefb2dc96af15737550c46891a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6fd265148a4fd19ed6f39345ae982687a6ccfadefb2dc96af15737550c46891a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6fd265148a4fd19ed6f39345ae982687a6ccfadefb2dc96af15737550c46891a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3A6fd265148a4fd19ed6f39345ae982687a6ccfadefb2dc96af15737550c46891a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ea484b41505f1e5b8ddade45cf6f89e7b22ad4b81d740e9db3b4263672611398_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ea484b41505f1e5b8ddade45cf6f89e7b22ad4b81d740e9db3b4263672611398_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ea484b41505f1e5b8ddade45cf6f89e7b22ad4b81d740e9db3b4263672611398_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3Aea484b41505f1e5b8ddade45cf6f89e7b22ad4b81d740e9db3b4263672611398?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673389"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fb4965e61b337cbbc13b082ccfc8ba17f7c98e3a9946a2429967203a71ab5ffa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fb4965e61b337cbbc13b082ccfc8ba17f7c98e3a9946a2429967203a71ab5ffa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fb4965e61b337cbbc13b082ccfc8ba17f7c98e3a9946a2429967203a71ab5ffa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3Afb4965e61b337cbbc13b082ccfc8ba17f7c98e3a9946a2429967203a71ab5ffa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:58b18bfb4498e2a7890ee5979598decd1b9692168ee10ece35178e9c2191f430_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:58b18bfb4498e2a7890ee5979598decd1b9692168ee10ece35178e9c2191f430_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:58b18bfb4498e2a7890ee5979598decd1b9692168ee10ece35178e9c2191f430_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A58b18bfb4498e2a7890ee5979598decd1b9692168ee10ece35178e9c2191f430?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673768"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:7b851c7bfbaaa9227d15850922fc76f76bc517f60be3c984e23d339fc2091eeb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:7b851c7bfbaaa9227d15850922fc76f76bc517f60be3c984e23d339fc2091eeb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:7b851c7bfbaaa9227d15850922fc76f76bc517f60be3c984e23d339fc2091eeb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A7b851c7bfbaaa9227d15850922fc76f76bc517f60be3c984e23d339fc2091eeb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673709"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:efccb4622508c44f67b3693732b8da8bf28bf80097723497289cc3cd3180d19f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:efccb4622508c44f67b3693732b8da8bf28bf80097723497289cc3cd3180d19f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:efccb4622508c44f67b3693732b8da8bf28bf80097723497289cc3cd3180d19f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Aefccb4622508c44f67b3693732b8da8bf28bf80097723497289cc3cd3180d19f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673635"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:2bd57947814981b16996f8d12e40d5a5670dad3eae9fffbd57e700c39c1b1155_amd64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:2bd57947814981b16996f8d12e40d5a5670dad3eae9fffbd57e700c39c1b1155_amd64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:2bd57947814981b16996f8d12e40d5a5670dad3eae9fffbd57e700c39c1b1155_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A2bd57947814981b16996f8d12e40d5a5670dad3eae9fffbd57e700c39c1b1155?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776774927"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:04e57127605538ba40496972299b81737cc2e5197a2ec97fba0b34d74fc9ab5f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:04e57127605538ba40496972299b81737cc2e5197a2ec97fba0b34d74fc9ab5f_amd64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:04e57127605538ba40496972299b81737cc2e5197a2ec97fba0b34d74fc9ab5f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A04e57127605538ba40496972299b81737cc2e5197a2ec97fba0b34d74fc9ab5f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675961"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c2401f994e1783a28eab6f7289a25a6dfb9e6edbf6b424dd0ee9320469cc3a7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c2401f994e1783a28eab6f7289a25a6dfb9e6edbf6b424dd0ee9320469cc3a7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c2401f994e1783a28eab6f7289a25a6dfb9e6edbf6b424dd0ee9320469cc3a7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A1c2401f994e1783a28eab6f7289a25a6dfb9e6edbf6b424dd0ee9320469cc3a7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5998439ba17cc0cdbe1bf48e888862182d6e10400fd9df74dfab53d161f0582a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5998439ba17cc0cdbe1bf48e888862182d6e10400fd9df74dfab53d161f0582a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5998439ba17cc0cdbe1bf48e888862182d6e10400fd9df74dfab53d161f0582a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A5998439ba17cc0cdbe1bf48e888862182d6e10400fd9df74dfab53d161f0582a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673954"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:42a64c335c5af6c607f435c9a09411e789ba8b66d4df1201d532f27df5b9dc04_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:42a64c335c5af6c607f435c9a09411e789ba8b66d4df1201d532f27df5b9dc04_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:42a64c335c5af6c607f435c9a09411e789ba8b66d4df1201d532f27df5b9dc04_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A42a64c335c5af6c607f435c9a09411e789ba8b66d4df1201d532f27df5b9dc04?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:137c1f39ca66f98cd37c8a9deb3279d0acd18c24d70a88b6e8d9033a1926fc0a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:137c1f39ca66f98cd37c8a9deb3279d0acd18c24d70a88b6e8d9033a1926fc0a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:137c1f39ca66f98cd37c8a9deb3279d0acd18c24d70a88b6e8d9033a1926fc0a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A137c1f39ca66f98cd37c8a9deb3279d0acd18c24d70a88b6e8d9033a1926fc0a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673168"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:35e90ec749853c76f098be940be10e29e25401c6a1064a27843f09cac052378f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:35e90ec749853c76f098be940be10e29e25401c6a1064a27843f09cac052378f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:35e90ec749853c76f098be940be10e29e25401c6a1064a27843f09cac052378f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A35e90ec749853c76f098be940be10e29e25401c6a1064a27843f09cac052378f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674222"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c84b8c416b3b543d4406aa42eefdc1c02c12f2bdb1b7d56a3e5c0d9c549dec44_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c84b8c416b3b543d4406aa42eefdc1c02c12f2bdb1b7d56a3e5c0d9c549dec44_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c84b8c416b3b543d4406aa42eefdc1c02c12f2bdb1b7d56a3e5c0d9c549dec44_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Ac84b8c416b3b543d4406aa42eefdc1c02c12f2bdb1b7d56a3e5c0d9c549dec44?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a2a838ee2839658272f41aba9d5e1b41fbb05039c1aee8a63eff7d14d7a1f0fc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a2a838ee2839658272f41aba9d5e1b41fbb05039c1aee8a63eff7d14d7a1f0fc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a2a838ee2839658272f41aba9d5e1b41fbb05039c1aee8a63eff7d14d7a1f0fc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3Aa2a838ee2839658272f41aba9d5e1b41fbb05039c1aee8a63eff7d14d7a1f0fc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:affe71c5753db62c3117e7d4d8d3a79f3e076b740fe8895b5337211ac6809eb3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:affe71c5753db62c3117e7d4d8d3a79f3e076b740fe8895b5337211ac6809eb3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:affe71c5753db62c3117e7d4d8d3a79f3e076b740fe8895b5337211ac6809eb3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3Aaffe71c5753db62c3117e7d4d8d3a79f3e076b740fe8895b5337211ac6809eb3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673594"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:664fcca5d05f7993a6ca81942ea48894df00d46728bae7580f534891e47fa72c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:664fcca5d05f7993a6ca81942ea48894df00d46728bae7580f534891e47fa72c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:664fcca5d05f7993a6ca81942ea48894df00d46728bae7580f534891e47fa72c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3A664fcca5d05f7993a6ca81942ea48894df00d46728bae7580f534891e47fa72c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776666632"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:43fd6e0b0d869a25c61ac074076a78a7f8f389a0c5247af03e7ce51392e90108_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:43fd6e0b0d869a25c61ac074076a78a7f8f389a0c5247af03e7ce51392e90108_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:43fd6e0b0d869a25c61ac074076a78a7f8f389a0c5247af03e7ce51392e90108_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3A43fd6e0b0d869a25c61ac074076a78a7f8f389a0c5247af03e7ce51392e90108?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673369"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ab74018d4cba5a5f1ed65e9de515209321ff6be359ae0958f2a1b73d799805b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ab74018d4cba5a5f1ed65e9de515209321ff6be359ae0958f2a1b73d799805b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ab74018d4cba5a5f1ed65e9de515209321ff6be359ae0958f2a1b73d799805b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A4ab74018d4cba5a5f1ed65e9de515209321ff6be359ae0958f2a1b73d799805b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673786"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c03291d932607165444321fb2fa980104e60ac414920c1c05c499a898b2afedb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c03291d932607165444321fb2fa980104e60ac414920c1c05c499a898b2afedb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c03291d932607165444321fb2fa980104e60ac414920c1c05c499a898b2afedb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3Ac03291d932607165444321fb2fa980104e60ac414920c1c05c499a898b2afedb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673916"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:458cf14369629b17e735598d3e6c24eed47bdd8bfe054034b5a60f4f40b6ec4e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:458cf14369629b17e735598d3e6c24eed47bdd8bfe054034b5a60f4f40b6ec4e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:458cf14369629b17e735598d3e6c24eed47bdd8bfe054034b5a60f4f40b6ec4e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A458cf14369629b17e735598d3e6c24eed47bdd8bfe054034b5a60f4f40b6ec4e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674180"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:1715daa2ffc4a6ea78b5de1a1ffe556d27e3e9aa1cca1d6ec9e53217f27b7ffc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:1715daa2ffc4a6ea78b5de1a1ffe556d27e3e9aa1cca1d6ec9e53217f27b7ffc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:1715daa2ffc4a6ea78b5de1a1ffe556d27e3e9aa1cca1d6ec9e53217f27b7ffc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A1715daa2ffc4a6ea78b5de1a1ffe556d27e3e9aa1cca1d6ec9e53217f27b7ffc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673155"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013f0b271dc70347bae313209781261c76127a19b3a2f8bd074d170a84e49047_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013f0b271dc70347bae313209781261c76127a19b3a2f8bd074d170a84e49047_amd64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013f0b271dc70347bae313209781261c76127a19b3a2f8bd074d170a84e49047_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A013f0b271dc70347bae313209781261c76127a19b3a2f8bd074d170a84e49047?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aca1f2e8b0aeb6eae4a77bf712b8c255dd50526c76e843f9960871cbd4abb6f5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aca1f2e8b0aeb6eae4a77bf712b8c255dd50526c76e843f9960871cbd4abb6f5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aca1f2e8b0aeb6eae4a77bf712b8c255dd50526c76e843f9960871cbd4abb6f5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Aaca1f2e8b0aeb6eae4a77bf712b8c255dd50526c76e843f9960871cbd4abb6f5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676374"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6ccfe8e12098c660310fa2af574a71b7b27b23050f6b6c524e9c1787c7127110_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6ccfe8e12098c660310fa2af574a71b7b27b23050f6b6c524e9c1787c7127110_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6ccfe8e12098c660310fa2af574a71b7b27b23050f6b6c524e9c1787c7127110_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A6ccfe8e12098c660310fa2af574a71b7b27b23050f6b6c524e9c1787c7127110?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7a7b182e9ec23abab1daeee26897eecb99e1785569a62888db4b54d6e897568e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7a7b182e9ec23abab1daeee26897eecb99e1785569a62888db4b54d6e897568e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7a7b182e9ec23abab1daeee26897eecb99e1785569a62888db4b54d6e897568e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A7a7b182e9ec23abab1daeee26897eecb99e1785569a62888db4b54d6e897568e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c5c16e51700e2c16c6fd496225946c033875f4fa4c0174ea625958bd62a7ac51_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c5c16e51700e2c16c6fd496225946c033875f4fa4c0174ea625958bd62a7ac51_amd64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c5c16e51700e2c16c6fd496225946c033875f4fa4c0174ea625958bd62a7ac51_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3Ac5c16e51700e2c16c6fd496225946c033875f4fa4c0174ea625958bd62a7ac51?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:7f08d881878f5d69360edd1be3e1e5190a66df75a087120abb37b2c0a78b4473_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:7f08d881878f5d69360edd1be3e1e5190a66df75a087120abb37b2c0a78b4473_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:7f08d881878f5d69360edd1be3e1e5190a66df75a087120abb37b2c0a78b4473_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A7f08d881878f5d69360edd1be3e1e5190a66df75a087120abb37b2c0a78b4473?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673149"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6fc448b6852cb86de3661f170f364c99940a004d1f85f9e0d546f24aba812fad_amd64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6fc448b6852cb86de3661f170f364c99940a004d1f85f9e0d546f24aba812fad_amd64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6fc448b6852cb86de3661f170f364c99940a004d1f85f9e0d546f24aba812fad_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A6fc448b6852cb86de3661f170f364c99940a004d1f85f9e0d546f24aba812fad?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675952"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e819fb1752cc974f7ec462dd49c52f9575c7b0db53f8cda50121ce1a391ef0a3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e819fb1752cc974f7ec462dd49c52f9575c7b0db53f8cda50121ce1a391ef0a3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e819fb1752cc974f7ec462dd49c52f9575c7b0db53f8cda50121ce1a391ef0a3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3Ae819fb1752cc974f7ec462dd49c52f9575c7b0db53f8cda50121ce1a391ef0a3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56b40826166445e18229752bbcf65a4cf498e30c4f763110099e9adf1accb209_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56b40826166445e18229752bbcf65a4cf498e30c4f763110099e9adf1accb209_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56b40826166445e18229752bbcf65a4cf498e30c4f763110099e9adf1accb209_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A56b40826166445e18229752bbcf65a4cf498e30c4f763110099e9adf1accb209?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673507"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ad7c164753be2cf26a2c69aacb95f5d91e5b1120dac43cb2ec505794fd98fb7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ad7c164753be2cf26a2c69aacb95f5d91e5b1120dac43cb2ec505794fd98fb7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ad7c164753be2cf26a2c69aacb95f5d91e5b1120dac43cb2ec505794fd98fb7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A3ad7c164753be2cf26a2c69aacb95f5d91e5b1120dac43cb2ec505794fd98fb7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d7da61ad815088b8c671d5dde3b5878fff0083776e1618c3a11594e6f08c26b4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d7da61ad815088b8c671d5dde3b5878fff0083776e1618c3a11594e6f08c26b4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d7da61ad815088b8c671d5dde3b5878fff0083776e1618c3a11594e6f08c26b4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3Ad7da61ad815088b8c671d5dde3b5878fff0083776e1618c3a11594e6f08c26b4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673160"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:93b66467306d137b06f29b307a72f45eb3a9149a15cdce0bbefd93a9034de3a7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:93b66467306d137b06f29b307a72f45eb3a9149a15cdce0bbefd93a9034de3a7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:93b66467306d137b06f29b307a72f45eb3a9149a15cdce0bbefd93a9034de3a7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A93b66467306d137b06f29b307a72f45eb3a9149a15cdce0bbefd93a9034de3a7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676307"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d71b697e5c67952876677ad7d89394139d322dd6320943c1bc32fef9c501c326_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d71b697e5c67952876677ad7d89394139d322dd6320943c1bc32fef9c501c326_amd64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d71b697e5c67952876677ad7d89394139d322dd6320943c1bc32fef9c501c326_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3Ad71b697e5c67952876677ad7d89394139d322dd6320943c1bc32fef9c501c326?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e16e35579e3696474f357bcd4bb3c77bdfdb1603b971c3267d08f8fd119da62a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e16e35579e3696474f357bcd4bb3c77bdfdb1603b971c3267d08f8fd119da62a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e16e35579e3696474f357bcd4bb3c77bdfdb1603b971c3267d08f8fd119da62a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Ae16e35579e3696474f357bcd4bb3c77bdfdb1603b971c3267d08f8fd119da62a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675807"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:049dbb920b57cff7ffb88073192c4c843fef754775862e4d57d2373637e45c85_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:049dbb920b57cff7ffb88073192c4c843fef754775862e4d57d2373637e45c85_amd64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:049dbb920b57cff7ffb88073192c4c843fef754775862e4d57d2373637e45c85_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A049dbb920b57cff7ffb88073192c4c843fef754775862e4d57d2373637e45c85?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675019"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d85785005a4cf5e4bc26adabdddffe345fa8827a0db2240d01cf64a49747675_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d85785005a4cf5e4bc26adabdddffe345fa8827a0db2240d01cf64a49747675_amd64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d85785005a4cf5e4bc26adabdddffe345fa8827a0db2240d01cf64a49747675_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A6d85785005a4cf5e4bc26adabdddffe345fa8827a0db2240d01cf64a49747675?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673538"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:9f541ec9efd0d0553a8648c8048c7b91854c3d8419e07c909e621d2ff5276c60_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:9f541ec9efd0d0553a8648c8048c7b91854c3d8419e07c909e621d2ff5276c60_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:9f541ec9efd0d0553a8648c8048c7b91854c3d8419e07c909e621d2ff5276c60_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A9f541ec9efd0d0553a8648c8048c7b91854c3d8419e07c909e621d2ff5276c60?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675111"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:58dc4f0cae516c3613bcb01833e42399b2db12bf7f82c68701baace24fc77b12_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:58dc4f0cae516c3613bcb01833e42399b2db12bf7f82c68701baace24fc77b12_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:58dc4f0cae516c3613bcb01833e42399b2db12bf7f82c68701baace24fc77b12_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A58dc4f0cae516c3613bcb01833e42399b2db12bf7f82c68701baace24fc77b12?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683987"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:502e2c5f47b1b95e0ce1e3922306ee37c604845d1d1accd92181342b473d3b3e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:502e2c5f47b1b95e0ce1e3922306ee37c604845d1d1accd92181342b473d3b3e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:502e2c5f47b1b95e0ce1e3922306ee37c604845d1d1accd92181342b473d3b3e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A502e2c5f47b1b95e0ce1e3922306ee37c604845d1d1accd92181342b473d3b3e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675815"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ad1b944c7135118573159adb6eb359face5ab141e8328420eaca3999fabd8575_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ad1b944c7135118573159adb6eb359face5ab141e8328420eaca3999fabd8575_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ad1b944c7135118573159adb6eb359face5ab141e8328420eaca3999fabd8575_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3Aad1b944c7135118573159adb6eb359face5ab141e8328420eaca3999fabd8575?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676032"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:64ba60275b58312a1a2472ddc46894c40e746014eef5ea4379f71c0b6d7c96a3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:64ba60275b58312a1a2472ddc46894c40e746014eef5ea4379f71c0b6d7c96a3_amd64",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:64ba60275b58312a1a2472ddc46894c40e746014eef5ea4379f71c0b6d7c96a3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3A64ba60275b58312a1a2472ddc46894c40e746014eef5ea4379f71c0b6d7c96a3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674283"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bc298ee8cd84ce0a44f51ba31cefe4052b67cbf9ea559fac77de3ca7a02762fe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bc298ee8cd84ce0a44f51ba31cefe4052b67cbf9ea559fac77de3ca7a02762fe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bc298ee8cd84ce0a44f51ba31cefe4052b67cbf9ea559fac77de3ca7a02762fe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3Abc298ee8cd84ce0a44f51ba31cefe4052b67cbf9ea559fac77de3ca7a02762fe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2bb613f365004e6cca2c81baa7a59ff75a08efff24294779f54a51296a4f1afe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2bb613f365004e6cca2c81baa7a59ff75a08efff24294779f54a51296a4f1afe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2bb613f365004e6cca2c81baa7a59ff75a08efff24294779f54a51296a4f1afe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A2bb613f365004e6cca2c81baa7a59ff75a08efff24294779f54a51296a4f1afe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675892"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bc0fd93c51986738cb1f49fa4a31f066ea2ccccfd45c36a2ae7066244cf1e351_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bc0fd93c51986738cb1f49fa4a31f066ea2ccccfd45c36a2ae7066244cf1e351_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bc0fd93c51986738cb1f49fa4a31f066ea2ccccfd45c36a2ae7066244cf1e351_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Abc0fd93c51986738cb1f49fa4a31f066ea2ccccfd45c36a2ae7066244cf1e351?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673632"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bbb9f7761a83c0face258f4c056fc8276f1e84e37e533ceee3cd1ac11367ed1d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bbb9f7761a83c0face258f4c056fc8276f1e84e37e533ceee3cd1ac11367ed1d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bbb9f7761a83c0face258f4c056fc8276f1e84e37e533ceee3cd1ac11367ed1d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3Abbb9f7761a83c0face258f4c056fc8276f1e84e37e533ceee3cd1ac11367ed1d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f1f47f29cbc61ddc25a846d4c7d9caa18b91cfcf0e089989883a28ad86b1f2b3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f1f47f29cbc61ddc25a846d4c7d9caa18b91cfcf0e089989883a28ad86b1f2b3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f1f47f29cbc61ddc25a846d4c7d9caa18b91cfcf0e089989883a28ad86b1f2b3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Af1f47f29cbc61ddc25a846d4c7d9caa18b91cfcf0e089989883a28ad86b1f2b3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674025"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:607051d5881ef1f78d6a62e3ebdeb761f83988788f7898d869482c22773dbe9b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:607051d5881ef1f78d6a62e3ebdeb761f83988788f7898d869482c22773dbe9b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:607051d5881ef1f78d6a62e3ebdeb761f83988788f7898d869482c22773dbe9b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A607051d5881ef1f78d6a62e3ebdeb761f83988788f7898d869482c22773dbe9b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676059"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f24128b82f5c31b4eaf4f7198e4b8c0c702588f0568221b07df121175066372b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f24128b82f5c31b4eaf4f7198e4b8c0c702588f0568221b07df121175066372b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f24128b82f5c31b4eaf4f7198e4b8c0c702588f0568221b07df121175066372b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3Af24128b82f5c31b4eaf4f7198e4b8c0c702588f0568221b07df121175066372b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675556"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d59d91a2af93c1c7b2dd66e5cb98cd8ccc29c3c64b2cf016dea1d2828a6e06a8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d59d91a2af93c1c7b2dd66e5cb98cd8ccc29c3c64b2cf016dea1d2828a6e06a8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d59d91a2af93c1c7b2dd66e5cb98cd8ccc29c3c64b2cf016dea1d2828a6e06a8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3Ad59d91a2af93c1c7b2dd66e5cb98cd8ccc29c3c64b2cf016dea1d2828a6e06a8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676287"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ae63547bd2f56fb1f1efe75e17413e43cf503fc7089dff3fecb68d2fc50bef97_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ae63547bd2f56fb1f1efe75e17413e43cf503fc7089dff3fecb68d2fc50bef97_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ae63547bd2f56fb1f1efe75e17413e43cf503fc7089dff3fecb68d2fc50bef97_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3Aae63547bd2f56fb1f1efe75e17413e43cf503fc7089dff3fecb68d2fc50bef97?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776666515"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:80154aeefda9559b46845fb40f50aa723f75f29485cfb4846995d08b0c0bceb6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:80154aeefda9559b46845fb40f50aa723f75f29485cfb4846995d08b0c0bceb6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:80154aeefda9559b46845fb40f50aa723f75f29485cfb4846995d08b0c0bceb6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3A80154aeefda9559b46845fb40f50aa723f75f29485cfb4846995d08b0c0bceb6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673601"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6898ceb180df4a46da74c974cdd105e3bcbc5ddd1575e3cabe53a43dc676258e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6898ceb180df4a46da74c974cdd105e3bcbc5ddd1575e3cabe53a43dc676258e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6898ceb180df4a46da74c974cdd105e3bcbc5ddd1575e3cabe53a43dc676258e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3A6898ceb180df4a46da74c974cdd105e3bcbc5ddd1575e3cabe53a43dc676258e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673407"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0ee0d97e5b746a6df7d95ee4ef32075b52a235cd285039e2460f6ad084b1f5e5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0ee0d97e5b746a6df7d95ee4ef32075b52a235cd285039e2460f6ad084b1f5e5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0ee0d97e5b746a6df7d95ee4ef32075b52a235cd285039e2460f6ad084b1f5e5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A0ee0d97e5b746a6df7d95ee4ef32075b52a235cd285039e2460f6ad084b1f5e5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673393"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f94694f0d2db1759fa507fdde4594e6b4025a61e3c3f8f2e6caad509a77f6709_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f94694f0d2db1759fa507fdde4594e6b4025a61e3c3f8f2e6caad509a77f6709_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f94694f0d2db1759fa507fdde4594e6b4025a61e3c3f8f2e6caad509a77f6709_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3Af94694f0d2db1759fa507fdde4594e6b4025a61e3c3f8f2e6caad509a77f6709?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673209"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:a9fb56ddfaafe28542fd8a824923257122500903fc18626f90d84b7e9b2da856_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:a9fb56ddfaafe28542fd8a824923257122500903fc18626f90d84b7e9b2da856_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:a9fb56ddfaafe28542fd8a824923257122500903fc18626f90d84b7e9b2da856_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3Aa9fb56ddfaafe28542fd8a824923257122500903fc18626f90d84b7e9b2da856?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673524"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8a2d63e97b83cac2d12e809ea63398ba1c188dd996a00189664c5dd009551860_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8a2d63e97b83cac2d12e809ea63398ba1c188dd996a00189664c5dd009551860_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8a2d63e97b83cac2d12e809ea63398ba1c188dd996a00189664c5dd009551860_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3A8a2d63e97b83cac2d12e809ea63398ba1c188dd996a00189664c5dd009551860?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776666612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:10847c520f582706d956c48a95e6e2fac51cce89aa8a3d4fee316fb1ec97e140_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:10847c520f582706d956c48a95e6e2fac51cce89aa8a3d4fee316fb1ec97e140_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:10847c520f582706d956c48a95e6e2fac51cce89aa8a3d4fee316fb1ec97e140_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3A10847c520f582706d956c48a95e6e2fac51cce89aa8a3d4fee316fb1ec97e140?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776666730"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:26422066656afd16e5e36afeb7e4b5a92cb6888d550ab0a0071da9a198f290d5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:26422066656afd16e5e36afeb7e4b5a92cb6888d550ab0a0071da9a198f290d5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:26422066656afd16e5e36afeb7e4b5a92cb6888d550ab0a0071da9a198f290d5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3A26422066656afd16e5e36afeb7e4b5a92cb6888d550ab0a0071da9a198f290d5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673610"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:11f214e396caf556ca08273015712fc739d1df22b550812d079ef51af642d311_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:11f214e396caf556ca08273015712fc739d1df22b550812d079ef51af642d311_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:11f214e396caf556ca08273015712fc739d1df22b550812d079ef51af642d311_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3A11f214e396caf556ca08273015712fc739d1df22b550812d079ef51af642d311?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673390"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:eaa84214ab82626dee31c0f652f6d4d980065a920932eb8e69f2e078c8fc16b0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:eaa84214ab82626dee31c0f652f6d4d980065a920932eb8e69f2e078c8fc16b0_amd64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:eaa84214ab82626dee31c0f652f6d4d980065a920932eb8e69f2e078c8fc16b0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3Aeaa84214ab82626dee31c0f652f6d4d980065a920932eb8e69f2e078c8fc16b0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674666"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:fcbec489ae513f599fd533e30672085aacb0f937b7d3ecb8f97a39b24d0e3143_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:fcbec489ae513f599fd533e30672085aacb0f937b7d3ecb8f97a39b24d0e3143_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:fcbec489ae513f599fd533e30672085aacb0f937b7d3ecb8f97a39b24d0e3143_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3Afcbec489ae513f599fd533e30672085aacb0f937b7d3ecb8f97a39b24d0e3143?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673554"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a37378e201c50cfd94eddd0ca6163650e8af46e7c3a4f97d821aff530ea5374_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a37378e201c50cfd94eddd0ca6163650e8af46e7c3a4f97d821aff530ea5374_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a37378e201c50cfd94eddd0ca6163650e8af46e7c3a4f97d821aff530ea5374_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A0a37378e201c50cfd94eddd0ca6163650e8af46e7c3a4f97d821aff530ea5374?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674064"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f403594cab45dfc4de5a1fb56f8c9cb8d67ee8b8da68ef64487ef45ff6578236_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f403594cab45dfc4de5a1fb56f8c9cb8d67ee8b8da68ef64487ef45ff6578236_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f403594cab45dfc4de5a1fb56f8c9cb8d67ee8b8da68ef64487ef45ff6578236_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3Af403594cab45dfc4de5a1fb56f8c9cb8d67ee8b8da68ef64487ef45ff6578236?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776684174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:0c0ffcda769ef04c9b46206aafeed9d6afe4f82ebd46751aab4b47ee6584fab4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:0c0ffcda769ef04c9b46206aafeed9d6afe4f82ebd46751aab4b47ee6584fab4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:0c0ffcda769ef04c9b46206aafeed9d6afe4f82ebd46751aab4b47ee6584fab4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A0c0ffcda769ef04c9b46206aafeed9d6afe4f82ebd46751aab4b47ee6584fab4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673140"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ba71968598ba3fcc8dd2d9e3a861484f74804828ebbe5b7251da6706b4cbaae0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ba71968598ba3fcc8dd2d9e3a861484f74804828ebbe5b7251da6706b4cbaae0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ba71968598ba3fcc8dd2d9e3a861484f74804828ebbe5b7251da6706b4cbaae0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3Aba71968598ba3fcc8dd2d9e3a861484f74804828ebbe5b7251da6706b4cbaae0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:328589e1b67b3322968ac4f8b57193b936fbcac1317136e2818f8792e76a7d0c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:328589e1b67b3322968ac4f8b57193b936fbcac1317136e2818f8792e76a7d0c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:328589e1b67b3322968ac4f8b57193b936fbcac1317136e2818f8792e76a7d0c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A328589e1b67b3322968ac4f8b57193b936fbcac1317136e2818f8792e76a7d0c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2684c0efc9838adc240b08c8b263d829bec71acd381dcb4147d8c45eb1d08d08_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2684c0efc9838adc240b08c8b263d829bec71acd381dcb4147d8c45eb1d08d08_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2684c0efc9838adc240b08c8b263d829bec71acd381dcb4147d8c45eb1d08d08_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A2684c0efc9838adc240b08c8b263d829bec71acd381dcb4147d8c45eb1d08d08?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675602"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b7acf9a4f00a5134eb1810f0ea70fdacfcf56549ced88a80b36abeda4435d925_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b7acf9a4f00a5134eb1810f0ea70fdacfcf56549ced88a80b36abeda4435d925_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b7acf9a4f00a5134eb1810f0ea70fdacfcf56549ced88a80b36abeda4435d925_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3Ab7acf9a4f00a5134eb1810f0ea70fdacfcf56549ced88a80b36abeda4435d925?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:020cd17bf8debf39db376f9f514901b1bb882de052631a01814812dd0a913f53_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:020cd17bf8debf39db376f9f514901b1bb882de052631a01814812dd0a913f53_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:020cd17bf8debf39db376f9f514901b1bb882de052631a01814812dd0a913f53_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A020cd17bf8debf39db376f9f514901b1bb882de052631a01814812dd0a913f53?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3d6a4223a99f958f0fa1c4afa6f1aaa7a584a996fd95140c1bc151eddf215c57_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3d6a4223a99f958f0fa1c4afa6f1aaa7a584a996fd95140c1bc151eddf215c57_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3d6a4223a99f958f0fa1c4afa6f1aaa7a584a996fd95140c1bc151eddf215c57_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A3d6a4223a99f958f0fa1c4afa6f1aaa7a584a996fd95140c1bc151eddf215c57?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674368"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e70213ca82db398d11de723f2dd463c196059fed0639ccec30709332648efe78_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e70213ca82db398d11de723f2dd463c196059fed0639ccec30709332648efe78_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e70213ca82db398d11de723f2dd463c196059fed0639ccec30709332648efe78_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3Ae70213ca82db398d11de723f2dd463c196059fed0639ccec30709332648efe78?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674066"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4a524f1fcf7c5710ceec19c651216c326ce15290848e4736d504f3247a20e1eb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4a524f1fcf7c5710ceec19c651216c326ce15290848e4736d504f3247a20e1eb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4a524f1fcf7c5710ceec19c651216c326ce15290848e4736d504f3247a20e1eb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A4a524f1fcf7c5710ceec19c651216c326ce15290848e4736d504f3247a20e1eb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673138"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:8731368ad974fd8d1e5c954284fce9346912eb4210b01e01e6fc95893320f591_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:8731368ad974fd8d1e5c954284fce9346912eb4210b01e01e6fc95893320f591_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:8731368ad974fd8d1e5c954284fce9346912eb4210b01e01e6fc95893320f591_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A8731368ad974fd8d1e5c954284fce9346912eb4210b01e01e6fc95893320f591?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674388"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f6a6951136c7faa7b9bcd0f6c892ec9658a2fa8701e0dec5e45225c3bae52bc9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f6a6951136c7faa7b9bcd0f6c892ec9658a2fa8701e0dec5e45225c3bae52bc9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f6a6951136c7faa7b9bcd0f6c892ec9658a2fa8701e0dec5e45225c3bae52bc9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Af6a6951136c7faa7b9bcd0f6c892ec9658a2fa8701e0dec5e45225c3bae52bc9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674121"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0eae1a64fecdc43b68370d99fb14c369c5f0116d37bda62cba7196c0ea002116_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0eae1a64fecdc43b68370d99fb14c369c5f0116d37bda62cba7196c0ea002116_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0eae1a64fecdc43b68370d99fb14c369c5f0116d37bda62cba7196c0ea002116_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A0eae1a64fecdc43b68370d99fb14c369c5f0116d37bda62cba7196c0ea002116?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675984"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002f5d99c5fc748401bed6ef7d0aebf2fb58d6850e7d1de4df622c84e020e87_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002f5d99c5fc748401bed6ef7d0aebf2fb58d6850e7d1de4df622c84e020e87_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002f5d99c5fc748401bed6ef7d0aebf2fb58d6850e7d1de4df622c84e020e87_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3Ac002f5d99c5fc748401bed6ef7d0aebf2fb58d6850e7d1de4df622c84e020e87?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675859"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7a977b59ab4f908549ad66c89473f9dbb84e31eefbe6a8dfc92f5598d3f882bd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7a977b59ab4f908549ad66c89473f9dbb84e31eefbe6a8dfc92f5598d3f882bd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7a977b59ab4f908549ad66c89473f9dbb84e31eefbe6a8dfc92f5598d3f882bd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A7a977b59ab4f908549ad66c89473f9dbb84e31eefbe6a8dfc92f5598d3f882bd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:366eb47b3cb6c42670ceba8966f0ab119694536fb2baac881685e75e6615dc85_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:366eb47b3cb6c42670ceba8966f0ab119694536fb2baac881685e75e6615dc85_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:366eb47b3cb6c42670ceba8966f0ab119694536fb2baac881685e75e6615dc85_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A366eb47b3cb6c42670ceba8966f0ab119694536fb2baac881685e75e6615dc85?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674233"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:28b92b175c80d10b33844a1466fe71cb48f48431513dd0c634f2ced57e0fa5b6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:28b92b175c80d10b33844a1466fe71cb48f48431513dd0c634f2ced57e0fa5b6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:28b92b175c80d10b33844a1466fe71cb48f48431513dd0c634f2ced57e0fa5b6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A28b92b175c80d10b33844a1466fe71cb48f48431513dd0c634f2ced57e0fa5b6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:215cb8bf8d6ed22118bebdc28ed8766acfe0d8bcc2c5e8311d3b4dbf8a664d48_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:215cb8bf8d6ed22118bebdc28ed8766acfe0d8bcc2c5e8311d3b4dbf8a664d48_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:215cb8bf8d6ed22118bebdc28ed8766acfe0d8bcc2c5e8311d3b4dbf8a664d48_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A215cb8bf8d6ed22118bebdc28ed8766acfe0d8bcc2c5e8311d3b4dbf8a664d48?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6ad8362a4cb63bb7bae0e49db53ff65fc60a16f01a414e9f2ab540606a284b08_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6ad8362a4cb63bb7bae0e49db53ff65fc60a16f01a414e9f2ab540606a284b08_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6ad8362a4cb63bb7bae0e49db53ff65fc60a16f01a414e9f2ab540606a284b08_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A6ad8362a4cb63bb7bae0e49db53ff65fc60a16f01a414e9f2ab540606a284b08?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676163"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6d5855d82cc1db4c9b87e58fdcd0133f56d26e44942787c74d0cd27e212ddfba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6d5855d82cc1db4c9b87e58fdcd0133f56d26e44942787c74d0cd27e212ddfba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6d5855d82cc1db4c9b87e58fdcd0133f56d26e44942787c74d0cd27e212ddfba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A6d5855d82cc1db4c9b87e58fdcd0133f56d26e44942787c74d0cd27e212ddfba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675744"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:7ebf3a7acad88ffd14b4ae54a1a8fac1eb1d22b6f102216df4586e544d2fe1f7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:7ebf3a7acad88ffd14b4ae54a1a8fac1eb1d22b6f102216df4586e544d2fe1f7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:7ebf3a7acad88ffd14b4ae54a1a8fac1eb1d22b6f102216df4586e544d2fe1f7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A7ebf3a7acad88ffd14b4ae54a1a8fac1eb1d22b6f102216df4586e544d2fe1f7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675070"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9b8c9e0dba83ba79ff28bda01050caca261f0e723e8f222cfce4a840db29e300_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9b8c9e0dba83ba79ff28bda01050caca261f0e723e8f222cfce4a840db29e300_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9b8c9e0dba83ba79ff28bda01050caca261f0e723e8f222cfce4a840db29e300_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A9b8c9e0dba83ba79ff28bda01050caca261f0e723e8f222cfce4a840db29e300?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675846"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5928577bdfc2683410ba93dba0ec9106d1ab29bce79f56a832c06e00ef82fb48_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5928577bdfc2683410ba93dba0ec9106d1ab29bce79f56a832c06e00ef82fb48_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5928577bdfc2683410ba93dba0ec9106d1ab29bce79f56a832c06e00ef82fb48_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A5928577bdfc2683410ba93dba0ec9106d1ab29bce79f56a832c06e00ef82fb48?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676044"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:95c36149f02710b63a6c05bd3249027dea0cb332ce600226b6a7aebf4ff73e38_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:95c36149f02710b63a6c05bd3249027dea0cb332ce600226b6a7aebf4ff73e38_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:95c36149f02710b63a6c05bd3249027dea0cb332ce600226b6a7aebf4ff73e38_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A95c36149f02710b63a6c05bd3249027dea0cb332ce600226b6a7aebf4ff73e38?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673522"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b965fdf100922a0b263f372f4757fec562f0b48a8032d2c7090d9c8f19b5aca0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b965fdf100922a0b263f372f4757fec562f0b48a8032d2c7090d9c8f19b5aca0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b965fdf100922a0b263f372f4757fec562f0b48a8032d2c7090d9c8f19b5aca0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Ab965fdf100922a0b263f372f4757fec562f0b48a8032d2c7090d9c8f19b5aca0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676017"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aa195335b903dcf873590deea8e425735760fee97ab33c5b648bfea1aacfa894_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aa195335b903dcf873590deea8e425735760fee97ab33c5b648bfea1aacfa894_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aa195335b903dcf873590deea8e425735760fee97ab33c5b648bfea1aacfa894_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3Aaa195335b903dcf873590deea8e425735760fee97ab33c5b648bfea1aacfa894?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:836090b24936b955f5b60d236ae328e50ac91ba3cc367249cb5d7762cb15ebc6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:836090b24936b955f5b60d236ae328e50ac91ba3cc367249cb5d7762cb15ebc6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:836090b24936b955f5b60d236ae328e50ac91ba3cc367249cb5d7762cb15ebc6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A836090b24936b955f5b60d236ae328e50ac91ba3cc367249cb5d7762cb15ebc6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3fccc681700104f6edd949e78d406f8c10375739f4ce8c5c23c9e85b69b1f201_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3fccc681700104f6edd949e78d406f8c10375739f4ce8c5c23c9e85b69b1f201_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3fccc681700104f6edd949e78d406f8c10375739f4ce8c5c23c9e85b69b1f201_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A3fccc681700104f6edd949e78d406f8c10375739f4ce8c5c23c9e85b69b1f201?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676139"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1200e38684ea24ad9e98352ad84e3c3791be192f08f22c77197987e548c02939_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1200e38684ea24ad9e98352ad84e3c3791be192f08f22c77197987e548c02939_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1200e38684ea24ad9e98352ad84e3c3791be192f08f22c77197987e548c02939_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A1200e38684ea24ad9e98352ad84e3c3791be192f08f22c77197987e548c02939?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:309782f6dc79d9760dde0265959260871b592a5586bf4073e9561e813f316816_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:309782f6dc79d9760dde0265959260871b592a5586bf4073e9561e813f316816_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:309782f6dc79d9760dde0265959260871b592a5586bf4073e9561e813f316816_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A309782f6dc79d9760dde0265959260871b592a5586bf4073e9561e813f316816?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676057"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a985f0116d10743bdde5e34fb181c4639ff0941caa66a3590713ea5d2586115c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a985f0116d10743bdde5e34fb181c4639ff0941caa66a3590713ea5d2586115c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a985f0116d10743bdde5e34fb181c4639ff0941caa66a3590713ea5d2586115c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3Aa985f0116d10743bdde5e34fb181c4639ff0941caa66a3590713ea5d2586115c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:385e0ff7ff74b73dac4393c5ed5d700cb3a1289d501917dd44a6adee10f492b9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:385e0ff7ff74b73dac4393c5ed5d700cb3a1289d501917dd44a6adee10f492b9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:385e0ff7ff74b73dac4393c5ed5d700cb3a1289d501917dd44a6adee10f492b9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A385e0ff7ff74b73dac4393c5ed5d700cb3a1289d501917dd44a6adee10f492b9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674415"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f75d1ef206cef5035c7a4e2d0f8e73330eee059919cc4283cf0ae8711a3e7865_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f75d1ef206cef5035c7a4e2d0f8e73330eee059919cc4283cf0ae8711a3e7865_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f75d1ef206cef5035c7a4e2d0f8e73330eee059919cc4283cf0ae8711a3e7865_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3Af75d1ef206cef5035c7a4e2d0f8e73330eee059919cc4283cf0ae8711a3e7865?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673178"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:683faf9d19ecd98b5cc92545e3628a1049b13156136f86626896572e7401a356_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:683faf9d19ecd98b5cc92545e3628a1049b13156136f86626896572e7401a356_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:683faf9d19ecd98b5cc92545e3628a1049b13156136f86626896572e7401a356_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A683faf9d19ecd98b5cc92545e3628a1049b13156136f86626896572e7401a356?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9aad9fae53a218cf8bd83d50b3df6163a9f0ef6fe742a9527d0cc267fc8164a5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9aad9fae53a218cf8bd83d50b3df6163a9f0ef6fe742a9527d0cc267fc8164a5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9aad9fae53a218cf8bd83d50b3df6163a9f0ef6fe742a9527d0cc267fc8164a5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A9aad9fae53a218cf8bd83d50b3df6163a9f0ef6fe742a9527d0cc267fc8164a5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:231178be9e1d4d547dc7705f82f8e529672f47786de781ca53424543d9b1e073_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:231178be9e1d4d547dc7705f82f8e529672f47786de781ca53424543d9b1e073_amd64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:231178be9e1d4d547dc7705f82f8e529672f47786de781ca53424543d9b1e073_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A231178be9e1d4d547dc7705f82f8e529672f47786de781ca53424543d9b1e073?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:1dbb201ad9ba579d5fec8a6cd23834d0c1ad9c4d44927b1c90ae448458ecccfe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:1dbb201ad9ba579d5fec8a6cd23834d0c1ad9c4d44927b1c90ae448458ecccfe_amd64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:1dbb201ad9ba579d5fec8a6cd23834d0c1ad9c4d44927b1c90ae448458ecccfe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A1dbb201ad9ba579d5fec8a6cd23834d0c1ad9c4d44927b1c90ae448458ecccfe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673943"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2873f8aca5b0ead479497c023010d6cf324fa893522eaa924f10695a63c1045d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2873f8aca5b0ead479497c023010d6cf324fa893522eaa924f10695a63c1045d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2873f8aca5b0ead479497c023010d6cf324fa893522eaa924f10695a63c1045d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A2873f8aca5b0ead479497c023010d6cf324fa893522eaa924f10695a63c1045d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673966"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5599c06a31ac2bdd1a8f190f5095a1614788b2aedab9fc4f454cdbdcff9bca9f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5599c06a31ac2bdd1a8f190f5095a1614788b2aedab9fc4f454cdbdcff9bca9f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5599c06a31ac2bdd1a8f190f5095a1614788b2aedab9fc4f454cdbdcff9bca9f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A5599c06a31ac2bdd1a8f190f5095a1614788b2aedab9fc4f454cdbdcff9bca9f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:87a0e8e9d89cbb753a2507abcb8b0b1b3258a7a88f5d632f174e6097789cc7c6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:87a0e8e9d89cbb753a2507abcb8b0b1b3258a7a88f5d632f174e6097789cc7c6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:87a0e8e9d89cbb753a2507abcb8b0b1b3258a7a88f5d632f174e6097789cc7c6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A87a0e8e9d89cbb753a2507abcb8b0b1b3258a7a88f5d632f174e6097789cc7c6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673970"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32526be8ad65ea6e3f70126e66ec2494364930f90aeaae32f1ea3611ac7e167e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32526be8ad65ea6e3f70126e66ec2494364930f90aeaae32f1ea3611ac7e167e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32526be8ad65ea6e3f70126e66ec2494364930f90aeaae32f1ea3611ac7e167e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A32526be8ad65ea6e3f70126e66ec2494364930f90aeaae32f1ea3611ac7e167e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673289"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:9329715c3820b10b14bd23f2f3e89ea1172886a3c61333d8b099019701f80619_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:9329715c3820b10b14bd23f2f3e89ea1172886a3c61333d8b099019701f80619_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:9329715c3820b10b14bd23f2f3e89ea1172886a3c61333d8b099019701f80619_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3A9329715c3820b10b14bd23f2f3e89ea1172886a3c61333d8b099019701f80619?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675447"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f050a78d1622d2a10a4549fa7d2340eacdfc80e4c1a628078a4a13006df99e35_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f050a78d1622d2a10a4549fa7d2340eacdfc80e4c1a628078a4a13006df99e35_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f050a78d1622d2a10a4549fa7d2340eacdfc80e4c1a628078a4a13006df99e35_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3Af050a78d1622d2a10a4549fa7d2340eacdfc80e4c1a628078a4a13006df99e35?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673304"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:834b63c9cd783e684ce59e99d4b060af5f2d6b6027bc62793e511bd5ae91afc6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:834b63c9cd783e684ce59e99d4b060af5f2d6b6027bc62793e511bd5ae91afc6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:834b63c9cd783e684ce59e99d4b060af5f2d6b6027bc62793e511bd5ae91afc6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3A834b63c9cd783e684ce59e99d4b060af5f2d6b6027bc62793e511bd5ae91afc6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673438"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:70ec142f9336133ffb3e4caebd30e579d59bcc3d52a3fd4c4642884103cd5134_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:70ec142f9336133ffb3e4caebd30e579d59bcc3d52a3fd4c4642884103cd5134_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:70ec142f9336133ffb3e4caebd30e579d59bcc3d52a3fd4c4642884103cd5134_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A70ec142f9336133ffb3e4caebd30e579d59bcc3d52a3fd4c4642884103cd5134?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e04e8d139638d3b8444961f636909cbf640ab494b88a738cebb3c6a7805e19e3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e04e8d139638d3b8444961f636909cbf640ab494b88a738cebb3c6a7805e19e3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e04e8d139638d3b8444961f636909cbf640ab494b88a738cebb3c6a7805e19e3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3Ae04e8d139638d3b8444961f636909cbf640ab494b88a738cebb3c6a7805e19e3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673243"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:503da2bcb8b582dd98c685b81bd031aafd71e1bbfc8962b3c8b0ea9110e9f69c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:503da2bcb8b582dd98c685b81bd031aafd71e1bbfc8962b3c8b0ea9110e9f69c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:503da2bcb8b582dd98c685b81bd031aafd71e1bbfc8962b3c8b0ea9110e9f69c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3A503da2bcb8b582dd98c685b81bd031aafd71e1bbfc8962b3c8b0ea9110e9f69c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e530b7dae37afa62a6c9def8c54b573975018b94b5a56fc88e218792b85237e3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e530b7dae37afa62a6c9def8c54b573975018b94b5a56fc88e218792b85237e3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e530b7dae37afa62a6c9def8c54b573975018b94b5a56fc88e218792b85237e3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3Ae530b7dae37afa62a6c9def8c54b573975018b94b5a56fc88e218792b85237e3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673171"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a310f85c49c19cd35070957d0621694e30215432b5d01e035ed3e8242f82c283_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a310f85c49c19cd35070957d0621694e30215432b5d01e035ed3e8242f82c283_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a310f85c49c19cd35070957d0621694e30215432b5d01e035ed3e8242f82c283_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3Aa310f85c49c19cd35070957d0621694e30215432b5d01e035ed3e8242f82c283?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675521"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:29247ef394a58b75aabdd5cc168e578fc2347c8e0c1d779b7b355848a97df2e4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:29247ef394a58b75aabdd5cc168e578fc2347c8e0c1d779b7b355848a97df2e4_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:29247ef394a58b75aabdd5cc168e578fc2347c8e0c1d779b7b355848a97df2e4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A29247ef394a58b75aabdd5cc168e578fc2347c8e0c1d779b7b355848a97df2e4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675128"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:21e4959e7a52ffdfd8df79a73177f02714f8689270c9a4aab4f390be59524042_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:21e4959e7a52ffdfd8df79a73177f02714f8689270c9a4aab4f390be59524042_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:21e4959e7a52ffdfd8df79a73177f02714f8689270c9a4aab4f390be59524042_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A21e4959e7a52ffdfd8df79a73177f02714f8689270c9a4aab4f390be59524042?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776684050"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a9a8d43364851f839ae1bc62a807a983421cf5b41a7488f8da7e68b7261af056_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a9a8d43364851f839ae1bc62a807a983421cf5b41a7488f8da7e68b7261af056_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a9a8d43364851f839ae1bc62a807a983421cf5b41a7488f8da7e68b7261af056_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3Aa9a8d43364851f839ae1bc62a807a983421cf5b41a7488f8da7e68b7261af056?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776684155"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b4f9122a9571ebe6e0da7465f498ae3e74cf7c77dd6062a675105f4c437e29df_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b4f9122a9571ebe6e0da7465f498ae3e74cf7c77dd6062a675105f4c437e29df_amd64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b4f9122a9571ebe6e0da7465f498ae3e74cf7c77dd6062a675105f4c437e29df_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3Ab4f9122a9571ebe6e0da7465f498ae3e74cf7c77dd6062a675105f4c437e29df?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673386"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:77301f40eca2b49f92f3c89a93fc6766306d39013350d635f0bfeff4b98ae012_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:77301f40eca2b49f92f3c89a93fc6766306d39013350d635f0bfeff4b98ae012_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:77301f40eca2b49f92f3c89a93fc6766306d39013350d635f0bfeff4b98ae012_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A77301f40eca2b49f92f3c89a93fc6766306d39013350d635f0bfeff4b98ae012?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675919"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dd9a440a68817b45e6d2d04b3c31feddb82304ac1d246c20c0e33355631d9624_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dd9a440a68817b45e6d2d04b3c31feddb82304ac1d246c20c0e33355631d9624_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dd9a440a68817b45e6d2d04b3c31feddb82304ac1d246c20c0e33355631d9624_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Add9a440a68817b45e6d2d04b3c31feddb82304ac1d246c20c0e33355631d9624?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674229"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3d0ceefebed5e66f56692e62fde1a1b435cfaf596932058d0f2768d7141b6bc9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3d0ceefebed5e66f56692e62fde1a1b435cfaf596932058d0f2768d7141b6bc9_amd64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3d0ceefebed5e66f56692e62fde1a1b435cfaf596932058d0f2768d7141b6bc9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A3d0ceefebed5e66f56692e62fde1a1b435cfaf596932058d0f2768d7141b6bc9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675595"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b0188af5f7dcf5f286e4ec4f331062ec77f341391c612aac52e017df26f89a89_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b0188af5f7dcf5f286e4ec4f331062ec77f341391c612aac52e017df26f89a89_amd64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b0188af5f7dcf5f286e4ec4f331062ec77f341391c612aac52e017df26f89a89_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3Ab0188af5f7dcf5f286e4ec4f331062ec77f341391c612aac52e017df26f89a89?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675826"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96b873289284cbff34ea1c9f852dce31e5a72669f204d742288e266cc3a19d21_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96b873289284cbff34ea1c9f852dce31e5a72669f204d742288e266cc3a19d21_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96b873289284cbff34ea1c9f852dce31e5a72669f204d742288e266cc3a19d21_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A96b873289284cbff34ea1c9f852dce31e5a72669f204d742288e266cc3a19d21?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:db20ce7a947978ea2646d479eab935796e8cfe482ddce01f3675066b221e2e3c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:db20ce7a947978ea2646d479eab935796e8cfe482ddce01f3675066b221e2e3c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:db20ce7a947978ea2646d479eab935796e8cfe482ddce01f3675066b221e2e3c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3Adb20ce7a947978ea2646d479eab935796e8cfe482ddce01f3675066b221e2e3c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673295"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:f6dd660a76715b8eef53fa459376986a60d9f2e7cd3f176b0ec5c6e8ce19cfea_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:f6dd660a76715b8eef53fa459376986a60d9f2e7cd3f176b0ec5c6e8ce19cfea_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:f6dd660a76715b8eef53fa459376986a60d9f2e7cd3f176b0ec5c6e8ce19cfea_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3Af6dd660a76715b8eef53fa459376986a60d9f2e7cd3f176b0ec5c6e8ce19cfea?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776666531"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1da080de78222a6c01704597983765a751b1b4544a81168fdbc952ab31f11a54_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1da080de78222a6c01704597983765a751b1b4544a81168fdbc952ab31f11a54_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1da080de78222a6c01704597983765a751b1b4544a81168fdbc952ab31f11a54_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A1da080de78222a6c01704597983765a751b1b4544a81168fdbc952ab31f11a54?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673989"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:66b581d789ec455fc8bd8e01e980c7fb183bb0f6ccc09ff525ffdfa4aafd9a52_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:66b581d789ec455fc8bd8e01e980c7fb183bb0f6ccc09ff525ffdfa4aafd9a52_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:66b581d789ec455fc8bd8e01e980c7fb183bb0f6ccc09ff525ffdfa4aafd9a52_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A66b581d789ec455fc8bd8e01e980c7fb183bb0f6ccc09ff525ffdfa4aafd9a52?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675038"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:68a9dd5597bb207e899a4716a7642cc28260e059ead26fc84d1e48d4e6159683_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:68a9dd5597bb207e899a4716a7642cc28260e059ead26fc84d1e48d4e6159683_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:68a9dd5597bb207e899a4716a7642cc28260e059ead26fc84d1e48d4e6159683_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A68a9dd5597bb207e899a4716a7642cc28260e059ead26fc84d1e48d4e6159683?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1f6f4d1a8a3c89486253cd025f8d0e5aa34c0ef221487aed5e4e968e8d810285_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1f6f4d1a8a3c89486253cd025f8d0e5aa34c0ef221487aed5e4e968e8d810285_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1f6f4d1a8a3c89486253cd025f8d0e5aa34c0ef221487aed5e4e968e8d810285_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A1f6f4d1a8a3c89486253cd025f8d0e5aa34c0ef221487aed5e4e968e8d810285?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776692789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:371a5fe6ba1f62960a89e6b1050a2d324c2c91b733704fed2fb0356ff2cd9524_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:371a5fe6ba1f62960a89e6b1050a2d324c2c91b733704fed2fb0356ff2cd9524_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:371a5fe6ba1f62960a89e6b1050a2d324c2c91b733704fed2fb0356ff2cd9524_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A371a5fe6ba1f62960a89e6b1050a2d324c2c91b733704fed2fb0356ff2cd9524?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673130"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:89451c63f28e8e515b4529c8a834f6e8e558179ed3d4f973df539a509933f942_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:89451c63f28e8e515b4529c8a834f6e8e558179ed3d4f973df539a509933f942_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:89451c63f28e8e515b4529c8a834f6e8e558179ed3d4f973df539a509933f942_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A89451c63f28e8e515b4529c8a834f6e8e558179ed3d4f973df539a509933f942?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674195"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:007e6fe2b8d7a384cfe07309e8a523bd1b7d3cea896f3b7f29908a8d41c62f16_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:007e6fe2b8d7a384cfe07309e8a523bd1b7d3cea896f3b7f29908a8d41c62f16_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:007e6fe2b8d7a384cfe07309e8a523bd1b7d3cea896f3b7f29908a8d41c62f16_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A007e6fe2b8d7a384cfe07309e8a523bd1b7d3cea896f3b7f29908a8d41c62f16?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:46ba8317ce0d48d6d0e8902fa4b6deea668d6f3c9c6c15c2a3aa6238cc06e52b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:46ba8317ce0d48d6d0e8902fa4b6deea668d6f3c9c6c15c2a3aa6238cc06e52b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:46ba8317ce0d48d6d0e8902fa4b6deea668d6f3c9c6c15c2a3aa6238cc06e52b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A46ba8317ce0d48d6d0e8902fa4b6deea668d6f3c9c6c15c2a3aa6238cc06e52b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674514"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8540ec8af82488dd6edb249e811036b1e639a74f892af1ffac1ab5d59ceb0abf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8540ec8af82488dd6edb249e811036b1e639a74f892af1ffac1ab5d59ceb0abf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8540ec8af82488dd6edb249e811036b1e639a74f892af1ffac1ab5d59ceb0abf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A8540ec8af82488dd6edb249e811036b1e639a74f892af1ffac1ab5d59ceb0abf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674074"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ef2e5a237cc5d69647af1b904a902e4e216ae8480a54587357fb135b738db120_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ef2e5a237cc5d69647af1b904a902e4e216ae8480a54587357fb135b738db120_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ef2e5a237cc5d69647af1b904a902e4e216ae8480a54587357fb135b738db120_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Aef2e5a237cc5d69647af1b904a902e4e216ae8480a54587357fb135b738db120?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675812"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:97af951210f4ac7395effe942732418e9999e7b8e54c9db5317eadee25491b3d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:97af951210f4ac7395effe942732418e9999e7b8e54c9db5317eadee25491b3d_amd64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:97af951210f4ac7395effe942732418e9999e7b8e54c9db5317eadee25491b3d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A97af951210f4ac7395effe942732418e9999e7b8e54c9db5317eadee25491b3d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776685755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:37c574ecbe02ca7bc99355b6bbd952c392cbb2abb430db4b752257306c37bcbb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:37c574ecbe02ca7bc99355b6bbd952c392cbb2abb430db4b752257306c37bcbb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:37c574ecbe02ca7bc99355b6bbd952c392cbb2abb430db4b752257306c37bcbb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-cloud-controller-manager-rhel9@sha256%3A37c574ecbe02ca7bc99355b6bbd952c392cbb2abb430db4b752257306c37bcbb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673136"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:db6cfccfb142d8f7addac06e4aec0d6686361bc15b459d169b0df831b1d00160_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:db6cfccfb142d8f7addac06e4aec0d6686361bc15b459d169b0df831b1d00160_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:db6cfccfb142d8f7addac06e4aec0d6686361bc15b459d169b0df831b1d00160_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-machine-controllers-rhel9@sha256%3Adb6cfccfb142d8f7addac06e4aec0d6686361bc15b459d169b0df831b1d00160?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673130"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2766e79b9a9a3fae66e1d331ad2fcc2141a4108e816cb1f91557bcf2e045882c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2766e79b9a9a3fae66e1d331ad2fcc2141a4108e816cb1f91557bcf2e045882c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2766e79b9a9a3fae66e1d331ad2fcc2141a4108e816cb1f91557bcf2e045882c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A2766e79b9a9a3fae66e1d331ad2fcc2141a4108e816cb1f91557bcf2e045882c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b559c70d997c0ce2c57e2cc3f1d3160f5ec2367c53c8d1fe1d9418b142c5c577_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b559c70d997c0ce2c57e2cc3f1d3160f5ec2367c53c8d1fe1d9418b142c5c577_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b559c70d997c0ce2c57e2cc3f1d3160f5ec2367c53c8d1fe1d9418b142c5c577_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Ab559c70d997c0ce2c57e2cc3f1d3160f5ec2367c53c8d1fe1d9418b142c5c577?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ad9865c56a3ac1997b3aa16166966f73a24b49a1a8c71edec2eeb795016b849c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ad9865c56a3ac1997b3aa16166966f73a24b49a1a8c71edec2eeb795016b849c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ad9865c56a3ac1997b3aa16166966f73a24b49a1a8c71edec2eeb795016b849c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3Aad9865c56a3ac1997b3aa16166966f73a24b49a1a8c71edec2eeb795016b849c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac90d3f60f0a9de597df5344adc3d6b1478b96d47fad0ea71a00597e8576b12_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac90d3f60f0a9de597df5344adc3d6b1478b96d47fad0ea71a00597e8576b12_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac90d3f60f0a9de597df5344adc3d6b1478b96d47fad0ea71a00597e8576b12_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A2ac90d3f60f0a9de597df5344adc3d6b1478b96d47fad0ea71a00597e8576b12?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:71602c5c8069030db0fa7373e496c7bc23bba707756f57a082d7eea44f61c9cb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:71602c5c8069030db0fa7373e496c7bc23bba707756f57a082d7eea44f61c9cb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:71602c5c8069030db0fa7373e496c7bc23bba707756f57a082d7eea44f61c9cb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A71602c5c8069030db0fa7373e496c7bc23bba707756f57a082d7eea44f61c9cb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:734b7d0af02c1b79781846ffd3c617b27728ae053941b112d544c73e0bf3a3b5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:734b7d0af02c1b79781846ffd3c617b27728ae053941b112d544c73e0bf3a3b5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:734b7d0af02c1b79781846ffd3c617b27728ae053941b112d544c73e0bf3a3b5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A734b7d0af02c1b79781846ffd3c617b27728ae053941b112d544c73e0bf3a3b5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673480"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:fec4f6e102887cd0d47167eecfee667e3161dd21a13383e96ef3b36f8e319076_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:fec4f6e102887cd0d47167eecfee667e3161dd21a13383e96ef3b36f8e319076_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:fec4f6e102887cd0d47167eecfee667e3161dd21a13383e96ef3b36f8e319076_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3Afec4f6e102887cd0d47167eecfee667e3161dd21a13383e96ef3b36f8e319076?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673941"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fe7bd87ddcdf1ec088e780a9e3421286cc0e4aefcccabf17d1c50e4a4656b2e4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fe7bd87ddcdf1ec088e780a9e3421286cc0e4aefcccabf17d1c50e4a4656b2e4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fe7bd87ddcdf1ec088e780a9e3421286cc0e4aefcccabf17d1c50e4a4656b2e4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3Afe7bd87ddcdf1ec088e780a9e3421286cc0e4aefcccabf17d1c50e4a4656b2e4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675617"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:74dfd09f047da2dcdbdaf8b16a3aba913df216cae2f26898c4f9fe423ff6e330_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:74dfd09f047da2dcdbdaf8b16a3aba913df216cae2f26898c4f9fe423ff6e330_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:74dfd09f047da2dcdbdaf8b16a3aba913df216cae2f26898c4f9fe423ff6e330_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A74dfd09f047da2dcdbdaf8b16a3aba913df216cae2f26898c4f9fe423ff6e330?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675824"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7aab0df04151b6970f04174e2b257a77615be9eb724121ff29b59347f8edc8b7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7aab0df04151b6970f04174e2b257a77615be9eb724121ff29b59347f8edc8b7_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7aab0df04151b6970f04174e2b257a77615be9eb724121ff29b59347f8edc8b7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A7aab0df04151b6970f04174e2b257a77615be9eb724121ff29b59347f8edc8b7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e6adba899b629ba8eea41574e66d8ed2eaac9169aae5fcb789aff787f0724b73_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e6adba899b629ba8eea41574e66d8ed2eaac9169aae5fcb789aff787f0724b73_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e6adba899b629ba8eea41574e66d8ed2eaac9169aae5fcb789aff787f0724b73_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3Ae6adba899b629ba8eea41574e66d8ed2eaac9169aae5fcb789aff787f0724b73?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5882d9e24bf330ab1bd022877c1f3b711a41b329c46c64652105a1b0a1c24cbe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5882d9e24bf330ab1bd022877c1f3b711a41b329c46c64652105a1b0a1c24cbe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5882d9e24bf330ab1bd022877c1f3b711a41b329c46c64652105a1b0a1c24cbe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3A5882d9e24bf330ab1bd022877c1f3b711a41b329c46c64652105a1b0a1c24cbe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a0968a8bb5df2b0b41bf55b06f11397a4d0c0ec290d22bde93fcf631923091a0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a0968a8bb5df2b0b41bf55b06f11397a4d0c0ec290d22bde93fcf631923091a0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a0968a8bb5df2b0b41bf55b06f11397a4d0c0ec290d22bde93fcf631923091a0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3Aa0968a8bb5df2b0b41bf55b06f11397a4d0c0ec290d22bde93fcf631923091a0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776668614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:059a0c17ca865b86ef3b3c19cf641d3dd43b007de861583f5c160083dc52a012_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:059a0c17ca865b86ef3b3c19cf641d3dd43b007de861583f5c160083dc52a012_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:059a0c17ca865b86ef3b3c19cf641d3dd43b007de861583f5c160083dc52a012_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3A059a0c17ca865b86ef3b3c19cf641d3dd43b007de861583f5c160083dc52a012?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:2461d40854f69f775c2643a67eb8676729f4fde44b8ad6f106b86b8a66342f67_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:2461d40854f69f775c2643a67eb8676729f4fde44b8ad6f106b86b8a66342f67_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:2461d40854f69f775c2643a67eb8676729f4fde44b8ad6f106b86b8a66342f67_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3A2461d40854f69f775c2643a67eb8676729f4fde44b8ad6f106b86b8a66342f67?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674250"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c56ca8e906e3b544e0dbdeca92c33ad8a7b0a846378e3b6c9ecb050bf60f2d7c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c56ca8e906e3b544e0dbdeca92c33ad8a7b0a846378e3b6c9ecb050bf60f2d7c_amd64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c56ca8e906e3b544e0dbdeca92c33ad8a7b0a846378e3b6c9ecb050bf60f2d7c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3Ac56ca8e906e3b544e0dbdeca92c33ad8a7b0a846378e3b6c9ecb050bf60f2d7c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673591"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bcc604910483ac005899662bc05a597cbc8af51dd0c1dbaa05d521b95cc2ee94_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bcc604910483ac005899662bc05a597cbc8af51dd0c1dbaa05d521b95cc2ee94_amd64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bcc604910483ac005899662bc05a597cbc8af51dd0c1dbaa05d521b95cc2ee94_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3Abcc604910483ac005899662bc05a597cbc8af51dd0c1dbaa05d521b95cc2ee94?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ad6f9a3b78b0e98bab747ece64657e69f301337f4966e3f40d3fe0588d1a530b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ad6f9a3b78b0e98bab747ece64657e69f301337f4966e3f40d3fe0588d1a530b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ad6f9a3b78b0e98bab747ece64657e69f301337f4966e3f40d3fe0588d1a530b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3Aad6f9a3b78b0e98bab747ece64657e69f301337f4966e3f40d3fe0588d1a530b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674103"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3Abde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3Abde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3A8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3A8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c28651ad376814116ca3592e5df4853dc0cb04402d825a2d12812ea6df06a4b4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c28651ad376814116ca3592e5df4853dc0cb04402d825a2d12812ea6df06a4b4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c28651ad376814116ca3592e5df4853dc0cb04402d825a2d12812ea6df06a4b4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cloud-controller-manager-rhel9@sha256%3Ac28651ad376814116ca3592e5df4853dc0cb04402d825a2d12812ea6df06a4b4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673138"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6fa533909fe009e146d0522a95259e7f80399cea0ced183c308e146bc51fd9bf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6fa533909fe009e146d0522a95259e7f80399cea0ced183c308e146bc51fd9bf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6fa533909fe009e146d0522a95259e7f80399cea0ced183c308e146bc51fd9bf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cluster-api-controllers-rhel9@sha256%3A6fa533909fe009e146d0522a95259e7f80399cea0ced183c308e146bc51fd9bf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f781a380867adf7f20c38114cc8d7c751cc84faba5fbcbfc67b721793f017339_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f781a380867adf7f20c38114cc8d7c751cc84faba5fbcbfc67b721793f017339_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f781a380867adf7f20c38114cc8d7c751cc84faba5fbcbfc67b721793f017339_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Af781a380867adf7f20c38114cc8d7c751cc84faba5fbcbfc67b721793f017339?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683756"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:05f0aaebb8307b693452309341fef6e3bfe6912a34c1a9d7ced1be398d81351f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:05f0aaebb8307b693452309341fef6e3bfe6912a34c1a9d7ced1be398d81351f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:05f0aaebb8307b693452309341fef6e3bfe6912a34c1a9d7ced1be398d81351f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A05f0aaebb8307b693452309341fef6e3bfe6912a34c1a9d7ced1be398d81351f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675857"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a71526c9cd2f4c5f9a397348f1ebc08590caad252cf3bce6e5d07ee6c77274c3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a71526c9cd2f4c5f9a397348f1ebc08590caad252cf3bce6e5d07ee6c77274c3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a71526c9cd2f4c5f9a397348f1ebc08590caad252cf3bce6e5d07ee6c77274c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Aa71526c9cd2f4c5f9a397348f1ebc08590caad252cf3bce6e5d07ee6c77274c3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675600"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:aa9dc51ef8366806a19116f700448b4c0ea9dc1de7fc9f2b8191872de744e591_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:aa9dc51ef8366806a19116f700448b4c0ea9dc1de7fc9f2b8191872de744e591_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:aa9dc51ef8366806a19116f700448b4c0ea9dc1de7fc9f2b8191872de744e591_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3Aaa9dc51ef8366806a19116f700448b4c0ea9dc1de7fc9f2b8191872de744e591?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674305"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:57ea23e19a26640f9e8bebcef70419d22c23ff334878e89d4b77a894acc2ce7b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:57ea23e19a26640f9e8bebcef70419d22c23ff334878e89d4b77a894acc2ce7b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:57ea23e19a26640f9e8bebcef70419d22c23ff334878e89d4b77a894acc2ce7b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A57ea23e19a26640f9e8bebcef70419d22c23ff334878e89d4b77a894acc2ce7b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5f1fd024087262006ea5a3a03b1eaae1590be13fede1f318987921df0c2c3800_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5f1fd024087262006ea5a3a03b1eaae1590be13fede1f318987921df0c2c3800_amd64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5f1fd024087262006ea5a3a03b1eaae1590be13fede1f318987921df0c2c3800_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A5f1fd024087262006ea5a3a03b1eaae1590be13fede1f318987921df0c2c3800?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5ed57df32a4594d7acd4e4411b009c6bcfc54b2e90a337f809b8a6a53e858480_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5ed57df32a4594d7acd4e4411b009c6bcfc54b2e90a337f809b8a6a53e858480_amd64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5ed57df32a4594d7acd4e4411b009c6bcfc54b2e90a337f809b8a6a53e858480_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A5ed57df32a4594d7acd4e4411b009c6bcfc54b2e90a337f809b8a6a53e858480?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:30c988074c30420793cecbd4d3912868197661b61f00d01bb8fb86f4aae2aeab_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:30c988074c30420793cecbd4d3912868197661b61f00d01bb8fb86f4aae2aeab_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:30c988074c30420793cecbd4d3912868197661b61f00d01bb8fb86f4aae2aeab_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-csi-driver-syncer-rhel9@sha256%3A30c988074c30420793cecbd4d3912868197661b61f00d01bb8fb86f4aae2aeab?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3dd6b992e2620c2d08de3ac99c687a9b1562d1a46bc9159a14e34abae9d40f36_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3dd6b992e2620c2d08de3ac99c687a9b1562d1a46bc9159a14e34abae9d40f36_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3dd6b992e2620c2d08de3ac99c687a9b1562d1a46bc9159a14e34abae9d40f36_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-problem-detector-rhel9@sha256%3A3dd6b992e2620c2d08de3ac99c687a9b1562d1a46bc9159a14e34abae9d40f36?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776666492"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0a3991f02157723641d576f54823b42d424e612837f7871ceec21e40633235c4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0a3991f02157723641d576f54823b42d424e612837f7871ceec21e40633235c4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0a3991f02157723641d576f54823b42d424e612837f7871ceec21e40633235c4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A0a3991f02157723641d576f54823b42d424e612837f7871ceec21e40633235c4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fdc295c04d946e1294cbc811e5ee20827cce284c7a5358c9c6c926f5afb5fc7b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fdc295c04d946e1294cbc811e5ee20827cce284c7a5358c9c6c926f5afb5fc7b_arm64",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fdc295c04d946e1294cbc811e5ee20827cce284c7a5358c9c6c926f5afb5fc7b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3Afdc295c04d946e1294cbc811e5ee20827cce284c7a5358c9c6c926f5afb5fc7b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674349"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a83b03a6cc820386376a5e0b5ac0bc43147338cd0f77ba6b20284b93cde06b63_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a83b03a6cc820386376a5e0b5ac0bc43147338cd0f77ba6b20284b93cde06b63_arm64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a83b03a6cc820386376a5e0b5ac0bc43147338cd0f77ba6b20284b93cde06b63_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3Aa83b03a6cc820386376a5e0b5ac0bc43147338cd0f77ba6b20284b93cde06b63?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673159"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a0839939275e2b68712d77224d5a7612b10a1bf0152a6f57050f179a1c492f70_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a0839939275e2b68712d77224d5a7612b10a1bf0152a6f57050f179a1c492f70_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a0839939275e2b68712d77224d5a7612b10a1bf0152a6f57050f179a1c492f70_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3Aa0839939275e2b68712d77224d5a7612b10a1bf0152a6f57050f179a1c492f70?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:2f41d30f61ee12bd34b94ba6d37a517eacb2dc4a51c938f588a87c1f4333b924_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:2f41d30f61ee12bd34b94ba6d37a517eacb2dc4a51c938f588a87c1f4333b924_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:2f41d30f61ee12bd34b94ba6d37a517eacb2dc4a51c938f588a87c1f4333b924_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3A2f41d30f61ee12bd34b94ba6d37a517eacb2dc4a51c938f588a87c1f4333b924?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9e682bfd352c260c9127e3f2affa6dd16af28b3abb8ee7303753eb0ade31c1e8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9e682bfd352c260c9127e3f2affa6dd16af28b3abb8ee7303753eb0ade31c1e8_arm64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9e682bfd352c260c9127e3f2affa6dd16af28b3abb8ee7303753eb0ade31c1e8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A9e682bfd352c260c9127e3f2affa6dd16af28b3abb8ee7303753eb0ade31c1e8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:70c684711eaef0d1b4f996d745c936f98707584a54b5d9920b8c25af4adec597_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:70c684711eaef0d1b4f996d745c936f98707584a54b5d9920b8c25af4adec597_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:70c684711eaef0d1b4f996d745c936f98707584a54b5d9920b8c25af4adec597_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A70c684711eaef0d1b4f996d745c936f98707584a54b5d9920b8c25af4adec597?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674376"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:283596834104ae59f2780b8f0d61d90ea6128c4b09d57da03e05414203ee9245_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:283596834104ae59f2780b8f0d61d90ea6128c4b09d57da03e05414203ee9245_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:283596834104ae59f2780b8f0d61d90ea6128c4b09d57da03e05414203ee9245_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A283596834104ae59f2780b8f0d61d90ea6128c4b09d57da03e05414203ee9245?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675631"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:f7828b8fc7d451c4b252b52150b2278d310e456e4b06de990bce9d123d923b9c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:f7828b8fc7d451c4b252b52150b2278d310e456e4b06de990bce9d123d923b9c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:f7828b8fc7d451c4b252b52150b2278d310e456e4b06de990bce9d123d923b9c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Af7828b8fc7d451c4b252b52150b2278d310e456e4b06de990bce9d123d923b9c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:63d7e09d2367614dd7b83c41b35b538a6e3d98fb49c03a103f31355202528319_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:63d7e09d2367614dd7b83c41b35b538a6e3d98fb49c03a103f31355202528319_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:63d7e09d2367614dd7b83c41b35b538a6e3d98fb49c03a103f31355202528319_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A63d7e09d2367614dd7b83c41b35b538a6e3d98fb49c03a103f31355202528319?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673171"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5044508d683bfb7c1fcb538293e01a54e21360f85dd3d6b6d9150be3571e4604_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5044508d683bfb7c1fcb538293e01a54e21360f85dd3d6b6d9150be3571e4604_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5044508d683bfb7c1fcb538293e01a54e21360f85dd3d6b6d9150be3571e4604_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A5044508d683bfb7c1fcb538293e01a54e21360f85dd3d6b6d9150be3571e4604?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673217"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f8a862ce45dd686fb79c68036e611e15ce84922dfc64f847abcf6b65aa55742a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f8a862ce45dd686fb79c68036e611e15ce84922dfc64f847abcf6b65aa55742a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f8a862ce45dd686fb79c68036e611e15ce84922dfc64f847abcf6b65aa55742a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3Af8a862ce45dd686fb79c68036e611e15ce84922dfc64f847abcf6b65aa55742a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674212"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:34faf675b9e5361a23ee97d02ae1257feb38fda6e287b3b2c67e0b2e4e3ab06c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:34faf675b9e5361a23ee97d02ae1257feb38fda6e287b3b2c67e0b2e4e3ab06c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:34faf675b9e5361a23ee97d02ae1257feb38fda6e287b3b2c67e0b2e4e3ab06c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A34faf675b9e5361a23ee97d02ae1257feb38fda6e287b3b2c67e0b2e4e3ab06c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674084"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:16f45167a5407ccf892d7518ca3c7a9912d5d0cc3f07446cfd3a1de175e5321a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:16f45167a5407ccf892d7518ca3c7a9912d5d0cc3f07446cfd3a1de175e5321a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:16f45167a5407ccf892d7518ca3c7a9912d5d0cc3f07446cfd3a1de175e5321a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A16f45167a5407ccf892d7518ca3c7a9912d5d0cc3f07446cfd3a1de175e5321a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676087"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:64a243eb83f743985213e3c255f7ae58909fd3a4ab69bce80b30361bc9cd9225_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:64a243eb83f743985213e3c255f7ae58909fd3a4ab69bce80b30361bc9cd9225_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:64a243eb83f743985213e3c255f7ae58909fd3a4ab69bce80b30361bc9cd9225_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A64a243eb83f743985213e3c255f7ae58909fd3a4ab69bce80b30361bc9cd9225?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674189"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:cc9a958fbda1e4df8e235a0ae4c62d23e2e02dfcf25c3c18c3dfc8bcc787b7f3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:cc9a958fbda1e4df8e235a0ae4c62d23e2e02dfcf25c3c18c3dfc8bcc787b7f3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:cc9a958fbda1e4df8e235a0ae4c62d23e2e02dfcf25c3c18c3dfc8bcc787b7f3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Acc9a958fbda1e4df8e235a0ae4c62d23e2e02dfcf25c3c18c3dfc8bcc787b7f3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674215"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6d971be6c49127312d1568f9619c9f4684254c64b77a047f6e24e1caa83e9416_arm64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6d971be6c49127312d1568f9619c9f4684254c64b77a047f6e24e1caa83e9416_arm64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6d971be6c49127312d1568f9619c9f4684254c64b77a047f6e24e1caa83e9416_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A6d971be6c49127312d1568f9619c9f4684254c64b77a047f6e24e1caa83e9416?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f0dccb2d388210d13763e44e7aaf06712b1c463b73698566b32665030a881dec_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f0dccb2d388210d13763e44e7aaf06712b1c463b73698566b32665030a881dec_arm64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f0dccb2d388210d13763e44e7aaf06712b1c463b73698566b32665030a881dec_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3Af0dccb2d388210d13763e44e7aaf06712b1c463b73698566b32665030a881dec?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674522"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:953d7116656841f449d6b295f0753a0d39a2474b3b6a4b6d6240d53e357ff86b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:953d7116656841f449d6b295f0753a0d39a2474b3b6a4b6d6240d53e357ff86b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:953d7116656841f449d6b295f0753a0d39a2474b3b6a4b6d6240d53e357ff86b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A953d7116656841f449d6b295f0753a0d39a2474b3b6a4b6d6240d53e357ff86b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676307"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9728bac89d23922ef66913d370ccaf943465509f8a068494d517984ff490f707_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9728bac89d23922ef66913d370ccaf943465509f8a068494d517984ff490f707_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9728bac89d23922ef66913d370ccaf943465509f8a068494d517984ff490f707_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A9728bac89d23922ef66913d370ccaf943465509f8a068494d517984ff490f707?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673768"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d939f022cd84850c27b617d17d71edd7dcb549908b74ff92d5115dcb5149df28_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d939f022cd84850c27b617d17d71edd7dcb549908b74ff92d5115dcb5149df28_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d939f022cd84850c27b617d17d71edd7dcb549908b74ff92d5115dcb5149df28_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Ad939f022cd84850c27b617d17d71edd7dcb549908b74ff92d5115dcb5149df28?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673709"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:039ccc1b8843a4dae1d65e616c23066e2e921f5f4693f52a6c6a9e0091ee298f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:039ccc1b8843a4dae1d65e616c23066e2e921f5f4693f52a6c6a9e0091ee298f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:039ccc1b8843a4dae1d65e616c23066e2e921f5f4693f52a6c6a9e0091ee298f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A039ccc1b8843a4dae1d65e616c23066e2e921f5f4693f52a6c6a9e0091ee298f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673635"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7339fa5d4a95cd617046d6dc06a2e97b78c2448353f2ee464095e787a3a2fcca_arm64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7339fa5d4a95cd617046d6dc06a2e97b78c2448353f2ee464095e787a3a2fcca_arm64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7339fa5d4a95cd617046d6dc06a2e97b78c2448353f2ee464095e787a3a2fcca_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A7339fa5d4a95cd617046d6dc06a2e97b78c2448353f2ee464095e787a3a2fcca?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776774927"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4c9055e26a32fd7f824d0e0c5dc605c6e59ee22369812ab8331f7572e5154ac5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4c9055e26a32fd7f824d0e0c5dc605c6e59ee22369812ab8331f7572e5154ac5_arm64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4c9055e26a32fd7f824d0e0c5dc605c6e59ee22369812ab8331f7572e5154ac5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A4c9055e26a32fd7f824d0e0c5dc605c6e59ee22369812ab8331f7572e5154ac5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675961"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6914c074989cf18597497721c5b4006874a7e9a12fff27c513f8e6ab049be83c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6914c074989cf18597497721c5b4006874a7e9a12fff27c513f8e6ab049be83c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6914c074989cf18597497721c5b4006874a7e9a12fff27c513f8e6ab049be83c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A6914c074989cf18597497721c5b4006874a7e9a12fff27c513f8e6ab049be83c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7e0233017e706ead44793f1fff610a4625a22a834de67511cd66efb208a24a47_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7e0233017e706ead44793f1fff610a4625a22a834de67511cd66efb208a24a47_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7e0233017e706ead44793f1fff610a4625a22a834de67511cd66efb208a24a47_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A7e0233017e706ead44793f1fff610a4625a22a834de67511cd66efb208a24a47?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673954"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:25e957fc0f6723e791625c55d1b251f6b7a894e15d74e7af29e004add4e3a6bc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:25e957fc0f6723e791625c55d1b251f6b7a894e15d74e7af29e004add4e3a6bc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:25e957fc0f6723e791625c55d1b251f6b7a894e15d74e7af29e004add4e3a6bc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A25e957fc0f6723e791625c55d1b251f6b7a894e15d74e7af29e004add4e3a6bc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:de2eb4f5453b3a0463c333a1770034a9016eadddbe8a07c2666c3d58367ce3f9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:de2eb4f5453b3a0463c333a1770034a9016eadddbe8a07c2666c3d58367ce3f9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:de2eb4f5453b3a0463c333a1770034a9016eadddbe8a07c2666c3d58367ce3f9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Ade2eb4f5453b3a0463c333a1770034a9016eadddbe8a07c2666c3d58367ce3f9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673168"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5fdb8a778fc61b0900436f22aacadd59f7da453af25b9b2eb9c22aca76bc9b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5fdb8a778fc61b0900436f22aacadd59f7da453af25b9b2eb9c22aca76bc9b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5fdb8a778fc61b0900436f22aacadd59f7da453af25b9b2eb9c22aca76bc9b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A4b5fdb8a778fc61b0900436f22aacadd59f7da453af25b9b2eb9c22aca76bc9b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674222"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ffb6610a0f2627dfd68731bde61d78df97e4ef5ba769dbfb9fe723dfff0a62cd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ffb6610a0f2627dfd68731bde61d78df97e4ef5ba769dbfb9fe723dfff0a62cd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ffb6610a0f2627dfd68731bde61d78df97e4ef5ba769dbfb9fe723dfff0a62cd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Affb6610a0f2627dfd68731bde61d78df97e4ef5ba769dbfb9fe723dfff0a62cd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ffbee6c294475f3dbe6b73884fcb411b1e5303f9b549b7adfd24708b776eb306_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ffbee6c294475f3dbe6b73884fcb411b1e5303f9b549b7adfd24708b776eb306_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ffbee6c294475f3dbe6b73884fcb411b1e5303f9b549b7adfd24708b776eb306_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3Affbee6c294475f3dbe6b73884fcb411b1e5303f9b549b7adfd24708b776eb306?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4b47b7c763f063e8afe3014f0f902d55ec6d1fbe832c2fc2f0585121f68c618b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4b47b7c763f063e8afe3014f0f902d55ec6d1fbe832c2fc2f0585121f68c618b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4b47b7c763f063e8afe3014f0f902d55ec6d1fbe832c2fc2f0585121f68c618b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3A4b47b7c763f063e8afe3014f0f902d55ec6d1fbe832c2fc2f0585121f68c618b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673594"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b37fe0e3a3212b0e82bb27cdf4b84f4423e4886d2a3fff5ffe46be761e98aec8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b37fe0e3a3212b0e82bb27cdf4b84f4423e4886d2a3fff5ffe46be761e98aec8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b37fe0e3a3212b0e82bb27cdf4b84f4423e4886d2a3fff5ffe46be761e98aec8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3Ab37fe0e3a3212b0e82bb27cdf4b84f4423e4886d2a3fff5ffe46be761e98aec8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776666632"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:9f05231471d861b8e8a788a6f448aeeee16693fceea9521fd87e4f6a6b6d6c9d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:9f05231471d861b8e8a788a6f448aeeee16693fceea9521fd87e4f6a6b6d6c9d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:9f05231471d861b8e8a788a6f448aeeee16693fceea9521fd87e4f6a6b6d6c9d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3A9f05231471d861b8e8a788a6f448aeeee16693fceea9521fd87e4f6a6b6d6c9d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673369"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:98d6f4f8d76d6dc810ca3d927fcf93740efe1a56fa6100c1ed1e80b84d1be21f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:98d6f4f8d76d6dc810ca3d927fcf93740efe1a56fa6100c1ed1e80b84d1be21f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:98d6f4f8d76d6dc810ca3d927fcf93740efe1a56fa6100c1ed1e80b84d1be21f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A98d6f4f8d76d6dc810ca3d927fcf93740efe1a56fa6100c1ed1e80b84d1be21f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673786"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b4501412341595aa8eefec6973195073fbf3d961cd813e21e02f3cc14150e223_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b4501412341595aa8eefec6973195073fbf3d961cd813e21e02f3cc14150e223_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b4501412341595aa8eefec6973195073fbf3d961cd813e21e02f3cc14150e223_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3Ab4501412341595aa8eefec6973195073fbf3d961cd813e21e02f3cc14150e223?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673916"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1268948f6dae5346a6a8052db8644297c1b98e1732d64b24073d959de18aa22d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1268948f6dae5346a6a8052db8644297c1b98e1732d64b24073d959de18aa22d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1268948f6dae5346a6a8052db8644297c1b98e1732d64b24073d959de18aa22d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A1268948f6dae5346a6a8052db8644297c1b98e1732d64b24073d959de18aa22d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674180"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:32d4fbd0cbd715ed35ef290d459834423dcf6203374a2a480fc5513b3764873f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:32d4fbd0cbd715ed35ef290d459834423dcf6203374a2a480fc5513b3764873f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:32d4fbd0cbd715ed35ef290d459834423dcf6203374a2a480fc5513b3764873f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A32d4fbd0cbd715ed35ef290d459834423dcf6203374a2a480fc5513b3764873f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673155"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:304cad693bfac84415c3f6311edf8234f412a4bec7635178c963e2f3fda74d44_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:304cad693bfac84415c3f6311edf8234f412a4bec7635178c963e2f3fda74d44_arm64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:304cad693bfac84415c3f6311edf8234f412a4bec7635178c963e2f3fda74d44_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A304cad693bfac84415c3f6311edf8234f412a4bec7635178c963e2f3fda74d44?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:949a7355b5e946e1d5c760e14244073db9df660fd8b28a3c6d06420dddccc298_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:949a7355b5e946e1d5c760e14244073db9df660fd8b28a3c6d06420dddccc298_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:949a7355b5e946e1d5c760e14244073db9df660fd8b28a3c6d06420dddccc298_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A949a7355b5e946e1d5c760e14244073db9df660fd8b28a3c6d06420dddccc298?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676374"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:de16bed38709aacd8a1c25b3e68a995631d38c12d9d28924360fffcc17adb0cb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:de16bed38709aacd8a1c25b3e68a995631d38c12d9d28924360fffcc17adb0cb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:de16bed38709aacd8a1c25b3e68a995631d38c12d9d28924360fffcc17adb0cb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3Ade16bed38709aacd8a1c25b3e68a995631d38c12d9d28924360fffcc17adb0cb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a952d0aa30010721e7a2cb903e30260a02f4a9dd9d83eb7ff02d2847f1e76e0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a952d0aa30010721e7a2cb903e30260a02f4a9dd9d83eb7ff02d2847f1e76e0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a952d0aa30010721e7a2cb903e30260a02f4a9dd9d83eb7ff02d2847f1e76e0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A6a952d0aa30010721e7a2cb903e30260a02f4a9dd9d83eb7ff02d2847f1e76e0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9389ab668e31d432d3b2d44fe11f68df7f9d926179d0fbec8a6d1b30f489857e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9389ab668e31d432d3b2d44fe11f68df7f9d926179d0fbec8a6d1b30f489857e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9389ab668e31d432d3b2d44fe11f68df7f9d926179d0fbec8a6d1b30f489857e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A9389ab668e31d432d3b2d44fe11f68df7f9d926179d0fbec8a6d1b30f489857e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:20955243143106da7d9e730ece6e49bc84a18427ddce20cd90fb5ce712e5477e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:20955243143106da7d9e730ece6e49bc84a18427ddce20cd90fb5ce712e5477e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:20955243143106da7d9e730ece6e49bc84a18427ddce20cd90fb5ce712e5477e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A20955243143106da7d9e730ece6e49bc84a18427ddce20cd90fb5ce712e5477e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673149"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0d7dd7c2f034bca5dcb69cbf5d8e1989e10076fb4187e9c144201b2afec28a2c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0d7dd7c2f034bca5dcb69cbf5d8e1989e10076fb4187e9c144201b2afec28a2c_arm64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0d7dd7c2f034bca5dcb69cbf5d8e1989e10076fb4187e9c144201b2afec28a2c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A0d7dd7c2f034bca5dcb69cbf5d8e1989e10076fb4187e9c144201b2afec28a2c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675952"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4a738c52c3e5bcf3c1d94b679aaea8e91b3cb3a3f981be534d8ee1274d8455c1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4a738c52c3e5bcf3c1d94b679aaea8e91b3cb3a3f981be534d8ee1274d8455c1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4a738c52c3e5bcf3c1d94b679aaea8e91b3cb3a3f981be534d8ee1274d8455c1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A4a738c52c3e5bcf3c1d94b679aaea8e91b3cb3a3f981be534d8ee1274d8455c1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:62a48fb1fc6545c57e524b1e1e3dc43b9749c024578e5266defc819d46d264e7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:62a48fb1fc6545c57e524b1e1e3dc43b9749c024578e5266defc819d46d264e7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:62a48fb1fc6545c57e524b1e1e3dc43b9749c024578e5266defc819d46d264e7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A62a48fb1fc6545c57e524b1e1e3dc43b9749c024578e5266defc819d46d264e7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673507"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:18eace0b9a62e03ca9e882c582a3ca9362a14488044b9b30076447ce3731206b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:18eace0b9a62e03ca9e882c582a3ca9362a14488044b9b30076447ce3731206b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:18eace0b9a62e03ca9e882c582a3ca9362a14488044b9b30076447ce3731206b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A18eace0b9a62e03ca9e882c582a3ca9362a14488044b9b30076447ce3731206b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:223602e0d30df9f086cec5c4f63562fd46f46726c44e186a5fec80f57689bc24_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:223602e0d30df9f086cec5c4f63562fd46f46726c44e186a5fec80f57689bc24_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:223602e0d30df9f086cec5c4f63562fd46f46726c44e186a5fec80f57689bc24_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A223602e0d30df9f086cec5c4f63562fd46f46726c44e186a5fec80f57689bc24?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673160"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eaf2dff09f9cdbb55d3486888f5e18db19f535767aca754ea0ead9129bc6ca0e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eaf2dff09f9cdbb55d3486888f5e18db19f535767aca754ea0ead9129bc6ca0e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eaf2dff09f9cdbb55d3486888f5e18db19f535767aca754ea0ead9129bc6ca0e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3Aeaf2dff09f9cdbb55d3486888f5e18db19f535767aca754ea0ead9129bc6ca0e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676307"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:72ba74f4ad3c5c803af1c9388ed1c7186295b74429f7466304339f22deecd40f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:72ba74f4ad3c5c803af1c9388ed1c7186295b74429f7466304339f22deecd40f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:72ba74f4ad3c5c803af1c9388ed1c7186295b74429f7466304339f22deecd40f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A72ba74f4ad3c5c803af1c9388ed1c7186295b74429f7466304339f22deecd40f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f3623315e94aa6a0748d390674e9f2f8632bcadc5b8ccccd75bc45019cb5a9ce_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f3623315e94aa6a0748d390674e9f2f8632bcadc5b8ccccd75bc45019cb5a9ce_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f3623315e94aa6a0748d390674e9f2f8632bcadc5b8ccccd75bc45019cb5a9ce_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Af3623315e94aa6a0748d390674e9f2f8632bcadc5b8ccccd75bc45019cb5a9ce?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675807"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6354ab3fa4a9e9cfa2c51da14109a1a67e98a3b43c346203ba40036ef5c3665a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6354ab3fa4a9e9cfa2c51da14109a1a67e98a3b43c346203ba40036ef5c3665a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6354ab3fa4a9e9cfa2c51da14109a1a67e98a3b43c346203ba40036ef5c3665a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A6354ab3fa4a9e9cfa2c51da14109a1a67e98a3b43c346203ba40036ef5c3665a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675019"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:06d3718842b1f074dd7b6477dd8e738e91ad243e06e466cd9cf8b08d7b7fa024_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:06d3718842b1f074dd7b6477dd8e738e91ad243e06e466cd9cf8b08d7b7fa024_arm64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:06d3718842b1f074dd7b6477dd8e738e91ad243e06e466cd9cf8b08d7b7fa024_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A06d3718842b1f074dd7b6477dd8e738e91ad243e06e466cd9cf8b08d7b7fa024?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673538"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e88d308e0ea7524be29e017096eb77ca6df3c8b3ea58a8a6a16dd7fc2fd5949c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e88d308e0ea7524be29e017096eb77ca6df3c8b3ea58a8a6a16dd7fc2fd5949c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e88d308e0ea7524be29e017096eb77ca6df3c8b3ea58a8a6a16dd7fc2fd5949c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3Ae88d308e0ea7524be29e017096eb77ca6df3c8b3ea58a8a6a16dd7fc2fd5949c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675111"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5c793d527449dfb1b10921bc56e8a31ad3d0f8e05dfd19a1782a67025b89879d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5c793d527449dfb1b10921bc56e8a31ad3d0f8e05dfd19a1782a67025b89879d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5c793d527449dfb1b10921bc56e8a31ad3d0f8e05dfd19a1782a67025b89879d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A5c793d527449dfb1b10921bc56e8a31ad3d0f8e05dfd19a1782a67025b89879d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683987"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:005773da78ed8522b96f69d9e53c961811e79340b54d49dffdce92c59a0cea2e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:005773da78ed8522b96f69d9e53c961811e79340b54d49dffdce92c59a0cea2e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:005773da78ed8522b96f69d9e53c961811e79340b54d49dffdce92c59a0cea2e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A005773da78ed8522b96f69d9e53c961811e79340b54d49dffdce92c59a0cea2e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675815"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5403330e0c28b3af4b3fda34ea84b3e6edced89649cd00bf6ff7f8352d2f7708_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5403330e0c28b3af4b3fda34ea84b3e6edced89649cd00bf6ff7f8352d2f7708_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5403330e0c28b3af4b3fda34ea84b3e6edced89649cd00bf6ff7f8352d2f7708_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A5403330e0c28b3af4b3fda34ea84b3e6edced89649cd00bf6ff7f8352d2f7708?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676032"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:1ae113ba4a4f5c2e2d9a2abf69d37ea047da7e879486ddf25303ab709648bc79_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:1ae113ba4a4f5c2e2d9a2abf69d37ea047da7e879486ddf25303ab709648bc79_arm64",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:1ae113ba4a4f5c2e2d9a2abf69d37ea047da7e879486ddf25303ab709648bc79_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3A1ae113ba4a4f5c2e2d9a2abf69d37ea047da7e879486ddf25303ab709648bc79?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674283"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3e0bc6b1b9cfd488a3cf5fd19d5a6d2839d37bd609c08e6a5a7a9da869ab3cbb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3e0bc6b1b9cfd488a3cf5fd19d5a6d2839d37bd609c08e6a5a7a9da869ab3cbb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3e0bc6b1b9cfd488a3cf5fd19d5a6d2839d37bd609c08e6a5a7a9da869ab3cbb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A3e0bc6b1b9cfd488a3cf5fd19d5a6d2839d37bd609c08e6a5a7a9da869ab3cbb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2e010df4822fc8ce8b452dd6d9381d38b1dced3c0e429a9d88e02ac61384c825_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2e010df4822fc8ce8b452dd6d9381d38b1dced3c0e429a9d88e02ac61384c825_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2e010df4822fc8ce8b452dd6d9381d38b1dced3c0e429a9d88e02ac61384c825_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A2e010df4822fc8ce8b452dd6d9381d38b1dced3c0e429a9d88e02ac61384c825?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675892"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:ce46c15516097e435174ffdd74a4a89f1c9d44b256f0ab5ea84b846ca2f339d2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:ce46c15516097e435174ffdd74a4a89f1c9d44b256f0ab5ea84b846ca2f339d2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:ce46c15516097e435174ffdd74a4a89f1c9d44b256f0ab5ea84b846ca2f339d2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Ace46c15516097e435174ffdd74a4a89f1c9d44b256f0ab5ea84b846ca2f339d2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673632"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:d23edb6ed5bae7f0f2be4e09cc70e031579e06bb2d42cb1c507727c319deb38e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:d23edb6ed5bae7f0f2be4e09cc70e031579e06bb2d42cb1c507727c319deb38e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:d23edb6ed5bae7f0f2be4e09cc70e031579e06bb2d42cb1c507727c319deb38e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3Ad23edb6ed5bae7f0f2be4e09cc70e031579e06bb2d42cb1c507727c319deb38e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fc01321fe5597aa44e732fdb7e99670d525a47dc7a0e0a37546f4b28fd697b60_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fc01321fe5597aa44e732fdb7e99670d525a47dc7a0e0a37546f4b28fd697b60_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fc01321fe5597aa44e732fdb7e99670d525a47dc7a0e0a37546f4b28fd697b60_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Afc01321fe5597aa44e732fdb7e99670d525a47dc7a0e0a37546f4b28fd697b60?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674025"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:465009fe0147ff5370183ee02173f430d0b9cfae5d579aec78bedbd3cb9d5dad_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:465009fe0147ff5370183ee02173f430d0b9cfae5d579aec78bedbd3cb9d5dad_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:465009fe0147ff5370183ee02173f430d0b9cfae5d579aec78bedbd3cb9d5dad_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A465009fe0147ff5370183ee02173f430d0b9cfae5d579aec78bedbd3cb9d5dad?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676059"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6d03501991d6fc5efd43a6c73cb0e3c8630db1f690bf07253c7e7d17a3de07c8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6d03501991d6fc5efd43a6c73cb0e3c8630db1f690bf07253c7e7d17a3de07c8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6d03501991d6fc5efd43a6c73cb0e3c8630db1f690bf07253c7e7d17a3de07c8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A6d03501991d6fc5efd43a6c73cb0e3c8630db1f690bf07253c7e7d17a3de07c8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675556"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9b9e3e354b0218bc54258ca7a8f7117cfe164c2311965769847e83e7f6c15d78_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9b9e3e354b0218bc54258ca7a8f7117cfe164c2311965769847e83e7f6c15d78_arm64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9b9e3e354b0218bc54258ca7a8f7117cfe164c2311965769847e83e7f6c15d78_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A9b9e3e354b0218bc54258ca7a8f7117cfe164c2311965769847e83e7f6c15d78?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676287"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5e4971e899f775e21b6e1a91f00f633c9467d31bdbf4b71038be98520600a625_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5e4971e899f775e21b6e1a91f00f633c9467d31bdbf4b71038be98520600a625_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5e4971e899f775e21b6e1a91f00f633c9467d31bdbf4b71038be98520600a625_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3A5e4971e899f775e21b6e1a91f00f633c9467d31bdbf4b71038be98520600a625?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776666515"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:fe5558e0b36855d11e4a57511f878702f87a3d907f79bcca226e99a0c8052628_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:fe5558e0b36855d11e4a57511f878702f87a3d907f79bcca226e99a0c8052628_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:fe5558e0b36855d11e4a57511f878702f87a3d907f79bcca226e99a0c8052628_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3Afe5558e0b36855d11e4a57511f878702f87a3d907f79bcca226e99a0c8052628?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673601"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d4c950b548bc3ed89ba8e5e216115bda1600c67d5c35fc9979fb4155415a7b42_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d4c950b548bc3ed89ba8e5e216115bda1600c67d5c35fc9979fb4155415a7b42_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d4c950b548bc3ed89ba8e5e216115bda1600c67d5c35fc9979fb4155415a7b42_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3Ad4c950b548bc3ed89ba8e5e216115bda1600c67d5c35fc9979fb4155415a7b42?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673407"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d80a021dbf04d702b2bc9736f036c0436191ab4ab3510749ccd03c533e9b5aeb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d80a021dbf04d702b2bc9736f036c0436191ab4ab3510749ccd03c533e9b5aeb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d80a021dbf04d702b2bc9736f036c0436191ab4ab3510749ccd03c533e9b5aeb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3Ad80a021dbf04d702b2bc9736f036c0436191ab4ab3510749ccd03c533e9b5aeb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673393"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:39af594e6f2fd164192c69bab214557cad92989f21e059cf66f00e455c7f816d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:39af594e6f2fd164192c69bab214557cad92989f21e059cf66f00e455c7f816d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:39af594e6f2fd164192c69bab214557cad92989f21e059cf66f00e455c7f816d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3A39af594e6f2fd164192c69bab214557cad92989f21e059cf66f00e455c7f816d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673209"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5033eb3bcb9c08972c36d6e19b8d192d85822373e76eb3b54cc9168d86ea62b3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5033eb3bcb9c08972c36d6e19b8d192d85822373e76eb3b54cc9168d86ea62b3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5033eb3bcb9c08972c36d6e19b8d192d85822373e76eb3b54cc9168d86ea62b3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3A5033eb3bcb9c08972c36d6e19b8d192d85822373e76eb3b54cc9168d86ea62b3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673524"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:0f4d2bd2755eb5467e25d30ef813275b15ec77c1433d406250af5294b8b49f55_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:0f4d2bd2755eb5467e25d30ef813275b15ec77c1433d406250af5294b8b49f55_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:0f4d2bd2755eb5467e25d30ef813275b15ec77c1433d406250af5294b8b49f55_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3A0f4d2bd2755eb5467e25d30ef813275b15ec77c1433d406250af5294b8b49f55?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776666612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:73d3bc342e17226fc6e47dfaf448d09e394ea53ec199bef1ba42abf3e0be8c5c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:73d3bc342e17226fc6e47dfaf448d09e394ea53ec199bef1ba42abf3e0be8c5c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:73d3bc342e17226fc6e47dfaf448d09e394ea53ec199bef1ba42abf3e0be8c5c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3A73d3bc342e17226fc6e47dfaf448d09e394ea53ec199bef1ba42abf3e0be8c5c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776666730"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3a2ee96fcf0963d55d4c1b6ffb874be6c3552ea0b9917b410976bd59e4a58efb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3a2ee96fcf0963d55d4c1b6ffb874be6c3552ea0b9917b410976bd59e4a58efb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3a2ee96fcf0963d55d4c1b6ffb874be6c3552ea0b9917b410976bd59e4a58efb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3A3a2ee96fcf0963d55d4c1b6ffb874be6c3552ea0b9917b410976bd59e4a58efb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673610"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b8a8e237f5827d7935e0dd8dafe0f59157cdada056580d74feb4ac1b9e05b683_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b8a8e237f5827d7935e0dd8dafe0f59157cdada056580d74feb4ac1b9e05b683_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b8a8e237f5827d7935e0dd8dafe0f59157cdada056580d74feb4ac1b9e05b683_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3Ab8a8e237f5827d7935e0dd8dafe0f59157cdada056580d74feb4ac1b9e05b683?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673390"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a84a096bab105b8e51bdc5f2d93c011a8a6a32e0ccf5b3a5ee2cbb2abeeb2aa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a84a096bab105b8e51bdc5f2d93c011a8a6a32e0ccf5b3a5ee2cbb2abeeb2aa_arm64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a84a096bab105b8e51bdc5f2d93c011a8a6a32e0ccf5b3a5ee2cbb2abeeb2aa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A1a84a096bab105b8e51bdc5f2d93c011a8a6a32e0ccf5b3a5ee2cbb2abeeb2aa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674666"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:bd2d266a384c88aeff5ef7174ecb532b24aa2a9d6d17a2e5c01ec384102571d9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:bd2d266a384c88aeff5ef7174ecb532b24aa2a9d6d17a2e5c01ec384102571d9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:bd2d266a384c88aeff5ef7174ecb532b24aa2a9d6d17a2e5c01ec384102571d9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3Abd2d266a384c88aeff5ef7174ecb532b24aa2a9d6d17a2e5c01ec384102571d9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673554"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:73622f6358a99c5b2666edc3f8b680b4cc3906e2f198c67709973dfcd7cbb0df_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:73622f6358a99c5b2666edc3f8b680b4cc3906e2f198c67709973dfcd7cbb0df_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:73622f6358a99c5b2666edc3f8b680b4cc3906e2f198c67709973dfcd7cbb0df_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A73622f6358a99c5b2666edc3f8b680b4cc3906e2f198c67709973dfcd7cbb0df?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674064"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fab18be096158a97131184f91230ca5ad7a66946ad4ad527c224f279a4d413f7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fab18be096158a97131184f91230ca5ad7a66946ad4ad527c224f279a4d413f7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fab18be096158a97131184f91230ca5ad7a66946ad4ad527c224f279a4d413f7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3Afab18be096158a97131184f91230ca5ad7a66946ad4ad527c224f279a4d413f7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776684174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:408f3dd8943ad4ba2ae37bc2708b698e60a150e98e1c0876e46d088832ed8d24_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:408f3dd8943ad4ba2ae37bc2708b698e60a150e98e1c0876e46d088832ed8d24_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:408f3dd8943ad4ba2ae37bc2708b698e60a150e98e1c0876e46d088832ed8d24_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A408f3dd8943ad4ba2ae37bc2708b698e60a150e98e1c0876e46d088832ed8d24?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673140"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:089a4975c6964f0c0a435586733b9fa5c3c9c8a5e139580f016f7f69ab83da27_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:089a4975c6964f0c0a435586733b9fa5c3c9c8a5e139580f016f7f69ab83da27_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:089a4975c6964f0c0a435586733b9fa5c3c9c8a5e139580f016f7f69ab83da27_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A089a4975c6964f0c0a435586733b9fa5c3c9c8a5e139580f016f7f69ab83da27?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:5b18e39a6782f2bac42b00c42d88a05f19d1740d49082289aaac11aa07a48f35_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:5b18e39a6782f2bac42b00c42d88a05f19d1740d49082289aaac11aa07a48f35_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:5b18e39a6782f2bac42b00c42d88a05f19d1740d49082289aaac11aa07a48f35_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A5b18e39a6782f2bac42b00c42d88a05f19d1740d49082289aaac11aa07a48f35?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:31b01092a5183808a2a97430743d04941f034388254cc7007e74c4ce3083df25_arm64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:31b01092a5183808a2a97430743d04941f034388254cc7007e74c4ce3083df25_arm64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:31b01092a5183808a2a97430743d04941f034388254cc7007e74c4ce3083df25_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A31b01092a5183808a2a97430743d04941f034388254cc7007e74c4ce3083df25?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675602"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d43c576b25a46f4b13aa9968a17c93078c96acbe364e2fc13e12cbeeb334e796_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d43c576b25a46f4b13aa9968a17c93078c96acbe364e2fc13e12cbeeb334e796_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d43c576b25a46f4b13aa9968a17c93078c96acbe364e2fc13e12cbeeb334e796_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3Ad43c576b25a46f4b13aa9968a17c93078c96acbe364e2fc13e12cbeeb334e796?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7f0561027732ff639f602c3a24d89894302fd43879370658fffd01a57a99a1fd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7f0561027732ff639f602c3a24d89894302fd43879370658fffd01a57a99a1fd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7f0561027732ff639f602c3a24d89894302fd43879370658fffd01a57a99a1fd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A7f0561027732ff639f602c3a24d89894302fd43879370658fffd01a57a99a1fd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:077fa69807819b9cf9c057e592c8e75c8108ea09cb2da43d7c378dd76ae68c51_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:077fa69807819b9cf9c057e592c8e75c8108ea09cb2da43d7c378dd76ae68c51_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:077fa69807819b9cf9c057e592c8e75c8108ea09cb2da43d7c378dd76ae68c51_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A077fa69807819b9cf9c057e592c8e75c8108ea09cb2da43d7c378dd76ae68c51?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674368"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:38cceaff79e567296a50b816cd81cf60c695315474c62e0b380d9d0ed253eebb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:38cceaff79e567296a50b816cd81cf60c695315474c62e0b380d9d0ed253eebb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:38cceaff79e567296a50b816cd81cf60c695315474c62e0b380d9d0ed253eebb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A38cceaff79e567296a50b816cd81cf60c695315474c62e0b380d9d0ed253eebb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674066"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ead5377c32eb77ed07c2285ce30eccd930ee6348d19977ec8c7f8050d9b0ff04_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ead5377c32eb77ed07c2285ce30eccd930ee6348d19977ec8c7f8050d9b0ff04_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ead5377c32eb77ed07c2285ce30eccd930ee6348d19977ec8c7f8050d9b0ff04_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3Aead5377c32eb77ed07c2285ce30eccd930ee6348d19977ec8c7f8050d9b0ff04?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673138"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:bc7dd594fb0d5018aa4dc0d26653f73d1859d978e07f0a1939189c5d2d654895_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:bc7dd594fb0d5018aa4dc0d26653f73d1859d978e07f0a1939189c5d2d654895_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:bc7dd594fb0d5018aa4dc0d26653f73d1859d978e07f0a1939189c5d2d654895_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3Abc7dd594fb0d5018aa4dc0d26653f73d1859d978e07f0a1939189c5d2d654895?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674388"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:20874645efadc9cd5b6a176a6d76cc1f6ee5175404f7da5e10fea3bc98498ede_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:20874645efadc9cd5b6a176a6d76cc1f6ee5175404f7da5e10fea3bc98498ede_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:20874645efadc9cd5b6a176a6d76cc1f6ee5175404f7da5e10fea3bc98498ede_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A20874645efadc9cd5b6a176a6d76cc1f6ee5175404f7da5e10fea3bc98498ede?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674121"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0b54c713dd339589a9b1fc5e109a7b65117139bd27de833ced58f9716fce95cc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0b54c713dd339589a9b1fc5e109a7b65117139bd27de833ced58f9716fce95cc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0b54c713dd339589a9b1fc5e109a7b65117139bd27de833ced58f9716fce95cc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A0b54c713dd339589a9b1fc5e109a7b65117139bd27de833ced58f9716fce95cc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675984"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ec0e7dd227d354544a2e67dd236b93970d393c87c1d6093f8191b9141c40ad01_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ec0e7dd227d354544a2e67dd236b93970d393c87c1d6093f8191b9141c40ad01_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ec0e7dd227d354544a2e67dd236b93970d393c87c1d6093f8191b9141c40ad01_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3Aec0e7dd227d354544a2e67dd236b93970d393c87c1d6093f8191b9141c40ad01?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675859"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7807ea7a4377bbc2df491ec5bb74d324eaa66649fba9f40ba46957fe1a758081_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7807ea7a4377bbc2df491ec5bb74d324eaa66649fba9f40ba46957fe1a758081_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7807ea7a4377bbc2df491ec5bb74d324eaa66649fba9f40ba46957fe1a758081_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A7807ea7a4377bbc2df491ec5bb74d324eaa66649fba9f40ba46957fe1a758081?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:164e9edcf185697cf77fef80a7b26eaf42efeae25aeb04a91a7e2afe8299828a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:164e9edcf185697cf77fef80a7b26eaf42efeae25aeb04a91a7e2afe8299828a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:164e9edcf185697cf77fef80a7b26eaf42efeae25aeb04a91a7e2afe8299828a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A164e9edcf185697cf77fef80a7b26eaf42efeae25aeb04a91a7e2afe8299828a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674233"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2cab2a6c6f64eafdc588cc11a5537e1a2ccdd0cb37eb84507c985cdb79855e25_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2cab2a6c6f64eafdc588cc11a5537e1a2ccdd0cb37eb84507c985cdb79855e25_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2cab2a6c6f64eafdc588cc11a5537e1a2ccdd0cb37eb84507c985cdb79855e25_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A2cab2a6c6f64eafdc588cc11a5537e1a2ccdd0cb37eb84507c985cdb79855e25?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7987b5ef6ba2b7e5a9fd3be756c5cab95cd2464af7c9e8459d00e527609513cb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7987b5ef6ba2b7e5a9fd3be756c5cab95cd2464af7c9e8459d00e527609513cb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7987b5ef6ba2b7e5a9fd3be756c5cab95cd2464af7c9e8459d00e527609513cb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A7987b5ef6ba2b7e5a9fd3be756c5cab95cd2464af7c9e8459d00e527609513cb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0d11910863bd5a411090ddf070c1be9d58c6f8cfe94eaed1c3ebc9cbe26c3cf6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0d11910863bd5a411090ddf070c1be9d58c6f8cfe94eaed1c3ebc9cbe26c3cf6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0d11910863bd5a411090ddf070c1be9d58c6f8cfe94eaed1c3ebc9cbe26c3cf6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A0d11910863bd5a411090ddf070c1be9d58c6f8cfe94eaed1c3ebc9cbe26c3cf6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676163"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ac7aa75334ba6e157584d2fc588d682c9c841ddb1cad9d03ef0df96f7274041a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ac7aa75334ba6e157584d2fc588d682c9c841ddb1cad9d03ef0df96f7274041a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ac7aa75334ba6e157584d2fc588d682c9c841ddb1cad9d03ef0df96f7274041a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Aac7aa75334ba6e157584d2fc588d682c9c841ddb1cad9d03ef0df96f7274041a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675744"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0077c7ef1053ca67c87920402ca1cbf21bf54626ba4046031528822a176e0875_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0077c7ef1053ca67c87920402ca1cbf21bf54626ba4046031528822a176e0875_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0077c7ef1053ca67c87920402ca1cbf21bf54626ba4046031528822a176e0875_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A0077c7ef1053ca67c87920402ca1cbf21bf54626ba4046031528822a176e0875?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675070"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:07ced40602810c0a35ffbed0e120a396076ff01e1d254ba9488a8714d766319b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:07ced40602810c0a35ffbed0e120a396076ff01e1d254ba9488a8714d766319b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:07ced40602810c0a35ffbed0e120a396076ff01e1d254ba9488a8714d766319b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A07ced40602810c0a35ffbed0e120a396076ff01e1d254ba9488a8714d766319b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675846"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f448d0ef7d1bd805abc57fb34fd9acdae51656851126b9abd3038703592ba4a8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f448d0ef7d1bd805abc57fb34fd9acdae51656851126b9abd3038703592ba4a8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f448d0ef7d1bd805abc57fb34fd9acdae51656851126b9abd3038703592ba4a8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3Af448d0ef7d1bd805abc57fb34fd9acdae51656851126b9abd3038703592ba4a8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676044"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:988d7aab9c210f5e09de3488b38758cac859c4619f8e8d715176c60b95993ee1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:988d7aab9c210f5e09de3488b38758cac859c4619f8e8d715176c60b95993ee1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:988d7aab9c210f5e09de3488b38758cac859c4619f8e8d715176c60b95993ee1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A988d7aab9c210f5e09de3488b38758cac859c4619f8e8d715176c60b95993ee1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673522"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:a7a07a455ee7e89c4702fb1f15c7888945acec38d7ff1cf731129b098050a591_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:a7a07a455ee7e89c4702fb1f15c7888945acec38d7ff1cf731129b098050a591_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:a7a07a455ee7e89c4702fb1f15c7888945acec38d7ff1cf731129b098050a591_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Aa7a07a455ee7e89c4702fb1f15c7888945acec38d7ff1cf731129b098050a591?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676017"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:40debe8017daf2ff3c5b17e89a4ab7e96cb717ae7bddcec305fb1eab8bbce0bb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:40debe8017daf2ff3c5b17e89a4ab7e96cb717ae7bddcec305fb1eab8bbce0bb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:40debe8017daf2ff3c5b17e89a4ab7e96cb717ae7bddcec305fb1eab8bbce0bb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A40debe8017daf2ff3c5b17e89a4ab7e96cb717ae7bddcec305fb1eab8bbce0bb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8bcaefae8c33ff10f758558796e4e90193b1ce2ad3ece24a21ab93a7e685dfb2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8bcaefae8c33ff10f758558796e4e90193b1ce2ad3ece24a21ab93a7e685dfb2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8bcaefae8c33ff10f758558796e4e90193b1ce2ad3ece24a21ab93a7e685dfb2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A8bcaefae8c33ff10f758558796e4e90193b1ce2ad3ece24a21ab93a7e685dfb2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:96f715b9440bfb17ea68aa161b833ac33265b372e174123bc10dac3eba00a872_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:96f715b9440bfb17ea68aa161b833ac33265b372e174123bc10dac3eba00a872_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:96f715b9440bfb17ea68aa161b833ac33265b372e174123bc10dac3eba00a872_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A96f715b9440bfb17ea68aa161b833ac33265b372e174123bc10dac3eba00a872?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676139"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6f9a533d4e52e87336542eaeea992cd22d2979888f7c96d1537fe89a7a186a8c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6f9a533d4e52e87336542eaeea992cd22d2979888f7c96d1537fe89a7a186a8c_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6f9a533d4e52e87336542eaeea992cd22d2979888f7c96d1537fe89a7a186a8c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A6f9a533d4e52e87336542eaeea992cd22d2979888f7c96d1537fe89a7a186a8c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ee31620709847e19ee56a6187986df168cc55a41e86bee1488291ff6a0415d31_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ee31620709847e19ee56a6187986df168cc55a41e86bee1488291ff6a0415d31_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ee31620709847e19ee56a6187986df168cc55a41e86bee1488291ff6a0415d31_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3Aee31620709847e19ee56a6187986df168cc55a41e86bee1488291ff6a0415d31?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676057"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b01b10b5836dae32a5b9938ba42fd4db2ae33a6b311da4e0c54ce0e48668ddf1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b01b10b5836dae32a5b9938ba42fd4db2ae33a6b311da4e0c54ce0e48668ddf1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b01b10b5836dae32a5b9938ba42fd4db2ae33a6b311da4e0c54ce0e48668ddf1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3Ab01b10b5836dae32a5b9938ba42fd4db2ae33a6b311da4e0c54ce0e48668ddf1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5ba8673706092251814d05e8dc3d6de7e74faf5829c57dae0e3634cb6e80aec5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5ba8673706092251814d05e8dc3d6de7e74faf5829c57dae0e3634cb6e80aec5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5ba8673706092251814d05e8dc3d6de7e74faf5829c57dae0e3634cb6e80aec5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A5ba8673706092251814d05e8dc3d6de7e74faf5829c57dae0e3634cb6e80aec5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674415"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c4ad92a5a5a030bd90ad8be8df3914f70dad8fa8e2c984144791685c7150132_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c4ad92a5a5a030bd90ad8be8df3914f70dad8fa8e2c984144791685c7150132_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c4ad92a5a5a030bd90ad8be8df3914f70dad8fa8e2c984144791685c7150132_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A8c4ad92a5a5a030bd90ad8be8df3914f70dad8fa8e2c984144791685c7150132?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673178"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4a3b3272a261a24b3fa681898aa7d0c55e8a8f67f719200e05e580b0606c16e4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4a3b3272a261a24b3fa681898aa7d0c55e8a8f67f719200e05e580b0606c16e4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4a3b3272a261a24b3fa681898aa7d0c55e8a8f67f719200e05e580b0606c16e4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A4a3b3272a261a24b3fa681898aa7d0c55e8a8f67f719200e05e580b0606c16e4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:530f79ee436e2ba7bf71f7cbc3b62c3be81665f5207555dec663565772158b99_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:530f79ee436e2ba7bf71f7cbc3b62c3be81665f5207555dec663565772158b99_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:530f79ee436e2ba7bf71f7cbc3b62c3be81665f5207555dec663565772158b99_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A530f79ee436e2ba7bf71f7cbc3b62c3be81665f5207555dec663565772158b99?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3dc25f71c79a131cdb79f72e3c6bd2a3c987728e52d3261c5935f15b1466150f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3dc25f71c79a131cdb79f72e3c6bd2a3c987728e52d3261c5935f15b1466150f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3dc25f71c79a131cdb79f72e3c6bd2a3c987728e52d3261c5935f15b1466150f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A3dc25f71c79a131cdb79f72e3c6bd2a3c987728e52d3261c5935f15b1466150f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:e61c5aaa06056181b140e49b24b25835c806df7a51efd7597d3d29c8504dfe3e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:e61c5aaa06056181b140e49b24b25835c806df7a51efd7597d3d29c8504dfe3e_arm64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:e61c5aaa06056181b140e49b24b25835c806df7a51efd7597d3d29c8504dfe3e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Ae61c5aaa06056181b140e49b24b25835c806df7a51efd7597d3d29c8504dfe3e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673943"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ce52fcb8c19848e8fc81e8cfca9c47e1a257339eb96e6a5e4d214066dad9afe6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ce52fcb8c19848e8fc81e8cfca9c47e1a257339eb96e6a5e4d214066dad9afe6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ce52fcb8c19848e8fc81e8cfca9c47e1a257339eb96e6a5e4d214066dad9afe6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3Ace52fcb8c19848e8fc81e8cfca9c47e1a257339eb96e6a5e4d214066dad9afe6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673966"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e79429feca8812a6d1bb6316906b670ccbb89c506d0f47a0ec8568cd9975a479_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e79429feca8812a6d1bb6316906b670ccbb89c506d0f47a0ec8568cd9975a479_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e79429feca8812a6d1bb6316906b670ccbb89c506d0f47a0ec8568cd9975a479_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3Ae79429feca8812a6d1bb6316906b670ccbb89c506d0f47a0ec8568cd9975a479?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:7246b6b2f38d276340ab7d46baf8e67166639d6bcdb75aa901ddc09999fedd92_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:7246b6b2f38d276340ab7d46baf8e67166639d6bcdb75aa901ddc09999fedd92_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:7246b6b2f38d276340ab7d46baf8e67166639d6bcdb75aa901ddc09999fedd92_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A7246b6b2f38d276340ab7d46baf8e67166639d6bcdb75aa901ddc09999fedd92?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673970"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:9575d057a034bdd890854a08559cc08013ac76dd0aaf2ef11e26a5734be590e9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:9575d057a034bdd890854a08559cc08013ac76dd0aaf2ef11e26a5734be590e9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:9575d057a034bdd890854a08559cc08013ac76dd0aaf2ef11e26a5734be590e9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A9575d057a034bdd890854a08559cc08013ac76dd0aaf2ef11e26a5734be590e9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673289"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:e1e3d49db220a1e3f4f540ec89e06b8a4bb7dc72cefa4b96cb278001154cb21c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:e1e3d49db220a1e3f4f540ec89e06b8a4bb7dc72cefa4b96cb278001154cb21c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:e1e3d49db220a1e3f4f540ec89e06b8a4bb7dc72cefa4b96cb278001154cb21c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3Ae1e3d49db220a1e3f4f540ec89e06b8a4bb7dc72cefa4b96cb278001154cb21c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:12908e94266b5a90846f50b7fe8688d66c359fb3fc3e9c317450ddb65b455076_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:12908e94266b5a90846f50b7fe8688d66c359fb3fc3e9c317450ddb65b455076_arm64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:12908e94266b5a90846f50b7fe8688d66c359fb3fc3e9c317450ddb65b455076_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A12908e94266b5a90846f50b7fe8688d66c359fb3fc3e9c317450ddb65b455076?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673171"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2dade7bac074ae0b6d6b8a47004a3c534c6b1a484a822c45001f5d4083742aa2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2dade7bac074ae0b6d6b8a47004a3c534c6b1a484a822c45001f5d4083742aa2_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2dade7bac074ae0b6d6b8a47004a3c534c6b1a484a822c45001f5d4083742aa2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A2dade7bac074ae0b6d6b8a47004a3c534c6b1a484a822c45001f5d4083742aa2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675521"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:795a0b596a024d3793c0d211f8e2acf771ae79d4c5d47decef1facba2d5a318b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:795a0b596a024d3793c0d211f8e2acf771ae79d4c5d47decef1facba2d5a318b_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:795a0b596a024d3793c0d211f8e2acf771ae79d4c5d47decef1facba2d5a318b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A795a0b596a024d3793c0d211f8e2acf771ae79d4c5d47decef1facba2d5a318b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675128"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:64f077c897c6ee0c9db36c7cc4f9913d1ed66afb822975974c40d98fc21bead0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:64f077c897c6ee0c9db36c7cc4f9913d1ed66afb822975974c40d98fc21bead0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:64f077c897c6ee0c9db36c7cc4f9913d1ed66afb822975974c40d98fc21bead0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A64f077c897c6ee0c9db36c7cc4f9913d1ed66afb822975974c40d98fc21bead0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776684050"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4cb9d96442ea8b54307369d340a8cca987471b191b21c9463027c9bddd754074_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4cb9d96442ea8b54307369d340a8cca987471b191b21c9463027c9bddd754074_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4cb9d96442ea8b54307369d340a8cca987471b191b21c9463027c9bddd754074_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A4cb9d96442ea8b54307369d340a8cca987471b191b21c9463027c9bddd754074?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776684155"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:874eab1c9150b030a11a0742589008c00cd6f8af8fe188ffbbe28ee6b90f7bf6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:874eab1c9150b030a11a0742589008c00cd6f8af8fe188ffbbe28ee6b90f7bf6_arm64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:874eab1c9150b030a11a0742589008c00cd6f8af8fe188ffbbe28ee6b90f7bf6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A874eab1c9150b030a11a0742589008c00cd6f8af8fe188ffbbe28ee6b90f7bf6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673386"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:62420bf7fc2b91f60b32851f2c099ac5fda8083e6274d2a5523ccd0ece3b6a80_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:62420bf7fc2b91f60b32851f2c099ac5fda8083e6274d2a5523ccd0ece3b6a80_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:62420bf7fc2b91f60b32851f2c099ac5fda8083e6274d2a5523ccd0ece3b6a80_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A62420bf7fc2b91f60b32851f2c099ac5fda8083e6274d2a5523ccd0ece3b6a80?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675919"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6caecd5a01bd49eff8acad2449074c505d07e521208af296b0cd9f0822f54911_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6caecd5a01bd49eff8acad2449074c505d07e521208af296b0cd9f0822f54911_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6caecd5a01bd49eff8acad2449074c505d07e521208af296b0cd9f0822f54911_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A6caecd5a01bd49eff8acad2449074c505d07e521208af296b0cd9f0822f54911?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674229"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c08cf8ce6baf72aee6019b7318106e3a02e635f4b385a71a2e58387e706a2cbe_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c08cf8ce6baf72aee6019b7318106e3a02e635f4b385a71a2e58387e706a2cbe_arm64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c08cf8ce6baf72aee6019b7318106e3a02e635f4b385a71a2e58387e706a2cbe_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3Ac08cf8ce6baf72aee6019b7318106e3a02e635f4b385a71a2e58387e706a2cbe?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675595"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b3f13d71ce9dddbce566d9a5bb5783d3e5417b8fa3cae427f7f74997e4a8c8ed_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b3f13d71ce9dddbce566d9a5bb5783d3e5417b8fa3cae427f7f74997e4a8c8ed_arm64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b3f13d71ce9dddbce566d9a5bb5783d3e5417b8fa3cae427f7f74997e4a8c8ed_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3Ab3f13d71ce9dddbce566d9a5bb5783d3e5417b8fa3cae427f7f74997e4a8c8ed?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675826"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1a255a287f3100cade2efe8d8b75ca7f031b9606f6d8ea31581a59e0ca38fde1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1a255a287f3100cade2efe8d8b75ca7f031b9606f6d8ea31581a59e0ca38fde1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1a255a287f3100cade2efe8d8b75ca7f031b9606f6d8ea31581a59e0ca38fde1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A1a255a287f3100cade2efe8d8b75ca7f031b9606f6d8ea31581a59e0ca38fde1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:eaa77c0a842cf32f826c2ca19abbe4020997810c35e079c0c88a0a9361323893_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:eaa77c0a842cf32f826c2ca19abbe4020997810c35e079c0c88a0a9361323893_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:eaa77c0a842cf32f826c2ca19abbe4020997810c35e079c0c88a0a9361323893_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3Aeaa77c0a842cf32f826c2ca19abbe4020997810c35e079c0c88a0a9361323893?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673295"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:59988d13b37880c4b79bf8622161c6e975136bdbfb59c8fe73ee8e39bc0f7fe2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:59988d13b37880c4b79bf8622161c6e975136bdbfb59c8fe73ee8e39bc0f7fe2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:59988d13b37880c4b79bf8622161c6e975136bdbfb59c8fe73ee8e39bc0f7fe2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3A59988d13b37880c4b79bf8622161c6e975136bdbfb59c8fe73ee8e39bc0f7fe2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776666531"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:45c9e9816f3b14886661b4c82dd75f87e242f4ad3e0c1c5f264d1a1839e8cff3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:45c9e9816f3b14886661b4c82dd75f87e242f4ad3e0c1c5f264d1a1839e8cff3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:45c9e9816f3b14886661b4c82dd75f87e242f4ad3e0c1c5f264d1a1839e8cff3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A45c9e9816f3b14886661b4c82dd75f87e242f4ad3e0c1c5f264d1a1839e8cff3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673989"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a84aa018bfe05a74226938ca4e34b58dde33019aa093e01a7a60a8d6a4c913ca_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a84aa018bfe05a74226938ca4e34b58dde33019aa093e01a7a60a8d6a4c913ca_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a84aa018bfe05a74226938ca4e34b58dde33019aa093e01a7a60a8d6a4c913ca_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3Aa84aa018bfe05a74226938ca4e34b58dde33019aa093e01a7a60a8d6a4c913ca?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675038"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c1a6b704c85cfb829b9a3421cbde16b5011d2c506143322e8f2563d6a5191fe2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c1a6b704c85cfb829b9a3421cbde16b5011d2c506143322e8f2563d6a5191fe2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c1a6b704c85cfb829b9a3421cbde16b5011d2c506143322e8f2563d6a5191fe2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3Ac1a6b704c85cfb829b9a3421cbde16b5011d2c506143322e8f2563d6a5191fe2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9955ec574da8c2821d783edbf833af9c4b4d4a2abcffd603b85d706333c68111_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9955ec574da8c2821d783edbf833af9c4b4d4a2abcffd603b85d706333c68111_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9955ec574da8c2821d783edbf833af9c4b4d4a2abcffd603b85d706333c68111_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A9955ec574da8c2821d783edbf833af9c4b4d4a2abcffd603b85d706333c68111?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776692789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5eb44886f42c57f0e736d6259b55ba561beb6324ca58537e253581f6570b22cd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5eb44886f42c57f0e736d6259b55ba561beb6324ca58537e253581f6570b22cd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5eb44886f42c57f0e736d6259b55ba561beb6324ca58537e253581f6570b22cd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A5eb44886f42c57f0e736d6259b55ba561beb6324ca58537e253581f6570b22cd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673130"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0232982c7a3431d641fde0e3b3b8921f855cb872d470e5b9f69edc9b573c2714_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0232982c7a3431d641fde0e3b3b8921f855cb872d470e5b9f69edc9b573c2714_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0232982c7a3431d641fde0e3b3b8921f855cb872d470e5b9f69edc9b573c2714_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A0232982c7a3431d641fde0e3b3b8921f855cb872d470e5b9f69edc9b573c2714?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674195"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:73f6897c667e3fa46703b50ec857958738442bb7d8b95fae051f761f42a01605_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:73f6897c667e3fa46703b50ec857958738442bb7d8b95fae051f761f42a01605_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:73f6897c667e3fa46703b50ec857958738442bb7d8b95fae051f761f42a01605_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A73f6897c667e3fa46703b50ec857958738442bb7d8b95fae051f761f42a01605?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:3f69c1b708c411bfdd1a2f5387e6084f2fa28e1c4bfcfe136db5b66377918bf9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:3f69c1b708c411bfdd1a2f5387e6084f2fa28e1c4bfcfe136db5b66377918bf9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:3f69c1b708c411bfdd1a2f5387e6084f2fa28e1c4bfcfe136db5b66377918bf9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A3f69c1b708c411bfdd1a2f5387e6084f2fa28e1c4bfcfe136db5b66377918bf9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674514"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ffcf4fc9bf77edd7944824b25136db6027d21faef80bef9d7b126b9fb6c0574_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ffcf4fc9bf77edd7944824b25136db6027d21faef80bef9d7b126b9fb6c0574_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ffcf4fc9bf77edd7944824b25136db6027d21faef80bef9d7b126b9fb6c0574_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A7ffcf4fc9bf77edd7944824b25136db6027d21faef80bef9d7b126b9fb6c0574?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674074"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:63db7c4a436ffd18fb03a7cda09cd47844691a8025f2ab04492ff405a85ed144_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:63db7c4a436ffd18fb03a7cda09cd47844691a8025f2ab04492ff405a85ed144_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:63db7c4a436ffd18fb03a7cda09cd47844691a8025f2ab04492ff405a85ed144_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A63db7c4a436ffd18fb03a7cda09cd47844691a8025f2ab04492ff405a85ed144?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675812"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:a80d32903c82085a1904b088453a13c88202d53c26626a0ad3663c784f36230e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:a80d32903c82085a1904b088453a13c88202d53c26626a0ad3663c784f36230e_arm64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:a80d32903c82085a1904b088453a13c88202d53c26626a0ad3663c784f36230e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Aa80d32903c82085a1904b088453a13c88202d53c26626a0ad3663c784f36230e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776685755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bfcf47037dce9565700224c63e19aa2ca8935d72e355c08cc8754cbb84b41d00_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bfcf47037dce9565700224c63e19aa2ca8935d72e355c08cc8754cbb84b41d00_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bfcf47037dce9565700224c63e19aa2ca8935d72e355c08cc8754cbb84b41d00_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3Abfcf47037dce9565700224c63e19aa2ca8935d72e355c08cc8754cbb84b41d00?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:847a5098475d0ab53e351d52148f5a2211dcc8090e03e17dd7b161b7332465d1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:847a5098475d0ab53e351d52148f5a2211dcc8090e03e17dd7b161b7332465d1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:847a5098475d0ab53e351d52148f5a2211dcc8090e03e17dd7b161b7332465d1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A847a5098475d0ab53e351d52148f5a2211dcc8090e03e17dd7b161b7332465d1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2674a13e799262a6ba79ba3e43c2560304a1201374272e8622aa1a5e3df33d66_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2674a13e799262a6ba79ba3e43c2560304a1201374272e8622aa1a5e3df33d66_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2674a13e799262a6ba79ba3e43c2560304a1201374272e8622aa1a5e3df33d66_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A2674a13e799262a6ba79ba3e43c2560304a1201374272e8622aa1a5e3df33d66?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2098ea118ff218c9004be57932760642db74b9387d11fd5376593ebb3b2f13c2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2098ea118ff218c9004be57932760642db74b9387d11fd5376593ebb3b2f13c2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2098ea118ff218c9004be57932760642db74b9387d11fd5376593ebb3b2f13c2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A2098ea118ff218c9004be57932760642db74b9387d11fd5376593ebb3b2f13c2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f9d6ccdb270a01e408d70d01d692955ba92282ec5e577fd695f6c51289edce2a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f9d6ccdb270a01e408d70d01d692955ba92282ec5e577fd695f6c51289edce2a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f9d6ccdb270a01e408d70d01d692955ba92282ec5e577fd695f6c51289edce2a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3Af9d6ccdb270a01e408d70d01d692955ba92282ec5e577fd695f6c51289edce2a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ca75fc486998027f4903a313c7bd742711e2b7bd11e55b1e0c557582ca3d1dbd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ca75fc486998027f4903a313c7bd742711e2b7bd11e55b1e0c557582ca3d1dbd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ca75fc486998027f4903a313c7bd742711e2b7bd11e55b1e0c557582ca3d1dbd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3Aca75fc486998027f4903a313c7bd742711e2b7bd11e55b1e0c557582ca3d1dbd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673480"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a75ee91ea3ee181623a22f9e54b00c5d4b2e6cf3f222a912c8aff5a29dde1376_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a75ee91ea3ee181623a22f9e54b00c5d4b2e6cf3f222a912c8aff5a29dde1376_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a75ee91ea3ee181623a22f9e54b00c5d4b2e6cf3f222a912c8aff5a29dde1376_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3Aa75ee91ea3ee181623a22f9e54b00c5d4b2e6cf3f222a912c8aff5a29dde1376?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673941"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b692ee1154fd6b6a8fae68467ae87ad89c8a528d50599db14f614c7f08831d81_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b692ee1154fd6b6a8fae68467ae87ad89c8a528d50599db14f614c7f08831d81_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b692ee1154fd6b6a8fae68467ae87ad89c8a528d50599db14f614c7f08831d81_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3Ab692ee1154fd6b6a8fae68467ae87ad89c8a528d50599db14f614c7f08831d81?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675617"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:88732e8c96326c07670db570f1b1549412775fd07a66b0816f227d1d4320a27c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:88732e8c96326c07670db570f1b1549412775fd07a66b0816f227d1d4320a27c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:88732e8c96326c07670db570f1b1549412775fd07a66b0816f227d1d4320a27c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A88732e8c96326c07670db570f1b1549412775fd07a66b0816f227d1d4320a27c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675824"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6d0bedcf0cfc56da79f55effbb2315fa7da2a126347bf0fa3b21fe96b9c3f037_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6d0bedcf0cfc56da79f55effbb2315fa7da2a126347bf0fa3b21fe96b9c3f037_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6d0bedcf0cfc56da79f55effbb2315fa7da2a126347bf0fa3b21fe96b9c3f037_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A6d0bedcf0cfc56da79f55effbb2315fa7da2a126347bf0fa3b21fe96b9c3f037?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:18ead28e318b6a165c6988639f9361dfdb3b7936c026f6043b66996e806be30c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:18ead28e318b6a165c6988639f9361dfdb3b7936c026f6043b66996e806be30c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:18ead28e318b6a165c6988639f9361dfdb3b7936c026f6043b66996e806be30c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A18ead28e318b6a165c6988639f9361dfdb3b7936c026f6043b66996e806be30c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1aac0c8d30f9ceb91a9ef3cd76fe90c338568b6408656687fe168a8c9a48d628_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1aac0c8d30f9ceb91a9ef3cd76fe90c338568b6408656687fe168a8c9a48d628_arm64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1aac0c8d30f9ceb91a9ef3cd76fe90c338568b6408656687fe168a8c9a48d628_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A1aac0c8d30f9ceb91a9ef3cd76fe90c338568b6408656687fe168a8c9a48d628?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673591"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:423f3c92919536202042249d0e3911b30e777ad4616ae8f6ca9968c87e14c33d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:423f3c92919536202042249d0e3911b30e777ad4616ae8f6ca9968c87e14c33d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:423f3c92919536202042249d0e3911b30e777ad4616ae8f6ca9968c87e14c33d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A423f3c92919536202042249d0e3911b30e777ad4616ae8f6ca9968c87e14c33d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a274ec689248b4fe3431501c0045736e3b24df4afafcf86ea6d0704e22586c27_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a274ec689248b4fe3431501c0045736e3b24df4afafcf86ea6d0704e22586c27_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a274ec689248b4fe3431501c0045736e3b24df4afafcf86ea6d0704e22586c27_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3Aa274ec689248b4fe3431501c0045736e3b24df4afafcf86ea6d0704e22586c27?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674103"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:86e68bbe22d576839fa35f704596b2f643c09e3cd755fae8effe90935f65ab10_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:86e68bbe22d576839fa35f704596b2f643c09e3cd755fae8effe90935f65ab10_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:86e68bbe22d576839fa35f704596b2f643c09e3cd755fae8effe90935f65ab10_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A86e68bbe22d576839fa35f704596b2f643c09e3cd755fae8effe90935f65ab10?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683756"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:cc9d2ebecaf2c78d99104d0a3ff23cf7748e42f13d00215783cac971193b1f69_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:cc9d2ebecaf2c78d99104d0a3ff23cf7748e42f13d00215783cac971193b1f69_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:cc9d2ebecaf2c78d99104d0a3ff23cf7748e42f13d00215783cac971193b1f69_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3Acc9d2ebecaf2c78d99104d0a3ff23cf7748e42f13d00215783cac971193b1f69?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675857"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9ce9629c6a48384d0dd7d325fd61cf62b8c290db57b2917a8ed671f7e3d4fa9d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9ce9629c6a48384d0dd7d325fd61cf62b8c290db57b2917a8ed671f7e3d4fa9d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9ce9629c6a48384d0dd7d325fd61cf62b8c290db57b2917a8ed671f7e3d4fa9d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A9ce9629c6a48384d0dd7d325fd61cf62b8c290db57b2917a8ed671f7e3d4fa9d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675600"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:dc192484377ead9c1805632aa8a8252186c4f5f0649bc30ce521b67f521c66a0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:dc192484377ead9c1805632aa8a8252186c4f5f0649bc30ce521b67f521c66a0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:dc192484377ead9c1805632aa8a8252186c4f5f0649bc30ce521b67f521c66a0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3Adc192484377ead9c1805632aa8a8252186c4f5f0649bc30ce521b67f521c66a0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674305"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:37bcb5a159c17e1241a4e5add6d5276512ce99418b2f779c1e2a976a099de7a3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:37bcb5a159c17e1241a4e5add6d5276512ce99418b2f779c1e2a976a099de7a3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:37bcb5a159c17e1241a4e5add6d5276512ce99418b2f779c1e2a976a099de7a3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A37bcb5a159c17e1241a4e5add6d5276512ce99418b2f779c1e2a976a099de7a3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ac8a2e047872045fba2fc0ea483a700de6c6398ae2cd184bfbdb021969d6eb6d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ac8a2e047872045fba2fc0ea483a700de6c6398ae2cd184bfbdb021969d6eb6d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ac8a2e047872045fba2fc0ea483a700de6c6398ae2cd184bfbdb021969d6eb6d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3Aac8a2e047872045fba2fc0ea483a700de6c6398ae2cd184bfbdb021969d6eb6d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14d78d97d80007bbfb90b2db94a3d0aab2c5f73e1785fb27ce570cfc5e31c964_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14d78d97d80007bbfb90b2db94a3d0aab2c5f73e1785fb27ce570cfc5e31c964_arm64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14d78d97d80007bbfb90b2db94a3d0aab2c5f73e1785fb27ce570cfc5e31c964_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A14d78d97d80007bbfb90b2db94a3d0aab2c5f73e1785fb27ce570cfc5e31c964?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675643"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a564cbff84b987d316d891c033ba1ce2299d0ebb655452671498b3de789b6f02_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a564cbff84b987d316d891c033ba1ce2299d0ebb655452671498b3de789b6f02_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a564cbff84b987d316d891c033ba1ce2299d0ebb655452671498b3de789b6f02_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3Aa564cbff84b987d316d891c033ba1ce2299d0ebb655452671498b3de789b6f02?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3198e3a7911d65997d84ae2c4a4756213bd6169408f8e5b4d4fcfc1312ec221f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3198e3a7911d65997d84ae2c4a4756213bd6169408f8e5b4d4fcfc1312ec221f_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3198e3a7911d65997d84ae2c4a4756213bd6169408f8e5b4d4fcfc1312ec221f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3A3198e3a7911d65997d84ae2c4a4756213bd6169408f8e5b4d4fcfc1312ec221f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674349"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1fbf0bae66e3d3feafd7a5d800ffdc203ad1171d41da344c7bc899fa9df0c439_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1fbf0bae66e3d3feafd7a5d800ffdc203ad1171d41da344c7bc899fa9df0c439_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1fbf0bae66e3d3feafd7a5d800ffdc203ad1171d41da344c7bc899fa9df0c439_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A1fbf0bae66e3d3feafd7a5d800ffdc203ad1171d41da344c7bc899fa9df0c439?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673159"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5769b6120ec44707f7b98ec0ba5e90dc8dee0cf14a2795a0785435cb01711fa1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5769b6120ec44707f7b98ec0ba5e90dc8dee0cf14a2795a0785435cb01711fa1_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5769b6120ec44707f7b98ec0ba5e90dc8dee0cf14a2795a0785435cb01711fa1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A5769b6120ec44707f7b98ec0ba5e90dc8dee0cf14a2795a0785435cb01711fa1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8371e3f60ff9846b4249201911cad68360c81e944f753a6eff72003a17c2512a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8371e3f60ff9846b4249201911cad68360c81e944f753a6eff72003a17c2512a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8371e3f60ff9846b4249201911cad68360c81e944f753a6eff72003a17c2512a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A8371e3f60ff9846b4249201911cad68360c81e944f753a6eff72003a17c2512a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674376"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:53eb49907793916b8c24463ab096e15d14265a19da7a735a38bf5ec2b9625a79_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:53eb49907793916b8c24463ab096e15d14265a19da7a735a38bf5ec2b9625a79_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:53eb49907793916b8c24463ab096e15d14265a19da7a735a38bf5ec2b9625a79_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A53eb49907793916b8c24463ab096e15d14265a19da7a735a38bf5ec2b9625a79?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675631"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b6f9dbf0e6927d43f45ac8efcad6913ce67b663747d509666cf0ce87455b0379_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b6f9dbf0e6927d43f45ac8efcad6913ce67b663747d509666cf0ce87455b0379_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b6f9dbf0e6927d43f45ac8efcad6913ce67b663747d509666cf0ce87455b0379_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Ab6f9dbf0e6927d43f45ac8efcad6913ce67b663747d509666cf0ce87455b0379?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:54bb0200c75df26bf82e42db71faef1dc309be87095afb5de60e39d2853acd62_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:54bb0200c75df26bf82e42db71faef1dc309be87095afb5de60e39d2853acd62_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:54bb0200c75df26bf82e42db71faef1dc309be87095afb5de60e39d2853acd62_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A54bb0200c75df26bf82e42db71faef1dc309be87095afb5de60e39d2853acd62?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673171"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7f9d5ae402c429ceb81c952f23b0898f4f768b048e87f4c7c193f970d83248a2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7f9d5ae402c429ceb81c952f23b0898f4f768b048e87f4c7c193f970d83248a2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7f9d5ae402c429ceb81c952f23b0898f4f768b048e87f4c7c193f970d83248a2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A7f9d5ae402c429ceb81c952f23b0898f4f768b048e87f4c7c193f970d83248a2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673217"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9848ebd13facf8daf9ca0f32295a280ca5d4dff1d48b9f3e8c0b249b616278aa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9848ebd13facf8daf9ca0f32295a280ca5d4dff1d48b9f3e8c0b249b616278aa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9848ebd13facf8daf9ca0f32295a280ca5d4dff1d48b9f3e8c0b249b616278aa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A9848ebd13facf8daf9ca0f32295a280ca5d4dff1d48b9f3e8c0b249b616278aa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674212"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:997ea290d800e3599f44e72cea8bdb65876dba2483d486938e2d024b1b9a4fae_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:997ea290d800e3599f44e72cea8bdb65876dba2483d486938e2d024b1b9a4fae_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:997ea290d800e3599f44e72cea8bdb65876dba2483d486938e2d024b1b9a4fae_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A997ea290d800e3599f44e72cea8bdb65876dba2483d486938e2d024b1b9a4fae?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674084"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3ec816ffcd991bf5082f28a7edad858d9b02cd65f8e23ca2e320c41a33a0cd79_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3ec816ffcd991bf5082f28a7edad858d9b02cd65f8e23ca2e320c41a33a0cd79_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3ec816ffcd991bf5082f28a7edad858d9b02cd65f8e23ca2e320c41a33a0cd79_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A3ec816ffcd991bf5082f28a7edad858d9b02cd65f8e23ca2e320c41a33a0cd79?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676087"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:aa7c8a340787569438c3c7515d62384f9a5ecdc53e400cc6768bc92c940efda5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:aa7c8a340787569438c3c7515d62384f9a5ecdc53e400cc6768bc92c940efda5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:aa7c8a340787569438c3c7515d62384f9a5ecdc53e400cc6768bc92c940efda5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Aaa7c8a340787569438c3c7515d62384f9a5ecdc53e400cc6768bc92c940efda5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674189"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:80c44734612ee4b1c13c995b1583a317e4742755ddd9ae515d6b9c61ecb5f152_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:80c44734612ee4b1c13c995b1583a317e4742755ddd9ae515d6b9c61ecb5f152_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:80c44734612ee4b1c13c995b1583a317e4742755ddd9ae515d6b9c61ecb5f152_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A80c44734612ee4b1c13c995b1583a317e4742755ddd9ae515d6b9c61ecb5f152?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674215"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:4b16fcfd326efb0618351bc9ddb2c3206b18e189c188e5c9fcf27f3ca8f3afa7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:4b16fcfd326efb0618351bc9ddb2c3206b18e189c188e5c9fcf27f3ca8f3afa7_ppc64le",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:4b16fcfd326efb0618351bc9ddb2c3206b18e189c188e5c9fcf27f3ca8f3afa7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A4b16fcfd326efb0618351bc9ddb2c3206b18e189c188e5c9fcf27f3ca8f3afa7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3ae7edcafadd5fc3a2ce15754828efe17dd81a7fe95759f5d10fb843d8f0cff0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3ae7edcafadd5fc3a2ce15754828efe17dd81a7fe95759f5d10fb843d8f0cff0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3ae7edcafadd5fc3a2ce15754828efe17dd81a7fe95759f5d10fb843d8f0cff0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A3ae7edcafadd5fc3a2ce15754828efe17dd81a7fe95759f5d10fb843d8f0cff0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674522"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:19233828b527446a7c210823b43ab95d309ed58c124ce07bf2cc70f809a6abc4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:19233828b527446a7c210823b43ab95d309ed58c124ce07bf2cc70f809a6abc4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:19233828b527446a7c210823b43ab95d309ed58c124ce07bf2cc70f809a6abc4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A19233828b527446a7c210823b43ab95d309ed58c124ce07bf2cc70f809a6abc4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676307"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0a527723fa338e5204f37b50f7c3ea7f46055a91f391aa12f5ff91dfc621b45b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0a527723fa338e5204f37b50f7c3ea7f46055a91f391aa12f5ff91dfc621b45b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0a527723fa338e5204f37b50f7c3ea7f46055a91f391aa12f5ff91dfc621b45b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3A0a527723fa338e5204f37b50f7c3ea7f46055a91f391aa12f5ff91dfc621b45b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:60a1f3345766ea95b39394925fcae2358dd8cc819a0f7b187363bff9f3bd1bad_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:60a1f3345766ea95b39394925fcae2358dd8cc819a0f7b187363bff9f3bd1bad_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:60a1f3345766ea95b39394925fcae2358dd8cc819a0f7b187363bff9f3bd1bad_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3A60a1f3345766ea95b39394925fcae2358dd8cc819a0f7b187363bff9f3bd1bad?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673389"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1df097f85a3b46c3624fc2b59b6755ec1dd1bb6843ce84fceca2c40b8af74eda_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1df097f85a3b46c3624fc2b59b6755ec1dd1bb6843ce84fceca2c40b8af74eda_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1df097f85a3b46c3624fc2b59b6755ec1dd1bb6843ce84fceca2c40b8af74eda_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3A1df097f85a3b46c3624fc2b59b6755ec1dd1bb6843ce84fceca2c40b8af74eda?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5eaf2d7d197bc327adb488bf3514d2ce6886900164bb8a7e3d8c92061baeb783_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5eaf2d7d197bc327adb488bf3514d2ce6886900164bb8a7e3d8c92061baeb783_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5eaf2d7d197bc327adb488bf3514d2ce6886900164bb8a7e3d8c92061baeb783_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A5eaf2d7d197bc327adb488bf3514d2ce6886900164bb8a7e3d8c92061baeb783?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673768"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d6142179c8354154a885955351e093aea68de58f0cbae8ec631da2d3d8cba63a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d6142179c8354154a885955351e093aea68de58f0cbae8ec631da2d3d8cba63a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d6142179c8354154a885955351e093aea68de58f0cbae8ec631da2d3d8cba63a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Ad6142179c8354154a885955351e093aea68de58f0cbae8ec631da2d3d8cba63a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673709"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6c5f2e308f308f3892acb46179df4b6bd460b234a416f4414194005cf915ef5b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6c5f2e308f308f3892acb46179df4b6bd460b234a416f4414194005cf915ef5b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6c5f2e308f308f3892acb46179df4b6bd460b234a416f4414194005cf915ef5b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A6c5f2e308f308f3892acb46179df4b6bd460b234a416f4414194005cf915ef5b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673635"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:274d4e7ca8dc6003a3d18d931e63a4a0b4d5f80582351fadccef4195de8b847a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:274d4e7ca8dc6003a3d18d931e63a4a0b4d5f80582351fadccef4195de8b847a_ppc64le",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:274d4e7ca8dc6003a3d18d931e63a4a0b4d5f80582351fadccef4195de8b847a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A274d4e7ca8dc6003a3d18d931e63a4a0b4d5f80582351fadccef4195de8b847a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776774927"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ffef56a2b3d651b521f8cfd8024babe6fdd9e8987df4b37fd3d1945d1dff1a64_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ffef56a2b3d651b521f8cfd8024babe6fdd9e8987df4b37fd3d1945d1dff1a64_ppc64le",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ffef56a2b3d651b521f8cfd8024babe6fdd9e8987df4b37fd3d1945d1dff1a64_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3Affef56a2b3d651b521f8cfd8024babe6fdd9e8987df4b37fd3d1945d1dff1a64?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675961"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e84c44ad88440bde18b3f65817a1ffd69ce15d48f8772dd82f5984d68c73928_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e84c44ad88440bde18b3f65817a1ffd69ce15d48f8772dd82f5984d68c73928_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e84c44ad88440bde18b3f65817a1ffd69ce15d48f8772dd82f5984d68c73928_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A5e84c44ad88440bde18b3f65817a1ffd69ce15d48f8772dd82f5984d68c73928?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:97bdb1cc0033381c61bc1c9abeb5f3ecaac1adc70e91b203fbcbfca9a9ae6c39_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:97bdb1cc0033381c61bc1c9abeb5f3ecaac1adc70e91b203fbcbfca9a9ae6c39_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:97bdb1cc0033381c61bc1c9abeb5f3ecaac1adc70e91b203fbcbfca9a9ae6c39_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A97bdb1cc0033381c61bc1c9abeb5f3ecaac1adc70e91b203fbcbfca9a9ae6c39?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673954"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7c98311b8e0f89f03a4250cbcc60ff62ffe65c4ee1bd8c34c31b623442f348e7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7c98311b8e0f89f03a4250cbcc60ff62ffe65c4ee1bd8c34c31b623442f348e7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7c98311b8e0f89f03a4250cbcc60ff62ffe65c4ee1bd8c34c31b623442f348e7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A7c98311b8e0f89f03a4250cbcc60ff62ffe65c4ee1bd8c34c31b623442f348e7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e463a6ace53d6f8eeb652db6a69ecda86245cf3a87cf10ec7735738375d17c9f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e463a6ace53d6f8eeb652db6a69ecda86245cf3a87cf10ec7735738375d17c9f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e463a6ace53d6f8eeb652db6a69ecda86245cf3a87cf10ec7735738375d17c9f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Ae463a6ace53d6f8eeb652db6a69ecda86245cf3a87cf10ec7735738375d17c9f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673168"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4554e982ba99a234ce6c3717e3447b817fc1c35a384e8fae9766dbb4f22b868_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4554e982ba99a234ce6c3717e3447b817fc1c35a384e8fae9766dbb4f22b868_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4554e982ba99a234ce6c3717e3447b817fc1c35a384e8fae9766dbb4f22b868_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3Ac4554e982ba99a234ce6c3717e3447b817fc1c35a384e8fae9766dbb4f22b868?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674222"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ef6ee4f9fb6e0ebeca08a2a2dfd69cc6b5baeb5bdee0b3158f575b14398f3ad4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ef6ee4f9fb6e0ebeca08a2a2dfd69cc6b5baeb5bdee0b3158f575b14398f3ad4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ef6ee4f9fb6e0ebeca08a2a2dfd69cc6b5baeb5bdee0b3158f575b14398f3ad4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Aef6ee4f9fb6e0ebeca08a2a2dfd69cc6b5baeb5bdee0b3158f575b14398f3ad4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:22f52c4591a8ccddda25dc4a1eebcc92010f49832ffc28cf935b0873021b2f96_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:22f52c4591a8ccddda25dc4a1eebcc92010f49832ffc28cf935b0873021b2f96_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:22f52c4591a8ccddda25dc4a1eebcc92010f49832ffc28cf935b0873021b2f96_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A22f52c4591a8ccddda25dc4a1eebcc92010f49832ffc28cf935b0873021b2f96?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673786"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e1caaa1ddc51954943c6b44448ef50d7113fcd1f8aae4a84fcb24749de315e60_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e1caaa1ddc51954943c6b44448ef50d7113fcd1f8aae4a84fcb24749de315e60_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e1caaa1ddc51954943c6b44448ef50d7113fcd1f8aae4a84fcb24749de315e60_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3Ae1caaa1ddc51954943c6b44448ef50d7113fcd1f8aae4a84fcb24749de315e60?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673916"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c11d63f511b868c53303849b22d71273e844679808aaf604c87b373491a99db_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c11d63f511b868c53303849b22d71273e844679808aaf604c87b373491a99db_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c11d63f511b868c53303849b22d71273e844679808aaf604c87b373491a99db_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A7c11d63f511b868c53303849b22d71273e844679808aaf604c87b373491a99db?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674180"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d22fe92972f9d9303f541977a3d753750554e6675545ad7e511b723c3869c4c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d22fe92972f9d9303f541977a3d753750554e6675545ad7e511b723c3869c4c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d22fe92972f9d9303f541977a3d753750554e6675545ad7e511b723c3869c4c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A4d22fe92972f9d9303f541977a3d753750554e6675545ad7e511b723c3869c4c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673155"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:19c6031d8609f10b2b075201c0ccbe6f26e6efd03f567b485b6b327a4f6a7fc5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:19c6031d8609f10b2b075201c0ccbe6f26e6efd03f567b485b6b327a4f6a7fc5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:19c6031d8609f10b2b075201c0ccbe6f26e6efd03f567b485b6b327a4f6a7fc5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A19c6031d8609f10b2b075201c0ccbe6f26e6efd03f567b485b6b327a4f6a7fc5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4cc2ec3ed32c991240703b0a40c6602db1320fdbd328e887b517a11474149030_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4cc2ec3ed32c991240703b0a40c6602db1320fdbd328e887b517a11474149030_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4cc2ec3ed32c991240703b0a40c6602db1320fdbd328e887b517a11474149030_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A4cc2ec3ed32c991240703b0a40c6602db1320fdbd328e887b517a11474149030?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676374"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:039a4cc5025db0cacd9e5dec922d9cd51194cf0ce903904210000245c5e7c048_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:039a4cc5025db0cacd9e5dec922d9cd51194cf0ce903904210000245c5e7c048_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:039a4cc5025db0cacd9e5dec922d9cd51194cf0ce903904210000245c5e7c048_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A039a4cc5025db0cacd9e5dec922d9cd51194cf0ce903904210000245c5e7c048?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c075a7526723ebf1b921ceb895e63a6d5f3df60707afd79c4fcf1c9bb6f33e3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c075a7526723ebf1b921ceb895e63a6d5f3df60707afd79c4fcf1c9bb6f33e3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c075a7526723ebf1b921ceb895e63a6d5f3df60707afd79c4fcf1c9bb6f33e3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A1c075a7526723ebf1b921ceb895e63a6d5f3df60707afd79c4fcf1c9bb6f33e3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ab20bef5ffe91fc06a7dad3508294cfb9a72745da8cc0342e59f515db447e264_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ab20bef5ffe91fc06a7dad3508294cfb9a72745da8cc0342e59f515db447e264_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ab20bef5ffe91fc06a7dad3508294cfb9a72745da8cc0342e59f515db447e264_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3Aab20bef5ffe91fc06a7dad3508294cfb9a72745da8cc0342e59f515db447e264?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6c27e11d2ba7f408c9ca5dc0bd898bf395b3f773931b04c558759493e0aece8f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6c27e11d2ba7f408c9ca5dc0bd898bf395b3f773931b04c558759493e0aece8f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6c27e11d2ba7f408c9ca5dc0bd898bf395b3f773931b04c558759493e0aece8f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A6c27e11d2ba7f408c9ca5dc0bd898bf395b3f773931b04c558759493e0aece8f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673149"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:82b0dd3db731b7a84ac6b7ff11c2407ab0020e30ef04cea06b25a007be5cae31_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:82b0dd3db731b7a84ac6b7ff11c2407ab0020e30ef04cea06b25a007be5cae31_ppc64le",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:82b0dd3db731b7a84ac6b7ff11c2407ab0020e30ef04cea06b25a007be5cae31_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A82b0dd3db731b7a84ac6b7ff11c2407ab0020e30ef04cea06b25a007be5cae31?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675952"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66d6f7a10465049938e81ddc1e4c13b2b375b2c92b39af99b2c7fb8bfe2d5e3c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66d6f7a10465049938e81ddc1e4c13b2b375b2c92b39af99b2c7fb8bfe2d5e3c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66d6f7a10465049938e81ddc1e4c13b2b375b2c92b39af99b2c7fb8bfe2d5e3c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A66d6f7a10465049938e81ddc1e4c13b2b375b2c92b39af99b2c7fb8bfe2d5e3c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:d61549e87a7d32c426699db0e1e7f716a575427c65493f9af953a74581ce41f3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:d61549e87a7d32c426699db0e1e7f716a575427c65493f9af953a74581ce41f3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:d61549e87a7d32c426699db0e1e7f716a575427c65493f9af953a74581ce41f3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3Ad61549e87a7d32c426699db0e1e7f716a575427c65493f9af953a74581ce41f3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673507"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:2dc26c9c7dd35b78f4ed2c520337631bc45fb10076d94e52d9a632dd66982765_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:2dc26c9c7dd35b78f4ed2c520337631bc45fb10076d94e52d9a632dd66982765_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:2dc26c9c7dd35b78f4ed2c520337631bc45fb10076d94e52d9a632dd66982765_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A2dc26c9c7dd35b78f4ed2c520337631bc45fb10076d94e52d9a632dd66982765?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7099a6800e9cd28758ace736f2c602a223f61dc00fd45def548e6d9a4bd23539_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7099a6800e9cd28758ace736f2c602a223f61dc00fd45def548e6d9a4bd23539_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7099a6800e9cd28758ace736f2c602a223f61dc00fd45def548e6d9a4bd23539_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A7099a6800e9cd28758ace736f2c602a223f61dc00fd45def548e6d9a4bd23539?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673160"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26fc6ee878e8b9b76a61d203bfd0e01a61175ae9d6e350b4c8a01afc8e388080_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26fc6ee878e8b9b76a61d203bfd0e01a61175ae9d6e350b4c8a01afc8e388080_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26fc6ee878e8b9b76a61d203bfd0e01a61175ae9d6e350b4c8a01afc8e388080_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A26fc6ee878e8b9b76a61d203bfd0e01a61175ae9d6e350b4c8a01afc8e388080?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676307"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4b2274d948f48f8cc0df96f3bccd2d610034ac4495c977bdda82c440b65092c6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4b2274d948f48f8cc0df96f3bccd2d610034ac4495c977bdda82c440b65092c6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4b2274d948f48f8cc0df96f3bccd2d610034ac4495c977bdda82c440b65092c6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A4b2274d948f48f8cc0df96f3bccd2d610034ac4495c977bdda82c440b65092c6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8a9fc2fc1351bcf4a939eb506e5ac91788d65c5f1826c46d3b41e15e8ac7b3ab_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8a9fc2fc1351bcf4a939eb506e5ac91788d65c5f1826c46d3b41e15e8ac7b3ab_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8a9fc2fc1351bcf4a939eb506e5ac91788d65c5f1826c46d3b41e15e8ac7b3ab_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A8a9fc2fc1351bcf4a939eb506e5ac91788d65c5f1826c46d3b41e15e8ac7b3ab?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675807"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5afc27dc982aa722303ec6aa2b10cf727f2d1b409a5a77e0f599569559275b76_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5afc27dc982aa722303ec6aa2b10cf727f2d1b409a5a77e0f599569559275b76_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5afc27dc982aa722303ec6aa2b10cf727f2d1b409a5a77e0f599569559275b76_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A5afc27dc982aa722303ec6aa2b10cf727f2d1b409a5a77e0f599569559275b76?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675019"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:220e8b87b16dc9219b324fe7b97208869a17d1039e620bc91cdb5aec19d4a0c2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:220e8b87b16dc9219b324fe7b97208869a17d1039e620bc91cdb5aec19d4a0c2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:220e8b87b16dc9219b324fe7b97208869a17d1039e620bc91cdb5aec19d4a0c2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A220e8b87b16dc9219b324fe7b97208869a17d1039e620bc91cdb5aec19d4a0c2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673538"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:cc987d4c88966417b6c45bc66dd878cd885b4805c9e2885fcbaca1734e7bbcb3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:cc987d4c88966417b6c45bc66dd878cd885b4805c9e2885fcbaca1734e7bbcb3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:cc987d4c88966417b6c45bc66dd878cd885b4805c9e2885fcbaca1734e7bbcb3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3Acc987d4c88966417b6c45bc66dd878cd885b4805c9e2885fcbaca1734e7bbcb3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675111"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ec31e82b039af04deb6b8f9c13810a61281a3cedd616aaeb03315bd3abdb2d6d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ec31e82b039af04deb6b8f9c13810a61281a3cedd616aaeb03315bd3abdb2d6d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ec31e82b039af04deb6b8f9c13810a61281a3cedd616aaeb03315bd3abdb2d6d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3Aec31e82b039af04deb6b8f9c13810a61281a3cedd616aaeb03315bd3abdb2d6d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683987"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6c68854cff5a2b94527d6230740551ccc74d1161e7a1bd82d8119065e9e764d3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6c68854cff5a2b94527d6230740551ccc74d1161e7a1bd82d8119065e9e764d3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6c68854cff5a2b94527d6230740551ccc74d1161e7a1bd82d8119065e9e764d3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A6c68854cff5a2b94527d6230740551ccc74d1161e7a1bd82d8119065e9e764d3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675815"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7e13f7a4f2a67e74b36e39b5e582b54a8979c270158789c658974993ad351262_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7e13f7a4f2a67e74b36e39b5e582b54a8979c270158789c658974993ad351262_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7e13f7a4f2a67e74b36e39b5e582b54a8979c270158789c658974993ad351262_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A7e13f7a4f2a67e74b36e39b5e582b54a8979c270158789c658974993ad351262?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676032"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:11c374a767b0cdcb1eee64e69900ca970dbd67f814a76ce9648f578862db2dfd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:11c374a767b0cdcb1eee64e69900ca970dbd67f814a76ce9648f578862db2dfd_ppc64le",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:11c374a767b0cdcb1eee64e69900ca970dbd67f814a76ce9648f578862db2dfd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3A11c374a767b0cdcb1eee64e69900ca970dbd67f814a76ce9648f578862db2dfd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674283"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:8872db8f65a31459cc63eaec8f03d40ff2b21e95871e59e3bff97b6b0bc9b9d9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:8872db8f65a31459cc63eaec8f03d40ff2b21e95871e59e3bff97b6b0bc9b9d9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:8872db8f65a31459cc63eaec8f03d40ff2b21e95871e59e3bff97b6b0bc9b9d9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A8872db8f65a31459cc63eaec8f03d40ff2b21e95871e59e3bff97b6b0bc9b9d9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2a82548bcb003f718c669be20b0abf13183fccb5d7d4e34a17e9be6ee08dc2cc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2a82548bcb003f718c669be20b0abf13183fccb5d7d4e34a17e9be6ee08dc2cc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2a82548bcb003f718c669be20b0abf13183fccb5d7d4e34a17e9be6ee08dc2cc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A2a82548bcb003f718c669be20b0abf13183fccb5d7d4e34a17e9be6ee08dc2cc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675892"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:2eee252e29fc035c3d8b5b91ea2e08a63d96b9f11c6d29961cb738cf1ca73d19_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:2eee252e29fc035c3d8b5b91ea2e08a63d96b9f11c6d29961cb738cf1ca73d19_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:2eee252e29fc035c3d8b5b91ea2e08a63d96b9f11c6d29961cb738cf1ca73d19_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A2eee252e29fc035c3d8b5b91ea2e08a63d96b9f11c6d29961cb738cf1ca73d19?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673632"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ed2a405c06a57740f0f44a8c3cd9b7e3aedd0bfa372d85e06852082f4ce87ae0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ed2a405c06a57740f0f44a8c3cd9b7e3aedd0bfa372d85e06852082f4ce87ae0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ed2a405c06a57740f0f44a8c3cd9b7e3aedd0bfa372d85e06852082f4ce87ae0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3Aed2a405c06a57740f0f44a8c3cd9b7e3aedd0bfa372d85e06852082f4ce87ae0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4c49749a0ead346171f842c37c832cb6c2457f6812fb487728d561aa85d262e9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4c49749a0ead346171f842c37c832cb6c2457f6812fb487728d561aa85d262e9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4c49749a0ead346171f842c37c832cb6c2457f6812fb487728d561aa85d262e9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A4c49749a0ead346171f842c37c832cb6c2457f6812fb487728d561aa85d262e9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674025"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f12bc532130dc5fa8c8392d3885bde80ca93ba9700844bf9fe54f4878ac53f46_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f12bc532130dc5fa8c8392d3885bde80ca93ba9700844bf9fe54f4878ac53f46_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f12bc532130dc5fa8c8392d3885bde80ca93ba9700844bf9fe54f4878ac53f46_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3Af12bc532130dc5fa8c8392d3885bde80ca93ba9700844bf9fe54f4878ac53f46?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676059"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:97598836bf560759a9ff39d9675e5c7f18a03e14500982e442ea93514cbf3677_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:97598836bf560759a9ff39d9675e5c7f18a03e14500982e442ea93514cbf3677_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:97598836bf560759a9ff39d9675e5c7f18a03e14500982e442ea93514cbf3677_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A97598836bf560759a9ff39d9675e5c7f18a03e14500982e442ea93514cbf3677?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675556"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:671d23e3d686856a4d47efc6c410ace8deffff06134c979c042fde8e9de487a5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:671d23e3d686856a4d47efc6c410ace8deffff06134c979c042fde8e9de487a5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:671d23e3d686856a4d47efc6c410ace8deffff06134c979c042fde8e9de487a5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A671d23e3d686856a4d47efc6c410ace8deffff06134c979c042fde8e9de487a5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676287"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5f3011e69a519014b7801d2acf0897f95635dbe17492a09216673ebd4a1c791b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5f3011e69a519014b7801d2acf0897f95635dbe17492a09216673ebd4a1c791b_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5f3011e69a519014b7801d2acf0897f95635dbe17492a09216673ebd4a1c791b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A5f3011e69a519014b7801d2acf0897f95635dbe17492a09216673ebd4a1c791b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674666"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:22eb07d776eed9b364e0f8843dd2eed75c4295cd9c5d3567cb76b5e5ce20b725_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:22eb07d776eed9b364e0f8843dd2eed75c4295cd9c5d3567cb76b5e5ce20b725_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:22eb07d776eed9b364e0f8843dd2eed75c4295cd9c5d3567cb76b5e5ce20b725_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A22eb07d776eed9b364e0f8843dd2eed75c4295cd9c5d3567cb76b5e5ce20b725?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674064"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d1772e78e5b5aed465c12a05548f9eff106f7a1e00d3d913830f8dee427fa4c0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d1772e78e5b5aed465c12a05548f9eff106f7a1e00d3d913830f8dee427fa4c0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d1772e78e5b5aed465c12a05548f9eff106f7a1e00d3d913830f8dee427fa4c0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3Ad1772e78e5b5aed465c12a05548f9eff106f7a1e00d3d913830f8dee427fa4c0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776684174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bc7f21410949e77fe85c5a7330548b893706c2471d7d4e8d5c6c26a873132263_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bc7f21410949e77fe85c5a7330548b893706c2471d7d4e8d5c6c26a873132263_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bc7f21410949e77fe85c5a7330548b893706c2471d7d4e8d5c6c26a873132263_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3Abc7f21410949e77fe85c5a7330548b893706c2471d7d4e8d5c6c26a873132263?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673140"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:950bee80200f2d9bdcb3f07446eb6aaebe4b31642990272178441b6f9e56a761_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:950bee80200f2d9bdcb3f07446eb6aaebe4b31642990272178441b6f9e56a761_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:950bee80200f2d9bdcb3f07446eb6aaebe4b31642990272178441b6f9e56a761_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A950bee80200f2d9bdcb3f07446eb6aaebe4b31642990272178441b6f9e56a761?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:86961033ea238cdf3d061f8aa811f4559001c4e047e98165b00a8f9018b74c2e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:86961033ea238cdf3d061f8aa811f4559001c4e047e98165b00a8f9018b74c2e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:86961033ea238cdf3d061f8aa811f4559001c4e047e98165b00a8f9018b74c2e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A86961033ea238cdf3d061f8aa811f4559001c4e047e98165b00a8f9018b74c2e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d052315ad81d7689a02be445c9a1df8d296fc3c32a33e3975dcc4297fffa2bfa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d052315ad81d7689a02be445c9a1df8d296fc3c32a33e3975dcc4297fffa2bfa_ppc64le",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d052315ad81d7689a02be445c9a1df8d296fc3c32a33e3975dcc4297fffa2bfa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3Ad052315ad81d7689a02be445c9a1df8d296fc3c32a33e3975dcc4297fffa2bfa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675602"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4056b49b2c42986f94456c5c3a5df02d04f8a08fc4cba8b957c040e4590fe581_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4056b49b2c42986f94456c5c3a5df02d04f8a08fc4cba8b957c040e4590fe581_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4056b49b2c42986f94456c5c3a5df02d04f8a08fc4cba8b957c040e4590fe581_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A4056b49b2c42986f94456c5c3a5df02d04f8a08fc4cba8b957c040e4590fe581?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ca86e79869a7ab48486107e3637aa3953201ea36b6b8559ae8b2a04041606c8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ca86e79869a7ab48486107e3637aa3953201ea36b6b8559ae8b2a04041606c8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ca86e79869a7ab48486107e3637aa3953201ea36b6b8559ae8b2a04041606c8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A5ca86e79869a7ab48486107e3637aa3953201ea36b6b8559ae8b2a04041606c8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:917aade90b9dbdb7c59ac5c85dff49ec74b29a27aa330352c24680a6987a9a7f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:917aade90b9dbdb7c59ac5c85dff49ec74b29a27aa330352c24680a6987a9a7f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:917aade90b9dbdb7c59ac5c85dff49ec74b29a27aa330352c24680a6987a9a7f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A917aade90b9dbdb7c59ac5c85dff49ec74b29a27aa330352c24680a6987a9a7f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674368"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6301be72ffce6f973f70fc6977632499d2930cfcf23ef6e477af59f3b283e3e2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6301be72ffce6f973f70fc6977632499d2930cfcf23ef6e477af59f3b283e3e2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6301be72ffce6f973f70fc6977632499d2930cfcf23ef6e477af59f3b283e3e2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A6301be72ffce6f973f70fc6977632499d2930cfcf23ef6e477af59f3b283e3e2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674066"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2bc4240c6a9f5abe64db9b36884b14d0a763e93a6474096e23a353cab562c400_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2bc4240c6a9f5abe64db9b36884b14d0a763e93a6474096e23a353cab562c400_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2bc4240c6a9f5abe64db9b36884b14d0a763e93a6474096e23a353cab562c400_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A2bc4240c6a9f5abe64db9b36884b14d0a763e93a6474096e23a353cab562c400?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673138"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67182434ce84ce97c5374f5ab962a79f67777bf02f82ae92be8f7eb5d0c2b85a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67182434ce84ce97c5374f5ab962a79f67777bf02f82ae92be8f7eb5d0c2b85a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67182434ce84ce97c5374f5ab962a79f67777bf02f82ae92be8f7eb5d0c2b85a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A67182434ce84ce97c5374f5ab962a79f67777bf02f82ae92be8f7eb5d0c2b85a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674388"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89802f2938cd3444ab90393b1046d61cbd3d05280432ea2390732a0d0520990d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89802f2938cd3444ab90393b1046d61cbd3d05280432ea2390732a0d0520990d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89802f2938cd3444ab90393b1046d61cbd3d05280432ea2390732a0d0520990d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A89802f2938cd3444ab90393b1046d61cbd3d05280432ea2390732a0d0520990d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674121"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6b167e1a3755b0a2362ec86878e5614ee29226fcc956b2e193666a7bfc47d44b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6b167e1a3755b0a2362ec86878e5614ee29226fcc956b2e193666a7bfc47d44b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6b167e1a3755b0a2362ec86878e5614ee29226fcc956b2e193666a7bfc47d44b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A6b167e1a3755b0a2362ec86878e5614ee29226fcc956b2e193666a7bfc47d44b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675984"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e8d8d468ce7f75b0653d4b3e41dc63bc2fd7e231d32bd2296d08155eb258349e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e8d8d468ce7f75b0653d4b3e41dc63bc2fd7e231d32bd2296d08155eb258349e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e8d8d468ce7f75b0653d4b3e41dc63bc2fd7e231d32bd2296d08155eb258349e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3Ae8d8d468ce7f75b0653d4b3e41dc63bc2fd7e231d32bd2296d08155eb258349e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675859"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e9101408b3219a72c3e43b88129a6bc6918df42b116ad18efce8c7a1b32e50bc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e9101408b3219a72c3e43b88129a6bc6918df42b116ad18efce8c7a1b32e50bc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e9101408b3219a72c3e43b88129a6bc6918df42b116ad18efce8c7a1b32e50bc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Ae9101408b3219a72c3e43b88129a6bc6918df42b116ad18efce8c7a1b32e50bc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6afb37d303abf20e6e100a4e472d782d6bf063ae6d131852a4ef9cdac53f7dd6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6afb37d303abf20e6e100a4e472d782d6bf063ae6d131852a4ef9cdac53f7dd6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6afb37d303abf20e6e100a4e472d782d6bf063ae6d131852a4ef9cdac53f7dd6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A6afb37d303abf20e6e100a4e472d782d6bf063ae6d131852a4ef9cdac53f7dd6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674233"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c8322ff72825fe9dcc1c4446c8c3e4dd73619c15542d7f483642789e0463fee4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c8322ff72825fe9dcc1c4446c8c3e4dd73619c15542d7f483642789e0463fee4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c8322ff72825fe9dcc1c4446c8c3e4dd73619c15542d7f483642789e0463fee4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3Ac8322ff72825fe9dcc1c4446c8c3e4dd73619c15542d7f483642789e0463fee4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7077e9ed025326ff3ebc0277b0d716efd46bfcff079442d777dd572c35842ba9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7077e9ed025326ff3ebc0277b0d716efd46bfcff079442d777dd572c35842ba9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7077e9ed025326ff3ebc0277b0d716efd46bfcff079442d777dd572c35842ba9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A7077e9ed025326ff3ebc0277b0d716efd46bfcff079442d777dd572c35842ba9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cadf5ebac4b179bbc456ebc6743a061cb44437675a0b69f825670a753ff3fb0d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cadf5ebac4b179bbc456ebc6743a061cb44437675a0b69f825670a753ff3fb0d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cadf5ebac4b179bbc456ebc6743a061cb44437675a0b69f825670a753ff3fb0d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Acadf5ebac4b179bbc456ebc6743a061cb44437675a0b69f825670a753ff3fb0d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676163"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9bec401a9b520ec096af6673657d6265501df64d94da332e818eaab70ce54722_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9bec401a9b520ec096af6673657d6265501df64d94da332e818eaab70ce54722_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9bec401a9b520ec096af6673657d6265501df64d94da332e818eaab70ce54722_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A9bec401a9b520ec096af6673657d6265501df64d94da332e818eaab70ce54722?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675744"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:78baab63d2e3ad8f17734423f5b10cd137d944af647104bd40401f433a9ea996_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:78baab63d2e3ad8f17734423f5b10cd137d944af647104bd40401f433a9ea996_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:78baab63d2e3ad8f17734423f5b10cd137d944af647104bd40401f433a9ea996_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A78baab63d2e3ad8f17734423f5b10cd137d944af647104bd40401f433a9ea996?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675070"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:125008a0bd8a64e396b32583f34c77e15e45e212e7e623ca20f418bd89cb618d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:125008a0bd8a64e396b32583f34c77e15e45e212e7e623ca20f418bd89cb618d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:125008a0bd8a64e396b32583f34c77e15e45e212e7e623ca20f418bd89cb618d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A125008a0bd8a64e396b32583f34c77e15e45e212e7e623ca20f418bd89cb618d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675846"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9f0fa62bbcb4f5b18ee1ab7831d634e2faf5e945e94fcc61a204d7a4a5d39d24_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9f0fa62bbcb4f5b18ee1ab7831d634e2faf5e945e94fcc61a204d7a4a5d39d24_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9f0fa62bbcb4f5b18ee1ab7831d634e2faf5e945e94fcc61a204d7a4a5d39d24_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A9f0fa62bbcb4f5b18ee1ab7831d634e2faf5e945e94fcc61a204d7a4a5d39d24?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676044"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:21000531fed1065562e8e0d275bcf48eaaad2d35f54e81e13a03e9dbe22fce2e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:21000531fed1065562e8e0d275bcf48eaaad2d35f54e81e13a03e9dbe22fce2e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:21000531fed1065562e8e0d275bcf48eaaad2d35f54e81e13a03e9dbe22fce2e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A21000531fed1065562e8e0d275bcf48eaaad2d35f54e81e13a03e9dbe22fce2e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673522"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2bfbea264fdf5062c9454ad7efeeb799d1568071ebac6195c8138c171dacde67_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2bfbea264fdf5062c9454ad7efeeb799d1568071ebac6195c8138c171dacde67_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2bfbea264fdf5062c9454ad7efeeb799d1568071ebac6195c8138c171dacde67_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A2bfbea264fdf5062c9454ad7efeeb799d1568071ebac6195c8138c171dacde67?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676017"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:11d975797a78fdaca7e28cc15699aaee700b3ac8185bd5d019ecc2a51980ef10_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:11d975797a78fdaca7e28cc15699aaee700b3ac8185bd5d019ecc2a51980ef10_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:11d975797a78fdaca7e28cc15699aaee700b3ac8185bd5d019ecc2a51980ef10_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A11d975797a78fdaca7e28cc15699aaee700b3ac8185bd5d019ecc2a51980ef10?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:666c36444702f862ad1df16b8dc76f3a8f7b4eba8d63473a4cacfcd34c7ca914_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:666c36444702f862ad1df16b8dc76f3a8f7b4eba8d63473a4cacfcd34c7ca914_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:666c36444702f862ad1df16b8dc76f3a8f7b4eba8d63473a4cacfcd34c7ca914_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A666c36444702f862ad1df16b8dc76f3a8f7b4eba8d63473a4cacfcd34c7ca914?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac846a2c18b90026c941cc2fcd91197ca909f985f0cfc14e91fa8c0cf2b10b5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac846a2c18b90026c941cc2fcd91197ca909f985f0cfc14e91fa8c0cf2b10b5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac846a2c18b90026c941cc2fcd91197ca909f985f0cfc14e91fa8c0cf2b10b5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A6ac846a2c18b90026c941cc2fcd91197ca909f985f0cfc14e91fa8c0cf2b10b5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676139"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2fa632f63034c5e2ba411ecd6a6655da1f1b5cd65e05dd1c2063893c77fdfb9f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2fa632f63034c5e2ba411ecd6a6655da1f1b5cd65e05dd1c2063893c77fdfb9f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2fa632f63034c5e2ba411ecd6a6655da1f1b5cd65e05dd1c2063893c77fdfb9f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A2fa632f63034c5e2ba411ecd6a6655da1f1b5cd65e05dd1c2063893c77fdfb9f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9a12ba31f5a9e9e4b8114ed30bf9a067cd5b92430c35905224899a819c627741_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9a12ba31f5a9e9e4b8114ed30bf9a067cd5b92430c35905224899a819c627741_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9a12ba31f5a9e9e4b8114ed30bf9a067cd5b92430c35905224899a819c627741_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A9a12ba31f5a9e9e4b8114ed30bf9a067cd5b92430c35905224899a819c627741?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676057"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8c019754ed9656d55c293ce39412f910b0f3ac833615aaa03e961183c4831fd3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8c019754ed9656d55c293ce39412f910b0f3ac833615aaa03e961183c4831fd3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8c019754ed9656d55c293ce39412f910b0f3ac833615aaa03e961183c4831fd3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A8c019754ed9656d55c293ce39412f910b0f3ac833615aaa03e961183c4831fd3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4393f322b7404940430e70469c0ede12e724564e87c3359946e349cea2304a11_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4393f322b7404940430e70469c0ede12e724564e87c3359946e349cea2304a11_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4393f322b7404940430e70469c0ede12e724564e87c3359946e349cea2304a11_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A4393f322b7404940430e70469c0ede12e724564e87c3359946e349cea2304a11?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674415"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:77dfdc4b6e35954e750b90627d720a0f7a3cb6fe224459c09f5de359c589f939_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:77dfdc4b6e35954e750b90627d720a0f7a3cb6fe224459c09f5de359c589f939_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:77dfdc4b6e35954e750b90627d720a0f7a3cb6fe224459c09f5de359c589f939_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A77dfdc4b6e35954e750b90627d720a0f7a3cb6fe224459c09f5de359c589f939?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673178"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e294500f174a12001306f888e6bdf9e10d3d30bf8554bccd5c82f1227de196b0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e294500f174a12001306f888e6bdf9e10d3d30bf8554bccd5c82f1227de196b0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e294500f174a12001306f888e6bdf9e10d3d30bf8554bccd5c82f1227de196b0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3Ae294500f174a12001306f888e6bdf9e10d3d30bf8554bccd5c82f1227de196b0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f0b3d8e6b527fee7bb63906136288b117ae31a38ad93aef266b7e0d84dff4f5a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f0b3d8e6b527fee7bb63906136288b117ae31a38ad93aef266b7e0d84dff4f5a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f0b3d8e6b527fee7bb63906136288b117ae31a38ad93aef266b7e0d84dff4f5a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3Af0b3d8e6b527fee7bb63906136288b117ae31a38ad93aef266b7e0d84dff4f5a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f1a5782a8202fa153b78b53324954109911991dffa9d7997229da1c6ceff7d45_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f1a5782a8202fa153b78b53324954109911991dffa9d7997229da1c6ceff7d45_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f1a5782a8202fa153b78b53324954109911991dffa9d7997229da1c6ceff7d45_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3Af1a5782a8202fa153b78b53324954109911991dffa9d7997229da1c6ceff7d45?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:d66f70ef41f4cb5cabd1e1c36cf32923cd0f228687925ef8c1b08348dff12ea7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:d66f70ef41f4cb5cabd1e1c36cf32923cd0f228687925ef8c1b08348dff12ea7_ppc64le",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:d66f70ef41f4cb5cabd1e1c36cf32923cd0f228687925ef8c1b08348dff12ea7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Ad66f70ef41f4cb5cabd1e1c36cf32923cd0f228687925ef8c1b08348dff12ea7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673943"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:17bcf0374c1cdded8c518835d832bac6b8ca75e05efeb0a6528e0ee49643bb35_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:17bcf0374c1cdded8c518835d832bac6b8ca75e05efeb0a6528e0ee49643bb35_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:17bcf0374c1cdded8c518835d832bac6b8ca75e05efeb0a6528e0ee49643bb35_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A17bcf0374c1cdded8c518835d832bac6b8ca75e05efeb0a6528e0ee49643bb35?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673966"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1f93b71bd8b9bd62776c67cd5c41b93f94b4b60b58a06625e7d57548518f3669_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1f93b71bd8b9bd62776c67cd5c41b93f94b4b60b58a06625e7d57548518f3669_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1f93b71bd8b9bd62776c67cd5c41b93f94b4b60b58a06625e7d57548518f3669_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A1f93b71bd8b9bd62776c67cd5c41b93f94b4b60b58a06625e7d57548518f3669?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:96069c3067b68f1e2942d7758c89426eefd21722db2d0b08ff5f1db39f2b12aa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:96069c3067b68f1e2942d7758c89426eefd21722db2d0b08ff5f1db39f2b12aa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:96069c3067b68f1e2942d7758c89426eefd21722db2d0b08ff5f1db39f2b12aa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A96069c3067b68f1e2942d7758c89426eefd21722db2d0b08ff5f1db39f2b12aa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673970"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d6f6a6f074d7794ed9d7015ea7937582f0ad1d07b35d983dfc07236fa3323bde_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d6f6a6f074d7794ed9d7015ea7937582f0ad1d07b35d983dfc07236fa3323bde_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d6f6a6f074d7794ed9d7015ea7937582f0ad1d07b35d983dfc07236fa3323bde_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3Ad6f6a6f074d7794ed9d7015ea7937582f0ad1d07b35d983dfc07236fa3323bde?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673289"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0650df0f1f51958baf5fecd36385b4ad6afdccfc77ff0bdb90fb140a7e6a72af_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0650df0f1f51958baf5fecd36385b4ad6afdccfc77ff0bdb90fb140a7e6a72af_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0650df0f1f51958baf5fecd36385b4ad6afdccfc77ff0bdb90fb140a7e6a72af_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A0650df0f1f51958baf5fecd36385b4ad6afdccfc77ff0bdb90fb140a7e6a72af?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:587f806a8e6500d4dcced927409c0b582a658fee0f51c31c79736f8c31c3dea7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:587f806a8e6500d4dcced927409c0b582a658fee0f51c31c79736f8c31c3dea7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:587f806a8e6500d4dcced927409c0b582a658fee0f51c31c79736f8c31c3dea7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A587f806a8e6500d4dcced927409c0b582a658fee0f51c31c79736f8c31c3dea7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673171"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53c8d86e293208c966c8e7e4fd3435c9d8806e97ebb31c3e963f26456fc38600_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53c8d86e293208c966c8e7e4fd3435c9d8806e97ebb31c3e963f26456fc38600_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53c8d86e293208c966c8e7e4fd3435c9d8806e97ebb31c3e963f26456fc38600_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A53c8d86e293208c966c8e7e4fd3435c9d8806e97ebb31c3e963f26456fc38600?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675521"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:d2acb9e2a03e0c2873f562605b1e9c9d32215d1d9d265ce18bd262c7c4263f20_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:d2acb9e2a03e0c2873f562605b1e9c9d32215d1d9d265ce18bd262c7c4263f20_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:d2acb9e2a03e0c2873f562605b1e9c9d32215d1d9d265ce18bd262c7c4263f20_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3Ad2acb9e2a03e0c2873f562605b1e9c9d32215d1d9d265ce18bd262c7c4263f20?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675128"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:51a465dd014fe567fc52613a127c932e386d2a6e5f1faf4fe1cbb1e6becf7e4a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:51a465dd014fe567fc52613a127c932e386d2a6e5f1faf4fe1cbb1e6becf7e4a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:51a465dd014fe567fc52613a127c932e386d2a6e5f1faf4fe1cbb1e6becf7e4a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A51a465dd014fe567fc52613a127c932e386d2a6e5f1faf4fe1cbb1e6becf7e4a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776684050"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:791d876a5d256f592916c167dc0919fd16e1251317356838146a5fde8fd8a6e1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:791d876a5d256f592916c167dc0919fd16e1251317356838146a5fde8fd8a6e1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:791d876a5d256f592916c167dc0919fd16e1251317356838146a5fde8fd8a6e1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A791d876a5d256f592916c167dc0919fd16e1251317356838146a5fde8fd8a6e1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776684155"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:9ee41a2f3a833a077416d0bdd181d767145830fde45cc6fa5c31196ef749b1e4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:9ee41a2f3a833a077416d0bdd181d767145830fde45cc6fa5c31196ef749b1e4_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:9ee41a2f3a833a077416d0bdd181d767145830fde45cc6fa5c31196ef749b1e4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A9ee41a2f3a833a077416d0bdd181d767145830fde45cc6fa5c31196ef749b1e4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673386"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:043460ad9ec9a4b05671ebfac16b6b2eeb39e3ebe5f43e3867f3767b7b2f993d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:043460ad9ec9a4b05671ebfac16b6b2eeb39e3ebe5f43e3867f3767b7b2f993d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:043460ad9ec9a4b05671ebfac16b6b2eeb39e3ebe5f43e3867f3767b7b2f993d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A043460ad9ec9a4b05671ebfac16b6b2eeb39e3ebe5f43e3867f3767b7b2f993d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675919"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6bb49580fa2f15130fd93f51e34f31f963a4c9b8b9cd898ed573ba88ea24a60d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6bb49580fa2f15130fd93f51e34f31f963a4c9b8b9cd898ed573ba88ea24a60d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6bb49580fa2f15130fd93f51e34f31f963a4c9b8b9cd898ed573ba88ea24a60d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A6bb49580fa2f15130fd93f51e34f31f963a4c9b8b9cd898ed573ba88ea24a60d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674229"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:054e6260810a05bbcb889e80cf6a4f3668409bcfaf6302148c1230b443fcd8a9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:054e6260810a05bbcb889e80cf6a4f3668409bcfaf6302148c1230b443fcd8a9_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:054e6260810a05bbcb889e80cf6a4f3668409bcfaf6302148c1230b443fcd8a9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A054e6260810a05bbcb889e80cf6a4f3668409bcfaf6302148c1230b443fcd8a9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675595"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a251f2b5d7f716fecb5119acdbbfdbb9b535f2c6d8fd51ee0c57cef72cfa1964_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a251f2b5d7f716fecb5119acdbbfdbb9b535f2c6d8fd51ee0c57cef72cfa1964_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a251f2b5d7f716fecb5119acdbbfdbb9b535f2c6d8fd51ee0c57cef72cfa1964_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3Aa251f2b5d7f716fecb5119acdbbfdbb9b535f2c6d8fd51ee0c57cef72cfa1964?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675826"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3778fc40b92ab82012aacfa7589247e6ff79edb9aa918caf6ba6c5fa3159ae61_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3778fc40b92ab82012aacfa7589247e6ff79edb9aa918caf6ba6c5fa3159ae61_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3778fc40b92ab82012aacfa7589247e6ff79edb9aa918caf6ba6c5fa3159ae61_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A3778fc40b92ab82012aacfa7589247e6ff79edb9aa918caf6ba6c5fa3159ae61?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:05fb046ec30c464d04a70831316de4af2c29a226be1e7f73036c90899e6bd193_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:05fb046ec30c464d04a70831316de4af2c29a226be1e7f73036c90899e6bd193_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:05fb046ec30c464d04a70831316de4af2c29a226be1e7f73036c90899e6bd193_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A05fb046ec30c464d04a70831316de4af2c29a226be1e7f73036c90899e6bd193?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673989"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:721aa2904e0c2d5c4d0e3134fb695b6613e74809e0faf3faa949c93b68ed168f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:721aa2904e0c2d5c4d0e3134fb695b6613e74809e0faf3faa949c93b68ed168f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:721aa2904e0c2d5c4d0e3134fb695b6613e74809e0faf3faa949c93b68ed168f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A721aa2904e0c2d5c4d0e3134fb695b6613e74809e0faf3faa949c93b68ed168f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675038"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0e2cca7da188aebd3f4445715b88a3f4727456cdfee2147e7521059722162fa2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0e2cca7da188aebd3f4445715b88a3f4727456cdfee2147e7521059722162fa2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0e2cca7da188aebd3f4445715b88a3f4727456cdfee2147e7521059722162fa2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A0e2cca7da188aebd3f4445715b88a3f4727456cdfee2147e7521059722162fa2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dfcef3e2b6dfabf0abd72dd9743c91ca4c5c4bbe5bfe7488c2a85c2cbf467661_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dfcef3e2b6dfabf0abd72dd9743c91ca4c5c4bbe5bfe7488c2a85c2cbf467661_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dfcef3e2b6dfabf0abd72dd9743c91ca4c5c4bbe5bfe7488c2a85c2cbf467661_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3Adfcef3e2b6dfabf0abd72dd9743c91ca4c5c4bbe5bfe7488c2a85c2cbf467661?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776692789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e7184c5af00f0dc4551f17ef5539952c25c37aa32d596514e463464c92ad146c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e7184c5af00f0dc4551f17ef5539952c25c37aa32d596514e463464c92ad146c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e7184c5af00f0dc4551f17ef5539952c25c37aa32d596514e463464c92ad146c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3Ae7184c5af00f0dc4551f17ef5539952c25c37aa32d596514e463464c92ad146c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673130"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1e05df129e355b9a76f8bbb8aa65e9b4263fb9e888639fd2fb61f79d6d212c04_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1e05df129e355b9a76f8bbb8aa65e9b4263fb9e888639fd2fb61f79d6d212c04_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1e05df129e355b9a76f8bbb8aa65e9b4263fb9e888639fd2fb61f79d6d212c04_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A1e05df129e355b9a76f8bbb8aa65e9b4263fb9e888639fd2fb61f79d6d212c04?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674195"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3fbc6e29fc388b15dc77aa93d2623ba9a23db114399f3b07da429707a03eb8fa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3fbc6e29fc388b15dc77aa93d2623ba9a23db114399f3b07da429707a03eb8fa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3fbc6e29fc388b15dc77aa93d2623ba9a23db114399f3b07da429707a03eb8fa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A3fbc6e29fc388b15dc77aa93d2623ba9a23db114399f3b07da429707a03eb8fa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5e919ab71bf57a160c89b6e5964525a708a10c7cfdd87aaf911e57e6353daf23_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5e919ab71bf57a160c89b6e5964525a708a10c7cfdd87aaf911e57e6353daf23_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5e919ab71bf57a160c89b6e5964525a708a10c7cfdd87aaf911e57e6353daf23_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A5e919ab71bf57a160c89b6e5964525a708a10c7cfdd87aaf911e57e6353daf23?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674514"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7439625194105ec8e55d4f7b3acd13a5f2ca70da75f9c82cad5f5693b604bf28_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7439625194105ec8e55d4f7b3acd13a5f2ca70da75f9c82cad5f5693b604bf28_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7439625194105ec8e55d4f7b3acd13a5f2ca70da75f9c82cad5f5693b604bf28_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A7439625194105ec8e55d4f7b3acd13a5f2ca70da75f9c82cad5f5693b604bf28?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674074"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:37fa7e2453893831aa0ea8bfe068e692ca4f1ffd6f69afca37a6a4e7ad401c49_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:37fa7e2453893831aa0ea8bfe068e692ca4f1ffd6f69afca37a6a4e7ad401c49_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:37fa7e2453893831aa0ea8bfe068e692ca4f1ffd6f69afca37a6a4e7ad401c49_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A37fa7e2453893831aa0ea8bfe068e692ca4f1ffd6f69afca37a6a4e7ad401c49?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675812"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:a913a01a437d7a6d0ec6cd6eddccf25f064e161b07ed3f9fb0510b485130df08_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:a913a01a437d7a6d0ec6cd6eddccf25f064e161b07ed3f9fb0510b485130df08_ppc64le",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:a913a01a437d7a6d0ec6cd6eddccf25f064e161b07ed3f9fb0510b485130df08_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Aa913a01a437d7a6d0ec6cd6eddccf25f064e161b07ed3f9fb0510b485130df08?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776685755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e813ed4ae0135da60fc1e7e572f6a46495e03764c96ec3c095a4e61a8bdd338_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e813ed4ae0135da60fc1e7e572f6a46495e03764c96ec3c095a4e61a8bdd338_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e813ed4ae0135da60fc1e7e572f6a46495e03764c96ec3c095a4e61a8bdd338_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A1e813ed4ae0135da60fc1e7e572f6a46495e03764c96ec3c095a4e61a8bdd338?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:93c4ad9c017eba69c7105c1f60cba46f201b39da79f5ded60ce13a98d7608e7d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:93c4ad9c017eba69c7105c1f60cba46f201b39da79f5ded60ce13a98d7608e7d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:93c4ad9c017eba69c7105c1f60cba46f201b39da79f5ded60ce13a98d7608e7d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A93c4ad9c017eba69c7105c1f60cba46f201b39da79f5ded60ce13a98d7608e7d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6bafd363141b2012cd318a353cfff9c109c6ccc90d227587f2d0e08316309602_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6bafd363141b2012cd318a353cfff9c109c6ccc90d227587f2d0e08316309602_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6bafd363141b2012cd318a353cfff9c109c6ccc90d227587f2d0e08316309602_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A6bafd363141b2012cd318a353cfff9c109c6ccc90d227587f2d0e08316309602?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:81c29521d2aa0a7d8a0eed047e5948d145c9e4a72fd0697fa9aa613033e7faf9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:81c29521d2aa0a7d8a0eed047e5948d145c9e4a72fd0697fa9aa613033e7faf9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:81c29521d2aa0a7d8a0eed047e5948d145c9e4a72fd0697fa9aa613033e7faf9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A81c29521d2aa0a7d8a0eed047e5948d145c9e4a72fd0697fa9aa613033e7faf9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:72d17c4acb7d58df68ccc1ccd8d7334f35df3091d8bd8e25a949e3c7f528de1d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:72d17c4acb7d58df68ccc1ccd8d7334f35df3091d8bd8e25a949e3c7f528de1d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:72d17c4acb7d58df68ccc1ccd8d7334f35df3091d8bd8e25a949e3c7f528de1d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A72d17c4acb7d58df68ccc1ccd8d7334f35df3091d8bd8e25a949e3c7f528de1d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:167bea17ac181347213db54ace41bd0191b77ad20a3a355e56c90fefcfef0c1f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:167bea17ac181347213db54ace41bd0191b77ad20a3a355e56c90fefcfef0c1f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:167bea17ac181347213db54ace41bd0191b77ad20a3a355e56c90fefcfef0c1f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A167bea17ac181347213db54ace41bd0191b77ad20a3a355e56c90fefcfef0c1f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673480"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:179c818cc5f2021988e1b71e4edaed742e62d398da747cb548896697617254a1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:179c818cc5f2021988e1b71e4edaed742e62d398da747cb548896697617254a1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:179c818cc5f2021988e1b71e4edaed742e62d398da747cb548896697617254a1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A179c818cc5f2021988e1b71e4edaed742e62d398da747cb548896697617254a1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673941"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5d23f5103a7bb7c71ab5b79c2149be46e4ce746f3556508933593a94f15ba945_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5d23f5103a7bb7c71ab5b79c2149be46e4ce746f3556508933593a94f15ba945_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5d23f5103a7bb7c71ab5b79c2149be46e4ce746f3556508933593a94f15ba945_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A5d23f5103a7bb7c71ab5b79c2149be46e4ce746f3556508933593a94f15ba945?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675617"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d7f0f0b52c3c3c7feed13d3ab9d70fdfdb89af06210b90650123b362444a292_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d7f0f0b52c3c3c7feed13d3ab9d70fdfdb89af06210b90650123b362444a292_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d7f0f0b52c3c3c7feed13d3ab9d70fdfdb89af06210b90650123b362444a292_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A7d7f0f0b52c3c3c7feed13d3ab9d70fdfdb89af06210b90650123b362444a292?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675824"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b9a4f7fc7ef59029d19640802db410d32d52a35bf7c8a5ad229ce1e0b559614b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b9a4f7fc7ef59029d19640802db410d32d52a35bf7c8a5ad229ce1e0b559614b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b9a4f7fc7ef59029d19640802db410d32d52a35bf7c8a5ad229ce1e0b559614b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3Ab9a4f7fc7ef59029d19640802db410d32d52a35bf7c8a5ad229ce1e0b559614b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:64802d951a8cc8294fa9194e5778fd8ba178cc2dff80234d85234121013ee58b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:64802d951a8cc8294fa9194e5778fd8ba178cc2dff80234d85234121013ee58b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:64802d951a8cc8294fa9194e5778fd8ba178cc2dff80234d85234121013ee58b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A64802d951a8cc8294fa9194e5778fd8ba178cc2dff80234d85234121013ee58b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:a7f9b163518a7508adb281ab052ca9e1c233c9ee5efe37efad238eb0febad187_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:a7f9b163518a7508adb281ab052ca9e1c233c9ee5efe37efad238eb0febad187_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:a7f9b163518a7508adb281ab052ca9e1c233c9ee5efe37efad238eb0febad187_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3Aa7f9b163518a7508adb281ab052ca9e1c233c9ee5efe37efad238eb0febad187?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1d5caff7082d26409e72c3d18b018f01178321f3922a0868af8058f839261d3b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1d5caff7082d26409e72c3d18b018f01178321f3922a0868af8058f839261d3b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1d5caff7082d26409e72c3d18b018f01178321f3922a0868af8058f839261d3b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3A1d5caff7082d26409e72c3d18b018f01178321f3922a0868af8058f839261d3b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776668614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7fd099e945dc79ff47d6aef25ab62b66920ae6e7338ef2da01ec5865970bb62b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7fd099e945dc79ff47d6aef25ab62b66920ae6e7338ef2da01ec5865970bb62b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7fd099e945dc79ff47d6aef25ab62b66920ae6e7338ef2da01ec5865970bb62b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3A7fd099e945dc79ff47d6aef25ab62b66920ae6e7338ef2da01ec5865970bb62b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:c69c4ec8cd052eeca122726323294481522580372cc3c948fbeace53beb74765_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:c69c4ec8cd052eeca122726323294481522580372cc3c948fbeace53beb74765_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:c69c4ec8cd052eeca122726323294481522580372cc3c948fbeace53beb74765_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3Ac69c4ec8cd052eeca122726323294481522580372cc3c948fbeace53beb74765?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674250"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:79de159f6b1033732145619c507f29b09fa50f2709fffaa5a10f6554c6818651_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:79de159f6b1033732145619c507f29b09fa50f2709fffaa5a10f6554c6818651_ppc64le",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:79de159f6b1033732145619c507f29b09fa50f2709fffaa5a10f6554c6818651_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A79de159f6b1033732145619c507f29b09fa50f2709fffaa5a10f6554c6818651?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673591"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:3d5ff34a3f9281202e3c0c9593b481d9b16a8321020caca71fa4e3b4d6527579_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:3d5ff34a3f9281202e3c0c9593b481d9b16a8321020caca71fa4e3b4d6527579_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:3d5ff34a3f9281202e3c0c9593b481d9b16a8321020caca71fa4e3b4d6527579_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A3d5ff34a3f9281202e3c0c9593b481d9b16a8321020caca71fa4e3b4d6527579?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6964ff070c67d6f71068014ba253466e6ede36b043cd0f8e3908a32d91953f87_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6964ff070c67d6f71068014ba253466e6ede36b043cd0f8e3908a32d91953f87_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6964ff070c67d6f71068014ba253466e6ede36b043cd0f8e3908a32d91953f87_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A6964ff070c67d6f71068014ba253466e6ede36b043cd0f8e3908a32d91953f87?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674103"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d48fa90ded7d3c77d535abf9eb8f56d32e1567a3c292686a7f76c6ac39b5c6e6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d48fa90ded7d3c77d535abf9eb8f56d32e1567a3c292686a7f76c6ac39b5c6e6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d48fa90ded7d3c77d535abf9eb8f56d32e1567a3c292686a7f76c6ac39b5c6e6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Ad48fa90ded7d3c77d535abf9eb8f56d32e1567a3c292686a7f76c6ac39b5c6e6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683756"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8e9b9f7048b849a45ea2edbfcdbc1601d8a11cb4260d5c1d89d85b5ed462e7ff_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8e9b9f7048b849a45ea2edbfcdbc1601d8a11cb4260d5c1d89d85b5ed462e7ff_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8e9b9f7048b849a45ea2edbfcdbc1601d8a11cb4260d5c1d89d85b5ed462e7ff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A8e9b9f7048b849a45ea2edbfcdbc1601d8a11cb4260d5c1d89d85b5ed462e7ff?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675857"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9cce3c5b53509924dd37d4d3a250925226372f26b45bb52a9dcb46526b1f3d2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9cce3c5b53509924dd37d4d3a250925226372f26b45bb52a9dcb46526b1f3d2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9cce3c5b53509924dd37d4d3a250925226372f26b45bb52a9dcb46526b1f3d2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Ac9cce3c5b53509924dd37d4d3a250925226372f26b45bb52a9dcb46526b1f3d2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675600"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:702219e963a769b7dbe97a0f9ea6a20dfd1415097dd6f38cf31cea657b1e4936_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:702219e963a769b7dbe97a0f9ea6a20dfd1415097dd6f38cf31cea657b1e4936_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:702219e963a769b7dbe97a0f9ea6a20dfd1415097dd6f38cf31cea657b1e4936_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A702219e963a769b7dbe97a0f9ea6a20dfd1415097dd6f38cf31cea657b1e4936?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674305"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:348c8fad1c84cc45b10e7add9d5bb5c37057b699d6466e18c3bec3d593e1adde_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:348c8fad1c84cc45b10e7add9d5bb5c37057b699d6466e18c3bec3d593e1adde_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:348c8fad1c84cc45b10e7add9d5bb5c37057b699d6466e18c3bec3d593e1adde_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A348c8fad1c84cc45b10e7add9d5bb5c37057b699d6466e18c3bec3d593e1adde?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a5d235485bcf72b816bafa06ed24b596b2b72f543e17e845ac8b79dc16f88a86_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a5d235485bcf72b816bafa06ed24b596b2b72f543e17e845ac8b79dc16f88a86_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a5d235485bcf72b816bafa06ed24b596b2b72f543e17e845ac8b79dc16f88a86_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3Aa5d235485bcf72b816bafa06ed24b596b2b72f543e17e845ac8b79dc16f88a86?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:69275336a4bb1cd9093233541e6f1e29ccecbb8096673ad0b1880d81ae454ef0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:69275336a4bb1cd9093233541e6f1e29ccecbb8096673ad0b1880d81ae454ef0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:69275336a4bb1cd9093233541e6f1e29ccecbb8096673ad0b1880d81ae454ef0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A69275336a4bb1cd9093233541e6f1e29ccecbb8096673ad0b1880d81ae454ef0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675643"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:60cda39573f604f52c427956ff45e8517e498783efee60cb8c7804ffed26a465_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:60cda39573f604f52c427956ff45e8517e498783efee60cb8c7804ffed26a465_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:60cda39573f604f52c427956ff45e8517e498783efee60cb8c7804ffed26a465_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A60cda39573f604f52c427956ff45e8517e498783efee60cb8c7804ffed26a465?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:af1751213d6286401c0e1d177bb2952715b50a255dd0072452cfcd1a239c9be9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:af1751213d6286401c0e1d177bb2952715b50a255dd0072452cfcd1a239c9be9_s390x",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:af1751213d6286401c0e1d177bb2952715b50a255dd0072452cfcd1a239c9be9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3Aaf1751213d6286401c0e1d177bb2952715b50a255dd0072452cfcd1a239c9be9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674349"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f6fa7b17816eb0b9d73c00dbf4715a26458d784e65858ebba255b032a5a2b3f0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f6fa7b17816eb0b9d73c00dbf4715a26458d784e65858ebba255b032a5a2b3f0_s390x",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f6fa7b17816eb0b9d73c00dbf4715a26458d784e65858ebba255b032a5a2b3f0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3Af6fa7b17816eb0b9d73c00dbf4715a26458d784e65858ebba255b032a5a2b3f0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673159"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9640a22ea7f43b46c281d8271b89480a9df2b5c9ef500b3b9600c5373ebdade6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9640a22ea7f43b46c281d8271b89480a9df2b5c9ef500b3b9600c5373ebdade6_s390x",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9640a22ea7f43b46c281d8271b89480a9df2b5c9ef500b3b9600c5373ebdade6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A9640a22ea7f43b46c281d8271b89480a9df2b5c9ef500b3b9600c5373ebdade6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ebae85f444356b6e695da3e3d2846bccdb8ef037b8cdc77f94128574531851b5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ebae85f444356b6e695da3e3d2846bccdb8ef037b8cdc77f94128574531851b5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ebae85f444356b6e695da3e3d2846bccdb8ef037b8cdc77f94128574531851b5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3Aebae85f444356b6e695da3e3d2846bccdb8ef037b8cdc77f94128574531851b5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674376"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6ec2c12950d227467d95fb84bbb1f9237cf8ea00b0a414371123dc524e94c71d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6ec2c12950d227467d95fb84bbb1f9237cf8ea00b0a414371123dc524e94c71d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6ec2c12950d227467d95fb84bbb1f9237cf8ea00b0a414371123dc524e94c71d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A6ec2c12950d227467d95fb84bbb1f9237cf8ea00b0a414371123dc524e94c71d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675631"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:6ca65a281af1b92df6872e052381ccf15cb51c4adb0ba9afca4c3d3041e9d9e3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:6ca65a281af1b92df6872e052381ccf15cb51c4adb0ba9afca4c3d3041e9d9e3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:6ca65a281af1b92df6872e052381ccf15cb51c4adb0ba9afca4c3d3041e9d9e3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A6ca65a281af1b92df6872e052381ccf15cb51c4adb0ba9afca4c3d3041e9d9e3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:de22ad5dc832ca597947d9eebd182f01721908bb26f8367e077134bc442bca68_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:de22ad5dc832ca597947d9eebd182f01721908bb26f8367e077134bc442bca68_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:de22ad5dc832ca597947d9eebd182f01721908bb26f8367e077134bc442bca68_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Ade22ad5dc832ca597947d9eebd182f01721908bb26f8367e077134bc442bca68?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673171"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2568dfbc55a8a64fab947b40e160757402d1598a563bb1ea7a42103d2e6c049a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2568dfbc55a8a64fab947b40e160757402d1598a563bb1ea7a42103d2e6c049a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2568dfbc55a8a64fab947b40e160757402d1598a563bb1ea7a42103d2e6c049a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A2568dfbc55a8a64fab947b40e160757402d1598a563bb1ea7a42103d2e6c049a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673217"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ae1bc048acdaaf5dab22505faec4c6b0c582b97023409da8ceb84d983494a0b2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ae1bc048acdaaf5dab22505faec4c6b0c582b97023409da8ceb84d983494a0b2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ae1bc048acdaaf5dab22505faec4c6b0c582b97023409da8ceb84d983494a0b2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3Aae1bc048acdaaf5dab22505faec4c6b0c582b97023409da8ceb84d983494a0b2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674212"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b329d7566ac8f0b7f45be16a1b364e249036c2c8f703af70c9965240f682f808_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b329d7566ac8f0b7f45be16a1b364e249036c2c8f703af70c9965240f682f808_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b329d7566ac8f0b7f45be16a1b364e249036c2c8f703af70c9965240f682f808_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3Ab329d7566ac8f0b7f45be16a1b364e249036c2c8f703af70c9965240f682f808?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674084"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:50e0dcc3cf9d804afd0a8a3f633f36283817569fa1f5b7cad47db6cfc61c4a48_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:50e0dcc3cf9d804afd0a8a3f633f36283817569fa1f5b7cad47db6cfc61c4a48_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:50e0dcc3cf9d804afd0a8a3f633f36283817569fa1f5b7cad47db6cfc61c4a48_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A50e0dcc3cf9d804afd0a8a3f633f36283817569fa1f5b7cad47db6cfc61c4a48?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676087"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:ee434038f9c8039bb2e2729584617a8d1b2554cb1e981f24a746badcc63c9022_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:ee434038f9c8039bb2e2729584617a8d1b2554cb1e981f24a746badcc63c9022_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:ee434038f9c8039bb2e2729584617a8d1b2554cb1e981f24a746badcc63c9022_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Aee434038f9c8039bb2e2729584617a8d1b2554cb1e981f24a746badcc63c9022?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674189"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:772cccd41fa1d467cc54dec80bb7de08fc746507148f6220360c89f3f731c31f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:772cccd41fa1d467cc54dec80bb7de08fc746507148f6220360c89f3f731c31f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:772cccd41fa1d467cc54dec80bb7de08fc746507148f6220360c89f3f731c31f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A772cccd41fa1d467cc54dec80bb7de08fc746507148f6220360c89f3f731c31f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674215"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7df6d4e5830f60779a607ad0ce8716034f168d5d9c6b563bf098dbdf3b2fae05_s390x",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7df6d4e5830f60779a607ad0ce8716034f168d5d9c6b563bf098dbdf3b2fae05_s390x",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7df6d4e5830f60779a607ad0ce8716034f168d5d9c6b563bf098dbdf3b2fae05_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A7df6d4e5830f60779a607ad0ce8716034f168d5d9c6b563bf098dbdf3b2fae05?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:4465d88b33622cf161e2df43aafe3fbedbd4e63f833a729df6ec5d6ffbb23b1a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:4465d88b33622cf161e2df43aafe3fbedbd4e63f833a729df6ec5d6ffbb23b1a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:4465d88b33622cf161e2df43aafe3fbedbd4e63f833a729df6ec5d6ffbb23b1a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A4465d88b33622cf161e2df43aafe3fbedbd4e63f833a729df6ec5d6ffbb23b1a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674522"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad08029d8e31a6c80b9d25947ea267b78ddc0e7f3a97dc1dbc075dc4a02283ff_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad08029d8e31a6c80b9d25947ea267b78ddc0e7f3a97dc1dbc075dc4a02283ff_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad08029d8e31a6c80b9d25947ea267b78ddc0e7f3a97dc1dbc075dc4a02283ff_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3Aad08029d8e31a6c80b9d25947ea267b78ddc0e7f3a97dc1dbc075dc4a02283ff?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676307"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:08d7cbc7bf9e4d19e36b4fd5d27040329982b353032c525179227c3e15d30f32_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:08d7cbc7bf9e4d19e36b4fd5d27040329982b353032c525179227c3e15d30f32_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:08d7cbc7bf9e4d19e36b4fd5d27040329982b353032c525179227c3e15d30f32_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A08d7cbc7bf9e4d19e36b4fd5d27040329982b353032c525179227c3e15d30f32?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673768"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6257b90eaa900f50cee0d5cf84c105158f70d9ad4a9829d5208cc261de3ab5e0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6257b90eaa900f50cee0d5cf84c105158f70d9ad4a9829d5208cc261de3ab5e0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6257b90eaa900f50cee0d5cf84c105158f70d9ad4a9829d5208cc261de3ab5e0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A6257b90eaa900f50cee0d5cf84c105158f70d9ad4a9829d5208cc261de3ab5e0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673709"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ed23039296c3dbd7ddce99ee1a538b7b83e32e827932e3d00b929d0f9de13a91_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ed23039296c3dbd7ddce99ee1a538b7b83e32e827932e3d00b929d0f9de13a91_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ed23039296c3dbd7ddce99ee1a538b7b83e32e827932e3d00b929d0f9de13a91_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Aed23039296c3dbd7ddce99ee1a538b7b83e32e827932e3d00b929d0f9de13a91?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673635"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cd93cbcc8568e8bc3965cfdf4c989a91782a08c38c6affb64a0a3121fabb7075_s390x",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cd93cbcc8568e8bc3965cfdf4c989a91782a08c38c6affb64a0a3121fabb7075_s390x",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cd93cbcc8568e8bc3965cfdf4c989a91782a08c38c6affb64a0a3121fabb7075_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3Acd93cbcc8568e8bc3965cfdf4c989a91782a08c38c6affb64a0a3121fabb7075?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776774927"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e8d4c571e3c88206979f8e3c28aaec2fb961b028df0d499ea236c494c0c4096_s390x",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e8d4c571e3c88206979f8e3c28aaec2fb961b028df0d499ea236c494c0c4096_s390x",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e8d4c571e3c88206979f8e3c28aaec2fb961b028df0d499ea236c494c0c4096_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A7e8d4c571e3c88206979f8e3c28aaec2fb961b028df0d499ea236c494c0c4096?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675961"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3eaeaa507833c96c48161f8fc13d4ade13b4ad85f397a41574326e7ef81239a1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3eaeaa507833c96c48161f8fc13d4ade13b4ad85f397a41574326e7ef81239a1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3eaeaa507833c96c48161f8fc13d4ade13b4ad85f397a41574326e7ef81239a1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A3eaeaa507833c96c48161f8fc13d4ade13b4ad85f397a41574326e7ef81239a1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2bb5a02fa2032146aed8fcae80961e9a6e37e1c8a13a368ea07d6b124f303519_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2bb5a02fa2032146aed8fcae80961e9a6e37e1c8a13a368ea07d6b124f303519_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2bb5a02fa2032146aed8fcae80961e9a6e37e1c8a13a368ea07d6b124f303519_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A2bb5a02fa2032146aed8fcae80961e9a6e37e1c8a13a368ea07d6b124f303519?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673954"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:abdd622e2447490b74f285cf653b9f6900b904aa6750b34bf9a39f09dc6337de_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:abdd622e2447490b74f285cf653b9f6900b904aa6750b34bf9a39f09dc6337de_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:abdd622e2447490b74f285cf653b9f6900b904aa6750b34bf9a39f09dc6337de_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3Aabdd622e2447490b74f285cf653b9f6900b904aa6750b34bf9a39f09dc6337de?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a38f0412ab643c849826b9600b42aa8975f4d77546ed3b36e92e7b2dce237e4a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a38f0412ab643c849826b9600b42aa8975f4d77546ed3b36e92e7b2dce237e4a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a38f0412ab643c849826b9600b42aa8975f4d77546ed3b36e92e7b2dce237e4a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Aa38f0412ab643c849826b9600b42aa8975f4d77546ed3b36e92e7b2dce237e4a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673168"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:02a58199e4b61c2d8854772359ea02b3abe946e3e67d1cea7ff753c49b0ad3e7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:02a58199e4b61c2d8854772359ea02b3abe946e3e67d1cea7ff753c49b0ad3e7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:02a58199e4b61c2d8854772359ea02b3abe946e3e67d1cea7ff753c49b0ad3e7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A02a58199e4b61c2d8854772359ea02b3abe946e3e67d1cea7ff753c49b0ad3e7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674222"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:bd3081cfa4a3a02061a6908b469dd9a0b987b5fd1dc73aa67bb2dc05ccd2c5d0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:bd3081cfa4a3a02061a6908b469dd9a0b987b5fd1dc73aa67bb2dc05ccd2c5d0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:bd3081cfa4a3a02061a6908b469dd9a0b987b5fd1dc73aa67bb2dc05ccd2c5d0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Abd3081cfa4a3a02061a6908b469dd9a0b987b5fd1dc73aa67bb2dc05ccd2c5d0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:65b2efd1ededf1a89f9e6a3e12ee8c7085a1282b2520b2906cab1d80520c00d5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:65b2efd1ededf1a89f9e6a3e12ee8c7085a1282b2520b2906cab1d80520c00d5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:65b2efd1ededf1a89f9e6a3e12ee8c7085a1282b2520b2906cab1d80520c00d5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A65b2efd1ededf1a89f9e6a3e12ee8c7085a1282b2520b2906cab1d80520c00d5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673786"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b07ab0a485d53b9ed37a1a1b244c94a70630972020176fa7206d5c9dc40d9962_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b07ab0a485d53b9ed37a1a1b244c94a70630972020176fa7206d5c9dc40d9962_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b07ab0a485d53b9ed37a1a1b244c94a70630972020176fa7206d5c9dc40d9962_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3Ab07ab0a485d53b9ed37a1a1b244c94a70630972020176fa7206d5c9dc40d9962?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673916"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6d51ed70ff145e62ae5d22d42b7cdb071e06053d2d456bc5411da7265c29c96d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6d51ed70ff145e62ae5d22d42b7cdb071e06053d2d456bc5411da7265c29c96d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6d51ed70ff145e62ae5d22d42b7cdb071e06053d2d456bc5411da7265c29c96d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A6d51ed70ff145e62ae5d22d42b7cdb071e06053d2d456bc5411da7265c29c96d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674180"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a51b74a21651e21c9d8d8538c2cbf9272d09696abe8244cd2b1290777ad452b4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a51b74a21651e21c9d8d8538c2cbf9272d09696abe8244cd2b1290777ad452b4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a51b74a21651e21c9d8d8538c2cbf9272d09696abe8244cd2b1290777ad452b4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3Aa51b74a21651e21c9d8d8538c2cbf9272d09696abe8244cd2b1290777ad452b4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673155"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ee8bb516566d6a9dafaa65ae52177421adece839dd4db80426d3d2ba30a1ec10_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ee8bb516566d6a9dafaa65ae52177421adece839dd4db80426d3d2ba30a1ec10_s390x",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ee8bb516566d6a9dafaa65ae52177421adece839dd4db80426d3d2ba30a1ec10_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3Aee8bb516566d6a9dafaa65ae52177421adece839dd4db80426d3d2ba30a1ec10?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52e3ca4eb01859dcd5c4346d73339889f494576b19577fee88cb1800c84f8fc1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52e3ca4eb01859dcd5c4346d73339889f494576b19577fee88cb1800c84f8fc1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52e3ca4eb01859dcd5c4346d73339889f494576b19577fee88cb1800c84f8fc1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A52e3ca4eb01859dcd5c4346d73339889f494576b19577fee88cb1800c84f8fc1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676374"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a5f3adb97a88b5910f2b5375e05fe3411652541687262714d50105f05ca31c34_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a5f3adb97a88b5910f2b5375e05fe3411652541687262714d50105f05ca31c34_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a5f3adb97a88b5910f2b5375e05fe3411652541687262714d50105f05ca31c34_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3Aa5f3adb97a88b5910f2b5375e05fe3411652541687262714d50105f05ca31c34?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9025051729370f663bc9231aa612b0bb51b35bc6da68f8b504dcc01c760a1fee_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9025051729370f663bc9231aa612b0bb51b35bc6da68f8b504dcc01c760a1fee_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9025051729370f663bc9231aa612b0bb51b35bc6da68f8b504dcc01c760a1fee_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A9025051729370f663bc9231aa612b0bb51b35bc6da68f8b504dcc01c760a1fee?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6be6d5b27b6e178e0806938850699d1e760c4d456ae517a658b47cf5a1401a2e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6be6d5b27b6e178e0806938850699d1e760c4d456ae517a658b47cf5a1401a2e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6be6d5b27b6e178e0806938850699d1e760c4d456ae517a658b47cf5a1401a2e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A6be6d5b27b6e178e0806938850699d1e760c4d456ae517a658b47cf5a1401a2e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f4605b13a1cd445835bfa2bf8d2f094533e4b731ede1d00e6e15a83ca924bea_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f4605b13a1cd445835bfa2bf8d2f094533e4b731ede1d00e6e15a83ca924bea_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f4605b13a1cd445835bfa2bf8d2f094533e4b731ede1d00e6e15a83ca924bea_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A0f4605b13a1cd445835bfa2bf8d2f094533e4b731ede1d00e6e15a83ca924bea?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673149"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:11286a96806113bfbc34db1b1e230fb678f11135da1809bf7162cee01bfcd267_s390x",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:11286a96806113bfbc34db1b1e230fb678f11135da1809bf7162cee01bfcd267_s390x",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:11286a96806113bfbc34db1b1e230fb678f11135da1809bf7162cee01bfcd267_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A11286a96806113bfbc34db1b1e230fb678f11135da1809bf7162cee01bfcd267?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675952"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:75e8df980f8d21fae7af1185852e235db098190d2e3098c7cc9086236a60eeba_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:75e8df980f8d21fae7af1185852e235db098190d2e3098c7cc9086236a60eeba_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:75e8df980f8d21fae7af1185852e235db098190d2e3098c7cc9086236a60eeba_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A75e8df980f8d21fae7af1185852e235db098190d2e3098c7cc9086236a60eeba?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:aa2333d5515daba8a887e66ea88370041a21a6f3c483bbc4e2bd888723c25285_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:aa2333d5515daba8a887e66ea88370041a21a6f3c483bbc4e2bd888723c25285_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:aa2333d5515daba8a887e66ea88370041a21a6f3c483bbc4e2bd888723c25285_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3Aaa2333d5515daba8a887e66ea88370041a21a6f3c483bbc4e2bd888723c25285?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673507"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:5b23ce65b543c607e5547f2bb71866255794752a920b7f644fb203086cabae72_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:5b23ce65b543c607e5547f2bb71866255794752a920b7f644fb203086cabae72_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:5b23ce65b543c607e5547f2bb71866255794752a920b7f644fb203086cabae72_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A5b23ce65b543c607e5547f2bb71866255794752a920b7f644fb203086cabae72?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:af138219459f8f23471300a38c65d1d0c580ab93b30c63798d51e8891a948afd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:af138219459f8f23471300a38c65d1d0c580ab93b30c63798d51e8891a948afd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:af138219459f8f23471300a38c65d1d0c580ab93b30c63798d51e8891a948afd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3Aaf138219459f8f23471300a38c65d1d0c580ab93b30c63798d51e8891a948afd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673160"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ada0c79488c2d4b388d12f9e4238054ec9e038bde604659fc70b1c368ad36964_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ada0c79488c2d4b388d12f9e4238054ec9e038bde604659fc70b1c368ad36964_s390x",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ada0c79488c2d4b388d12f9e4238054ec9e038bde604659fc70b1c368ad36964_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3Aada0c79488c2d4b388d12f9e4238054ec9e038bde604659fc70b1c368ad36964?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676307"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d47a6d11b74143b03ababf249a83e8ca576752a2ad58482a2dda2986d79e7098_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d47a6d11b74143b03ababf249a83e8ca576752a2ad58482a2dda2986d79e7098_s390x",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d47a6d11b74143b03ababf249a83e8ca576752a2ad58482a2dda2986d79e7098_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3Ad47a6d11b74143b03ababf249a83e8ca576752a2ad58482a2dda2986d79e7098?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:3cf00020f76f7dd6428f49aee9060f70f2d5d73a7579cf8400ba22f8a3c16364_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:3cf00020f76f7dd6428f49aee9060f70f2d5d73a7579cf8400ba22f8a3c16364_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:3cf00020f76f7dd6428f49aee9060f70f2d5d73a7579cf8400ba22f8a3c16364_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A3cf00020f76f7dd6428f49aee9060f70f2d5d73a7579cf8400ba22f8a3c16364?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675807"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3b801c6c05a17b0b1c763f0a87d4908ba4980ad09aa8f12dce6f3e11b8ca637b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3b801c6c05a17b0b1c763f0a87d4908ba4980ad09aa8f12dce6f3e11b8ca637b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3b801c6c05a17b0b1c763f0a87d4908ba4980ad09aa8f12dce6f3e11b8ca637b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A3b801c6c05a17b0b1c763f0a87d4908ba4980ad09aa8f12dce6f3e11b8ca637b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675019"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fb190187adc311919da380eef951373ed4f907a07606af0797e96cd7d253f20b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fb190187adc311919da380eef951373ed4f907a07606af0797e96cd7d253f20b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fb190187adc311919da380eef951373ed4f907a07606af0797e96cd7d253f20b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3Afb190187adc311919da380eef951373ed4f907a07606af0797e96cd7d253f20b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673538"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5c0a5ac804bc8bc5f5e368bab64945e8e6b506358e4511387869f9bf458ba3f3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5c0a5ac804bc8bc5f5e368bab64945e8e6b506358e4511387869f9bf458ba3f3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5c0a5ac804bc8bc5f5e368bab64945e8e6b506358e4511387869f9bf458ba3f3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A5c0a5ac804bc8bc5f5e368bab64945e8e6b506358e4511387869f9bf458ba3f3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675111"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5ce2fa8d80f65f80b35fdce9568eb02d1a30252222f8593f60d3d2ab85ca9a7d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5ce2fa8d80f65f80b35fdce9568eb02d1a30252222f8593f60d3d2ab85ca9a7d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5ce2fa8d80f65f80b35fdce9568eb02d1a30252222f8593f60d3d2ab85ca9a7d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A5ce2fa8d80f65f80b35fdce9568eb02d1a30252222f8593f60d3d2ab85ca9a7d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683987"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6ff88655c6a7e78def695735bde806319fe65b5fb68ee0c3ec2a82c6d80a9b00_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6ff88655c6a7e78def695735bde806319fe65b5fb68ee0c3ec2a82c6d80a9b00_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6ff88655c6a7e78def695735bde806319fe65b5fb68ee0c3ec2a82c6d80a9b00_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A6ff88655c6a7e78def695735bde806319fe65b5fb68ee0c3ec2a82c6d80a9b00?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675815"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1775e9ce012c333caee47c4df8f9187d85d8b47f6300e3a7ddf6d83af462986e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1775e9ce012c333caee47c4df8f9187d85d8b47f6300e3a7ddf6d83af462986e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1775e9ce012c333caee47c4df8f9187d85d8b47f6300e3a7ddf6d83af462986e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A1775e9ce012c333caee47c4df8f9187d85d8b47f6300e3a7ddf6d83af462986e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676032"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a0a1e7e812c0f1280e24cf4feff8dabaf299f110a8e8e695dd2e3dfb98c1c698_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a0a1e7e812c0f1280e24cf4feff8dabaf299f110a8e8e695dd2e3dfb98c1c698_s390x",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a0a1e7e812c0f1280e24cf4feff8dabaf299f110a8e8e695dd2e3dfb98c1c698_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3Aa0a1e7e812c0f1280e24cf4feff8dabaf299f110a8e8e695dd2e3dfb98c1c698?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674283"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7efa402118210c406818a1791109dae10962706df8c04b290561d0c784f8a57d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7efa402118210c406818a1791109dae10962706df8c04b290561d0c784f8a57d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7efa402118210c406818a1791109dae10962706df8c04b290561d0c784f8a57d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A7efa402118210c406818a1791109dae10962706df8c04b290561d0c784f8a57d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a8ff1c3b2fa1dd0d849d5cd35526a5ef2135bfd6c551ecade04e4744ac595453_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a8ff1c3b2fa1dd0d849d5cd35526a5ef2135bfd6c551ecade04e4744ac595453_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a8ff1c3b2fa1dd0d849d5cd35526a5ef2135bfd6c551ecade04e4744ac595453_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3Aa8ff1c3b2fa1dd0d849d5cd35526a5ef2135bfd6c551ecade04e4744ac595453?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675892"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29de1fa9e82a64eb363bfa664dfac943e9531a5cc46ca5c2e2c41b93d8b7fee2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29de1fa9e82a64eb363bfa664dfac943e9531a5cc46ca5c2e2c41b93d8b7fee2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29de1fa9e82a64eb363bfa664dfac943e9531a5cc46ca5c2e2c41b93d8b7fee2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A29de1fa9e82a64eb363bfa664dfac943e9531a5cc46ca5c2e2c41b93d8b7fee2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673632"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f360847ce5b67a5ca834ace7da710150d47786dc10eea85494e467cd4d6ef908_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f360847ce5b67a5ca834ace7da710150d47786dc10eea85494e467cd4d6ef908_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f360847ce5b67a5ca834ace7da710150d47786dc10eea85494e467cd4d6ef908_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3Af360847ce5b67a5ca834ace7da710150d47786dc10eea85494e467cd4d6ef908?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1d3073d76a6486e752c91e90ff6030c0c0993e9b09ca8f9efa44e5decfd52d97_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1d3073d76a6486e752c91e90ff6030c0c0993e9b09ca8f9efa44e5decfd52d97_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1d3073d76a6486e752c91e90ff6030c0c0993e9b09ca8f9efa44e5decfd52d97_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A1d3073d76a6486e752c91e90ff6030c0c0993e9b09ca8f9efa44e5decfd52d97?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674025"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3b5506219e72fab36ad67c982bd7f9bd2d462070214a71b4fd115ced29aab710_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3b5506219e72fab36ad67c982bd7f9bd2d462070214a71b4fd115ced29aab710_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3b5506219e72fab36ad67c982bd7f9bd2d462070214a71b4fd115ced29aab710_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A3b5506219e72fab36ad67c982bd7f9bd2d462070214a71b4fd115ced29aab710?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676059"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:33e52f2ae99d85b6fc05d53efb17d0a72540a782a33fa91e766fe2e47a878a9a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:33e52f2ae99d85b6fc05d53efb17d0a72540a782a33fa91e766fe2e47a878a9a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:33e52f2ae99d85b6fc05d53efb17d0a72540a782a33fa91e766fe2e47a878a9a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A33e52f2ae99d85b6fc05d53efb17d0a72540a782a33fa91e766fe2e47a878a9a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675556"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ff08f965b67efb7ff451665a77a7bc0f247cde4ca9038d5558393686bc037c39_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ff08f965b67efb7ff451665a77a7bc0f247cde4ca9038d5558393686bc037c39_s390x",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ff08f965b67efb7ff451665a77a7bc0f247cde4ca9038d5558393686bc037c39_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3Aff08f965b67efb7ff451665a77a7bc0f247cde4ca9038d5558393686bc037c39?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676287"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ef77e97f9b16035db985cc79029fc5c3bcd6004ecaee9fec9c05e354ac1e599_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ef77e97f9b16035db985cc79029fc5c3bcd6004ecaee9fec9c05e354ac1e599_s390x",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ef77e97f9b16035db985cc79029fc5c3bcd6004ecaee9fec9c05e354ac1e599_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A1ef77e97f9b16035db985cc79029fc5c3bcd6004ecaee9fec9c05e354ac1e599?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674666"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b18d10d989d149b9bf1e94be6b115ec3445541d5d0cee0358b0fdaf634f93378_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b18d10d989d149b9bf1e94be6b115ec3445541d5d0cee0358b0fdaf634f93378_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b18d10d989d149b9bf1e94be6b115ec3445541d5d0cee0358b0fdaf634f93378_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Ab18d10d989d149b9bf1e94be6b115ec3445541d5d0cee0358b0fdaf634f93378?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674064"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e9ca0475950b50db7e62be4c43d82cb25734b00fb081359208323067c511c19e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e9ca0475950b50db7e62be4c43d82cb25734b00fb081359208323067c511c19e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e9ca0475950b50db7e62be4c43d82cb25734b00fb081359208323067c511c19e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3Ae9ca0475950b50db7e62be4c43d82cb25734b00fb081359208323067c511c19e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776684174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5cddf09377c1fda878639186f3844bab8833fe3890f3266c79dea36faa4f11e9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5cddf09377c1fda878639186f3844bab8833fe3890f3266c79dea36faa4f11e9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5cddf09377c1fda878639186f3844bab8833fe3890f3266c79dea36faa4f11e9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A5cddf09377c1fda878639186f3844bab8833fe3890f3266c79dea36faa4f11e9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673140"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d5513c03787f261759b02454de8248faab74c402a7c8d9e948f469181dbb786d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d5513c03787f261759b02454de8248faab74c402a7c8d9e948f469181dbb786d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d5513c03787f261759b02454de8248faab74c402a7c8d9e948f469181dbb786d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3Ad5513c03787f261759b02454de8248faab74c402a7c8d9e948f469181dbb786d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:362523f56123e0d1b18e7b3028db4d883de2c886e5796e569bffc64118577ca0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:362523f56123e0d1b18e7b3028db4d883de2c886e5796e569bffc64118577ca0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:362523f56123e0d1b18e7b3028db4d883de2c886e5796e569bffc64118577ca0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A362523f56123e0d1b18e7b3028db4d883de2c886e5796e569bffc64118577ca0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5699e966b38060569e298ccd084fe89bd719302ca70e2ceeb4bb9b6ca5be8991_s390x",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5699e966b38060569e298ccd084fe89bd719302ca70e2ceeb4bb9b6ca5be8991_s390x",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5699e966b38060569e298ccd084fe89bd719302ca70e2ceeb4bb9b6ca5be8991_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A5699e966b38060569e298ccd084fe89bd719302ca70e2ceeb4bb9b6ca5be8991?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675602"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:94b1cf74b70f1ea57d939327a45cc2202783f1ca1d098ff27ac8aeefaec8f2aa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:94b1cf74b70f1ea57d939327a45cc2202783f1ca1d098ff27ac8aeefaec8f2aa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:94b1cf74b70f1ea57d939327a45cc2202783f1ca1d098ff27ac8aeefaec8f2aa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A94b1cf74b70f1ea57d939327a45cc2202783f1ca1d098ff27ac8aeefaec8f2aa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f857a7dde34e1082edf0e26f92be3ead9148a3c581595a5a945704697d9a9e8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f857a7dde34e1082edf0e26f92be3ead9148a3c581595a5a945704697d9a9e8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f857a7dde34e1082edf0e26f92be3ead9148a3c581595a5a945704697d9a9e8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A2f857a7dde34e1082edf0e26f92be3ead9148a3c581595a5a945704697d9a9e8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1493ba223106394c3d89d993ed18f37af46c86aefa50d2a3da144d1ca49d10cc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1493ba223106394c3d89d993ed18f37af46c86aefa50d2a3da144d1ca49d10cc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1493ba223106394c3d89d993ed18f37af46c86aefa50d2a3da144d1ca49d10cc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A1493ba223106394c3d89d993ed18f37af46c86aefa50d2a3da144d1ca49d10cc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674368"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:23e8f2481d7c5f71053408be6bb5831e6a852ee4c9428f2e72403b6fd721068a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:23e8f2481d7c5f71053408be6bb5831e6a852ee4c9428f2e72403b6fd721068a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:23e8f2481d7c5f71053408be6bb5831e6a852ee4c9428f2e72403b6fd721068a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A23e8f2481d7c5f71053408be6bb5831e6a852ee4c9428f2e72403b6fd721068a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674066"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e2dd70d80b53776a74125790edbd091dab84b8da27545e129f9ac99d7d5d4657_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e2dd70d80b53776a74125790edbd091dab84b8da27545e129f9ac99d7d5d4657_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e2dd70d80b53776a74125790edbd091dab84b8da27545e129f9ac99d7d5d4657_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3Ae2dd70d80b53776a74125790edbd091dab84b8da27545e129f9ac99d7d5d4657?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673138"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:27a4c883fefa0bdb0033fc23d93875f3eccdda559d2813fa131a8ad3b24b9356_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:27a4c883fefa0bdb0033fc23d93875f3eccdda559d2813fa131a8ad3b24b9356_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:27a4c883fefa0bdb0033fc23d93875f3eccdda559d2813fa131a8ad3b24b9356_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A27a4c883fefa0bdb0033fc23d93875f3eccdda559d2813fa131a8ad3b24b9356?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674388"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5854e872994fcf1c4c534fb1b64f7f24ecffc120b177dc8079056b6a420ae698_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5854e872994fcf1c4c534fb1b64f7f24ecffc120b177dc8079056b6a420ae698_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5854e872994fcf1c4c534fb1b64f7f24ecffc120b177dc8079056b6a420ae698_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A5854e872994fcf1c4c534fb1b64f7f24ecffc120b177dc8079056b6a420ae698?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674121"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b97afe9ff8250ec6647976373edddd171f0b362ce576087d8dcac7c4ea4054bf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b97afe9ff8250ec6647976373edddd171f0b362ce576087d8dcac7c4ea4054bf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b97afe9ff8250ec6647976373edddd171f0b362ce576087d8dcac7c4ea4054bf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Ab97afe9ff8250ec6647976373edddd171f0b362ce576087d8dcac7c4ea4054bf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675984"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3d7227cef380afdefd5f5a05001129a389029547c6f5ea8dba4fc46e20793f23_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3d7227cef380afdefd5f5a05001129a389029547c6f5ea8dba4fc46e20793f23_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3d7227cef380afdefd5f5a05001129a389029547c6f5ea8dba4fc46e20793f23_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A3d7227cef380afdefd5f5a05001129a389029547c6f5ea8dba4fc46e20793f23?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675859"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e10922bda03c19bfcb9e6b85eeb3bb0e5ad0ed717375c19e2a31c94940ef74ee_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e10922bda03c19bfcb9e6b85eeb3bb0e5ad0ed717375c19e2a31c94940ef74ee_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e10922bda03c19bfcb9e6b85eeb3bb0e5ad0ed717375c19e2a31c94940ef74ee_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Ae10922bda03c19bfcb9e6b85eeb3bb0e5ad0ed717375c19e2a31c94940ef74ee?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0618e1978b5b4ac2a90f578af3b8b1c471ef922a3d01d58d413215aae8c5a509_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0618e1978b5b4ac2a90f578af3b8b1c471ef922a3d01d58d413215aae8c5a509_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0618e1978b5b4ac2a90f578af3b8b1c471ef922a3d01d58d413215aae8c5a509_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A0618e1978b5b4ac2a90f578af3b8b1c471ef922a3d01d58d413215aae8c5a509?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674233"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d3ef2745733b13faa31084c3cc345368c89f43b80b2a76e5b10fd7bfc008bcc9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d3ef2745733b13faa31084c3cc345368c89f43b80b2a76e5b10fd7bfc008bcc9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d3ef2745733b13faa31084c3cc345368c89f43b80b2a76e5b10fd7bfc008bcc9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3Ad3ef2745733b13faa31084c3cc345368c89f43b80b2a76e5b10fd7bfc008bcc9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8e5fa9f4eadf03465802101457da9e3a618572e47bf8ebd2859e9b1c50310991_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8e5fa9f4eadf03465802101457da9e3a618572e47bf8ebd2859e9b1c50310991_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8e5fa9f4eadf03465802101457da9e3a618572e47bf8ebd2859e9b1c50310991_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A8e5fa9f4eadf03465802101457da9e3a618572e47bf8ebd2859e9b1c50310991?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7f889df4c103d4fb66fdb537989e34f139c953344fda28b60920feafeb1964f2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7f889df4c103d4fb66fdb537989e34f139c953344fda28b60920feafeb1964f2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7f889df4c103d4fb66fdb537989e34f139c953344fda28b60920feafeb1964f2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A7f889df4c103d4fb66fdb537989e34f139c953344fda28b60920feafeb1964f2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676163"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fe02ef18800c00ea33cc42fd3e7bb5d5ab2855499250279c785ae222e69f537_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fe02ef18800c00ea33cc42fd3e7bb5d5ab2855499250279c785ae222e69f537_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fe02ef18800c00ea33cc42fd3e7bb5d5ab2855499250279c785ae222e69f537_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A8fe02ef18800c00ea33cc42fd3e7bb5d5ab2855499250279c785ae222e69f537?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675744"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1d103663fd08d4a67877ff23ec32b2d16e290f2cfa268fa89c59c3f296c3b080_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1d103663fd08d4a67877ff23ec32b2d16e290f2cfa268fa89c59c3f296c3b080_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1d103663fd08d4a67877ff23ec32b2d16e290f2cfa268fa89c59c3f296c3b080_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A1d103663fd08d4a67877ff23ec32b2d16e290f2cfa268fa89c59c3f296c3b080?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675070"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:080a99a5e9663712b898e49ea608d1195c8e113753e23e403954fc0852e2b8da_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:080a99a5e9663712b898e49ea608d1195c8e113753e23e403954fc0852e2b8da_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:080a99a5e9663712b898e49ea608d1195c8e113753e23e403954fc0852e2b8da_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A080a99a5e9663712b898e49ea608d1195c8e113753e23e403954fc0852e2b8da?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675846"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08c33ef6a9b30a565ddad8d93b0529ea8a7c29a6e0f403cb0f49face063ae162_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08c33ef6a9b30a565ddad8d93b0529ea8a7c29a6e0f403cb0f49face063ae162_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08c33ef6a9b30a565ddad8d93b0529ea8a7c29a6e0f403cb0f49face063ae162_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A08c33ef6a9b30a565ddad8d93b0529ea8a7c29a6e0f403cb0f49face063ae162?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676044"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:41a99736bd8c61ac43d9cd84f3f21d4d174851c81e2a4039263b81d0cb3520e0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:41a99736bd8c61ac43d9cd84f3f21d4d174851c81e2a4039263b81d0cb3520e0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:41a99736bd8c61ac43d9cd84f3f21d4d174851c81e2a4039263b81d0cb3520e0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A41a99736bd8c61ac43d9cd84f3f21d4d174851c81e2a4039263b81d0cb3520e0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673522"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1dbaa49ed53404150877894965d638ec0558f4e17bb2b0d70933d1e93c26b713_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1dbaa49ed53404150877894965d638ec0558f4e17bb2b0d70933d1e93c26b713_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1dbaa49ed53404150877894965d638ec0558f4e17bb2b0d70933d1e93c26b713_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A1dbaa49ed53404150877894965d638ec0558f4e17bb2b0d70933d1e93c26b713?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676017"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d71c752e32a996fda35a49d7c7ab959689a91197b0e229481891a03c151d48f7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d71c752e32a996fda35a49d7c7ab959689a91197b0e229481891a03c151d48f7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d71c752e32a996fda35a49d7c7ab959689a91197b0e229481891a03c151d48f7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3Ad71c752e32a996fda35a49d7c7ab959689a91197b0e229481891a03c151d48f7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:837118a81cc9bdc984af5e9a3f4fedeae4489ba4aa98cd6513dbdaece6acea61_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:837118a81cc9bdc984af5e9a3f4fedeae4489ba4aa98cd6513dbdaece6acea61_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:837118a81cc9bdc984af5e9a3f4fedeae4489ba4aa98cd6513dbdaece6acea61_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A837118a81cc9bdc984af5e9a3f4fedeae4489ba4aa98cd6513dbdaece6acea61?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a7750c02c168c6243c3cd666816d5a4be224e3799d9f7d626cf7e64f07cf06f8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a7750c02c168c6243c3cd666816d5a4be224e3799d9f7d626cf7e64f07cf06f8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a7750c02c168c6243c3cd666816d5a4be224e3799d9f7d626cf7e64f07cf06f8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Aa7750c02c168c6243c3cd666816d5a4be224e3799d9f7d626cf7e64f07cf06f8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676139"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:784e009ef59f00cf7e127d811f2cbb30f8c4b5c489c9d51985c8385400ce97fa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:784e009ef59f00cf7e127d811f2cbb30f8c4b5c489c9d51985c8385400ce97fa_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:784e009ef59f00cf7e127d811f2cbb30f8c4b5c489c9d51985c8385400ce97fa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A784e009ef59f00cf7e127d811f2cbb30f8c4b5c489c9d51985c8385400ce97fa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:529879780fd60bb296f0d2656d7d5805459827820b0b07e839909032ec9fbc17_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:529879780fd60bb296f0d2656d7d5805459827820b0b07e839909032ec9fbc17_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:529879780fd60bb296f0d2656d7d5805459827820b0b07e839909032ec9fbc17_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A529879780fd60bb296f0d2656d7d5805459827820b0b07e839909032ec9fbc17?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676057"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29b6202fa854ec12e85774564ed5da58d314916d5843aa6032428c3cbf97123f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29b6202fa854ec12e85774564ed5da58d314916d5843aa6032428c3cbf97123f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29b6202fa854ec12e85774564ed5da58d314916d5843aa6032428c3cbf97123f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A29b6202fa854ec12e85774564ed5da58d314916d5843aa6032428c3cbf97123f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7cce8b979af738044110eae0d3f16db2e70178b32b340b7f98c339c6c1c80791_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7cce8b979af738044110eae0d3f16db2e70178b32b340b7f98c339c6c1c80791_s390x",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7cce8b979af738044110eae0d3f16db2e70178b32b340b7f98c339c6c1c80791_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A7cce8b979af738044110eae0d3f16db2e70178b32b340b7f98c339c6c1c80791?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674415"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:924c6a190d3e2ccf26e3486fe09b892629736bbad223bf608cb02cc4ca2b5991_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:924c6a190d3e2ccf26e3486fe09b892629736bbad223bf608cb02cc4ca2b5991_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:924c6a190d3e2ccf26e3486fe09b892629736bbad223bf608cb02cc4ca2b5991_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A924c6a190d3e2ccf26e3486fe09b892629736bbad223bf608cb02cc4ca2b5991?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673178"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3daca8e471b071e56c8f9551af5d9afd8c2eb1e29cf87e09dc48214cc885e262_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3daca8e471b071e56c8f9551af5d9afd8c2eb1e29cf87e09dc48214cc885e262_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3daca8e471b071e56c8f9551af5d9afd8c2eb1e29cf87e09dc48214cc885e262_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A3daca8e471b071e56c8f9551af5d9afd8c2eb1e29cf87e09dc48214cc885e262?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c43b8d25569a9a26f77e1c1b6be0fff4467a9dbb8117ff562c2e650a2a62aeba_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c43b8d25569a9a26f77e1c1b6be0fff4467a9dbb8117ff562c2e650a2a62aeba_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c43b8d25569a9a26f77e1c1b6be0fff4467a9dbb8117ff562c2e650a2a62aeba_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3Ac43b8d25569a9a26f77e1c1b6be0fff4467a9dbb8117ff562c2e650a2a62aeba?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b05e21c1862a49132611c23c1c0b589c5ee29b98ef5711244a7c32438f55f7fd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b05e21c1862a49132611c23c1c0b589c5ee29b98ef5711244a7c32438f55f7fd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b05e21c1862a49132611c23c1c0b589c5ee29b98ef5711244a7c32438f55f7fd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3Ab05e21c1862a49132611c23c1c0b589c5ee29b98ef5711244a7c32438f55f7fd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:2057e81c225d137b781788c9df16ecc5bab9a103a029a47196b9e2c53d4171bb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:2057e81c225d137b781788c9df16ecc5bab9a103a029a47196b9e2c53d4171bb_s390x",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:2057e81c225d137b781788c9df16ecc5bab9a103a029a47196b9e2c53d4171bb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A2057e81c225d137b781788c9df16ecc5bab9a103a029a47196b9e2c53d4171bb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673943"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:cb9ffb3b3c64cc43b15f52a40235df199172800aa837ee2fa136c785312126a7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:cb9ffb3b3c64cc43b15f52a40235df199172800aa837ee2fa136c785312126a7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:cb9ffb3b3c64cc43b15f52a40235df199172800aa837ee2fa136c785312126a7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3Acb9ffb3b3c64cc43b15f52a40235df199172800aa837ee2fa136c785312126a7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675447"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f32061109e6d1b72145ead1598d0a2065ccecb2ae424e743dd613b03992ba030_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f32061109e6d1b72145ead1598d0a2065ccecb2ae424e743dd613b03992ba030_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f32061109e6d1b72145ead1598d0a2065ccecb2ae424e743dd613b03992ba030_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3Af32061109e6d1b72145ead1598d0a2065ccecb2ae424e743dd613b03992ba030?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673304"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c362a8609bd2a9b6ca073545e2ffc732949b1791929dacd899faea3c4176e984_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c362a8609bd2a9b6ca073545e2ffc732949b1791929dacd899faea3c4176e984_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c362a8609bd2a9b6ca073545e2ffc732949b1791929dacd899faea3c4176e984_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3Ac362a8609bd2a9b6ca073545e2ffc732949b1791929dacd899faea3c4176e984?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673438"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4c95f82bafd9f1a3207635da63f752252d94cf5d13405748bf9f1dc6d4e5f9bc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4c95f82bafd9f1a3207635da63f752252d94cf5d13405748bf9f1dc6d4e5f9bc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4c95f82bafd9f1a3207635da63f752252d94cf5d13405748bf9f1dc6d4e5f9bc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A4c95f82bafd9f1a3207635da63f752252d94cf5d13405748bf9f1dc6d4e5f9bc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:11a23b0b5190d560d8a7e45c7ac015f71c18fac0f1672f2db84c55ec7d55f9ac_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:11a23b0b5190d560d8a7e45c7ac015f71c18fac0f1672f2db84c55ec7d55f9ac_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:11a23b0b5190d560d8a7e45c7ac015f71c18fac0f1672f2db84c55ec7d55f9ac_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3A11a23b0b5190d560d8a7e45c7ac015f71c18fac0f1672f2db84c55ec7d55f9ac?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673243"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8c53297adf899ca1152c61b10149db660a9146fe067476c82114287f564ac191_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8c53297adf899ca1152c61b10149db660a9146fe067476c82114287f564ac191_s390x",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8c53297adf899ca1152c61b10149db660a9146fe067476c82114287f564ac191_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A8c53297adf899ca1152c61b10149db660a9146fe067476c82114287f564ac191?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673171"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:40132843fd968f729205f908824489fd67b9b0e5bfba1717840f661147af6adc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:40132843fd968f729205f908824489fd67b9b0e5bfba1717840f661147af6adc_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:40132843fd968f729205f908824489fd67b9b0e5bfba1717840f661147af6adc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A40132843fd968f729205f908824489fd67b9b0e5bfba1717840f661147af6adc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675521"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b5277a1b6205eb2ef3c75d691272da6f070b2d10fb1f27558f9241941471cc8d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b5277a1b6205eb2ef3c75d691272da6f070b2d10fb1f27558f9241941471cc8d_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b5277a1b6205eb2ef3c75d691272da6f070b2d10fb1f27558f9241941471cc8d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3Ab5277a1b6205eb2ef3c75d691272da6f070b2d10fb1f27558f9241941471cc8d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675128"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ed3e46a857f509e0c8a08c750cea6e1de65bb6a1f86933165b36ca5e45171377_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ed3e46a857f509e0c8a08c750cea6e1de65bb6a1f86933165b36ca5e45171377_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ed3e46a857f509e0c8a08c750cea6e1de65bb6a1f86933165b36ca5e45171377_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Aed3e46a857f509e0c8a08c750cea6e1de65bb6a1f86933165b36ca5e45171377?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776684050"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e1571e62821f55bcfb611afb286ff61773a16ac15a67da5bf210b5d141a6b3ef_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e1571e62821f55bcfb611afb286ff61773a16ac15a67da5bf210b5d141a6b3ef_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e1571e62821f55bcfb611afb286ff61773a16ac15a67da5bf210b5d141a6b3ef_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3Ae1571e62821f55bcfb611afb286ff61773a16ac15a67da5bf210b5d141a6b3ef?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776684155"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a2dfbd0198e34753e82c002abf31d92585dff3b8093d77fd38d8369cb4c44ba9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a2dfbd0198e34753e82c002abf31d92585dff3b8093d77fd38d8369cb4c44ba9_s390x",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a2dfbd0198e34753e82c002abf31d92585dff3b8093d77fd38d8369cb4c44ba9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3Aa2dfbd0198e34753e82c002abf31d92585dff3b8093d77fd38d8369cb4c44ba9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673386"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:b86db4181d9fe036b77d0473dda243523003c19d0fa5888a54f3f19c104a7e52_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:b86db4181d9fe036b77d0473dda243523003c19d0fa5888a54f3f19c104a7e52_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:b86db4181d9fe036b77d0473dda243523003c19d0fa5888a54f3f19c104a7e52_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3Ab86db4181d9fe036b77d0473dda243523003c19d0fa5888a54f3f19c104a7e52?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675919"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ca38c682197a97a075635209b6091a60ff412df3461950a24d1d881f830fb3d5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ca38c682197a97a075635209b6091a60ff412df3461950a24d1d881f830fb3d5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ca38c682197a97a075635209b6091a60ff412df3461950a24d1d881f830fb3d5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Aca38c682197a97a075635209b6091a60ff412df3461950a24d1d881f830fb3d5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674229"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:499f3d65ea6972937bfed0d482a782ebbf807c4c0cc369e81d53dfa72c591657_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:499f3d65ea6972937bfed0d482a782ebbf807c4c0cc369e81d53dfa72c591657_s390x",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:499f3d65ea6972937bfed0d482a782ebbf807c4c0cc369e81d53dfa72c591657_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A499f3d65ea6972937bfed0d482a782ebbf807c4c0cc369e81d53dfa72c591657?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675595"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d6384ac004f36838bc5b35ff63c4d1edcb3223c0a3907d4f099c5d85ab51b014_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d6384ac004f36838bc5b35ff63c4d1edcb3223c0a3907d4f099c5d85ab51b014_s390x",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d6384ac004f36838bc5b35ff63c4d1edcb3223c0a3907d4f099c5d85ab51b014_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3Ad6384ac004f36838bc5b35ff63c4d1edcb3223c0a3907d4f099c5d85ab51b014?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675826"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:60433084081071dbf7cd337a3769f60ab109201e2ac323be2471c62178d87703_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:60433084081071dbf7cd337a3769f60ab109201e2ac323be2471c62178d87703_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:60433084081071dbf7cd337a3769f60ab109201e2ac323be2471c62178d87703_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A60433084081071dbf7cd337a3769f60ab109201e2ac323be2471c62178d87703?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2ab57f0587e4ff1adee3ac4ca2c3383955448c0b26849eb24c77aa3f4cb5e959_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2ab57f0587e4ff1adee3ac4ca2c3383955448c0b26849eb24c77aa3f4cb5e959_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2ab57f0587e4ff1adee3ac4ca2c3383955448c0b26849eb24c77aa3f4cb5e959_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A2ab57f0587e4ff1adee3ac4ca2c3383955448c0b26849eb24c77aa3f4cb5e959?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675038"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:23043c95c32122eaef725c3e2f65ea824e4f83242614d2609e9367cd6707e454_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:23043c95c32122eaef725c3e2f65ea824e4f83242614d2609e9367cd6707e454_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:23043c95c32122eaef725c3e2f65ea824e4f83242614d2609e9367cd6707e454_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A23043c95c32122eaef725c3e2f65ea824e4f83242614d2609e9367cd6707e454?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ec5717ba7c764e22cf72a5792423078ccb9c3a3bb06b92a33eb6014f03f82fef_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ec5717ba7c764e22cf72a5792423078ccb9c3a3bb06b92a33eb6014f03f82fef_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ec5717ba7c764e22cf72a5792423078ccb9c3a3bb06b92a33eb6014f03f82fef_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3Aec5717ba7c764e22cf72a5792423078ccb9c3a3bb06b92a33eb6014f03f82fef?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776692789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:854407987817269c3069c1d1e4ebd7441465f971e28d391eddd456371162b449_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:854407987817269c3069c1d1e4ebd7441465f971e28d391eddd456371162b449_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:854407987817269c3069c1d1e4ebd7441465f971e28d391eddd456371162b449_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A854407987817269c3069c1d1e4ebd7441465f971e28d391eddd456371162b449?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673130"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ace5b486176727834f9e1ca6ce46b4d0ab0bc6ddf651f4142626b543a02c61d5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ace5b486176727834f9e1ca6ce46b4d0ab0bc6ddf651f4142626b543a02c61d5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ace5b486176727834f9e1ca6ce46b4d0ab0bc6ddf651f4142626b543a02c61d5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3Aace5b486176727834f9e1ca6ce46b4d0ab0bc6ddf651f4142626b543a02c61d5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674195"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:42f1e088777be6853d6845aa25cee3f46df776aba71ed1209285ea853dcafb95_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:42f1e088777be6853d6845aa25cee3f46df776aba71ed1209285ea853dcafb95_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:42f1e088777be6853d6845aa25cee3f46df776aba71ed1209285ea853dcafb95_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A42f1e088777be6853d6845aa25cee3f46df776aba71ed1209285ea853dcafb95?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c706a7354b0006b9e9c7c351954f179d6c50cc2b872833bbb59214ae7148ae3e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c706a7354b0006b9e9c7c351954f179d6c50cc2b872833bbb59214ae7148ae3e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c706a7354b0006b9e9c7c351954f179d6c50cc2b872833bbb59214ae7148ae3e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3Ac706a7354b0006b9e9c7c351954f179d6c50cc2b872833bbb59214ae7148ae3e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674514"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9b497b933ce2f828025dcf4390c7d53debb2418394317da9a8c52ba82a6f2fc0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9b497b933ce2f828025dcf4390c7d53debb2418394317da9a8c52ba82a6f2fc0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9b497b933ce2f828025dcf4390c7d53debb2418394317da9a8c52ba82a6f2fc0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A9b497b933ce2f828025dcf4390c7d53debb2418394317da9a8c52ba82a6f2fc0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674074"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9a30469bc5882ab2711af24dc3b3cbcbd0532f49bfa9dead772070c5fd1280e3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9a30469bc5882ab2711af24dc3b3cbcbd0532f49bfa9dead772070c5fd1280e3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9a30469bc5882ab2711af24dc3b3cbcbd0532f49bfa9dead772070c5fd1280e3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A9a30469bc5882ab2711af24dc3b3cbcbd0532f49bfa9dead772070c5fd1280e3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675812"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbe31a367bd21946e4dc641324c5091a85bf3ae3befb4f40bdd59b00c23bd67f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbe31a367bd21946e4dc641324c5091a85bf3ae3befb4f40bdd59b00c23bd67f_s390x",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbe31a367bd21946e4dc641324c5091a85bf3ae3befb4f40bdd59b00c23bd67f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Adbe31a367bd21946e4dc641324c5091a85bf3ae3befb4f40bdd59b00c23bd67f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776685755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d4588b2594a2fcb58e676ea0e8d11372e0bea9deb53824b47a4d8f3c63e774bc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d4588b2594a2fcb58e676ea0e8d11372e0bea9deb53824b47a4d8f3c63e774bc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d4588b2594a2fcb58e676ea0e8d11372e0bea9deb53824b47a4d8f3c63e774bc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3Ad4588b2594a2fcb58e676ea0e8d11372e0bea9deb53824b47a4d8f3c63e774bc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:755632416caf3e2fa4e8c24958855e78c74b12d5e3f2dcae93152ce06274d428_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:755632416caf3e2fa4e8c24958855e78c74b12d5e3f2dcae93152ce06274d428_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:755632416caf3e2fa4e8c24958855e78c74b12d5e3f2dcae93152ce06274d428_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A755632416caf3e2fa4e8c24958855e78c74b12d5e3f2dcae93152ce06274d428?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c2d53d7716676842974f1dda29eba47d03b525614857591426a01b4186ad2edb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c2d53d7716676842974f1dda29eba47d03b525614857591426a01b4186ad2edb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c2d53d7716676842974f1dda29eba47d03b525614857591426a01b4186ad2edb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3Ac2d53d7716676842974f1dda29eba47d03b525614857591426a01b4186ad2edb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d9208e402a04781e9dffbab5c989e91804b14b6d8a5f5f29a79cc54f85782e24_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d9208e402a04781e9dffbab5c989e91804b14b6d8a5f5f29a79cc54f85782e24_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d9208e402a04781e9dffbab5c989e91804b14b6d8a5f5f29a79cc54f85782e24_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3Ad9208e402a04781e9dffbab5c989e91804b14b6d8a5f5f29a79cc54f85782e24?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8817af94a399c898fea21c34bdd60dd2c927ba3613436f79aab4906ecfc92cfc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8817af94a399c898fea21c34bdd60dd2c927ba3613436f79aab4906ecfc92cfc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8817af94a399c898fea21c34bdd60dd2c927ba3613436f79aab4906ecfc92cfc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A8817af94a399c898fea21c34bdd60dd2c927ba3613436f79aab4906ecfc92cfc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a7cc1cc44f13ea307fb79522996cc56264a0e036bd5ab9134b24e4a0f6639843_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a7cc1cc44f13ea307fb79522996cc56264a0e036bd5ab9134b24e4a0f6639843_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a7cc1cc44f13ea307fb79522996cc56264a0e036bd5ab9134b24e4a0f6639843_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3Aa7cc1cc44f13ea307fb79522996cc56264a0e036bd5ab9134b24e4a0f6639843?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673480"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:eeffe28791e4306c642f156e83c6035bebdff5d1232174d56ccb09b805f9271c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:eeffe28791e4306c642f156e83c6035bebdff5d1232174d56ccb09b805f9271c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:eeffe28791e4306c642f156e83c6035bebdff5d1232174d56ccb09b805f9271c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3Aeeffe28791e4306c642f156e83c6035bebdff5d1232174d56ccb09b805f9271c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673941"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b2dcf4c5a2b14b677212eaecf6ec3fbba8bef7e21d51a437449456979b5fb551_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b2dcf4c5a2b14b677212eaecf6ec3fbba8bef7e21d51a437449456979b5fb551_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b2dcf4c5a2b14b677212eaecf6ec3fbba8bef7e21d51a437449456979b5fb551_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3Ab2dcf4c5a2b14b677212eaecf6ec3fbba8bef7e21d51a437449456979b5fb551?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675617"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22ed10b10973b3a91b30a7269a88013439964eca8e6954fd515442d543bb74af_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22ed10b10973b3a91b30a7269a88013439964eca8e6954fd515442d543bb74af_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22ed10b10973b3a91b30a7269a88013439964eca8e6954fd515442d543bb74af_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A22ed10b10973b3a91b30a7269a88013439964eca8e6954fd515442d543bb74af?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675824"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:3576099906e843ef0a4639ab2563ea90c9c875d6be59b1bb687f59cdcff0acb3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:3576099906e843ef0a4639ab2563ea90c9c875d6be59b1bb687f59cdcff0acb3_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:3576099906e843ef0a4639ab2563ea90c9c875d6be59b1bb687f59cdcff0acb3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A3576099906e843ef0a4639ab2563ea90c9c875d6be59b1bb687f59cdcff0acb3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0696026a1a59a9227aaac743602e83017e0281e6726d94d46c20c69e61bb6ee3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0696026a1a59a9227aaac743602e83017e0281e6726d94d46c20c69e61bb6ee3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0696026a1a59a9227aaac743602e83017e0281e6726d94d46c20c69e61bb6ee3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A0696026a1a59a9227aaac743602e83017e0281e6726d94d46c20c69e61bb6ee3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7062eb071701245aabc8f0839c966e7b4b5fb1673a0f5713b44d82cd726f3ef9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7062eb071701245aabc8f0839c966e7b4b5fb1673a0f5713b44d82cd726f3ef9_s390x",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7062eb071701245aabc8f0839c966e7b4b5fb1673a0f5713b44d82cd726f3ef9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A7062eb071701245aabc8f0839c966e7b4b5fb1673a0f5713b44d82cd726f3ef9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673591"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d76ee581c268ee313f9815c181bbbaa91f976c2da68a7a5dfd304e62f4e4a003_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d76ee581c268ee313f9815c181bbbaa91f976c2da68a7a5dfd304e62f4e4a003_s390x",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d76ee581c268ee313f9815c181bbbaa91f976c2da68a7a5dfd304e62f4e4a003_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3Ad76ee581c268ee313f9815c181bbbaa91f976c2da68a7a5dfd304e62f4e4a003?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:39348b1628d4c75591d22648681ae23c441338241b48d2ed748df691a56dcd36_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:39348b1628d4c75591d22648681ae23c441338241b48d2ed748df691a56dcd36_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:39348b1628d4c75591d22648681ae23c441338241b48d2ed748df691a56dcd36_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A39348b1628d4c75591d22648681ae23c441338241b48d2ed748df691a56dcd36?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674103"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f9d1a4c9d0a5404e8493a84f94fc1715d6226b22b672f0e378157405f5a7204e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f9d1a4c9d0a5404e8493a84f94fc1715d6226b22b672f0e378157405f5a7204e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f9d1a4c9d0a5404e8493a84f94fc1715d6226b22b672f0e378157405f5a7204e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Af9d1a4c9d0a5404e8493a84f94fc1715d6226b22b672f0e378157405f5a7204e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683756"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:0a46ca252418f181a86af41b48cbabda464d51f9d9f44792efea11e54ed2167d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:0a46ca252418f181a86af41b48cbabda464d51f9d9f44792efea11e54ed2167d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:0a46ca252418f181a86af41b48cbabda464d51f9d9f44792efea11e54ed2167d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A0a46ca252418f181a86af41b48cbabda464d51f9d9f44792efea11e54ed2167d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675857"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6a3350010ffc87ac68f2c8eff3ccd707bef4d9295be9aa7d5633e83b3fdcec1d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6a3350010ffc87ac68f2c8eff3ccd707bef4d9295be9aa7d5633e83b3fdcec1d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6a3350010ffc87ac68f2c8eff3ccd707bef4d9295be9aa7d5633e83b3fdcec1d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A6a3350010ffc87ac68f2c8eff3ccd707bef4d9295be9aa7d5633e83b3fdcec1d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675600"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0d0633b8cb1de498ee1441b5e28b4ac6aba808f6ad37d3c2bac9f01c94ff33ac_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0d0633b8cb1de498ee1441b5e28b4ac6aba808f6ad37d3c2bac9f01c94ff33ac_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0d0633b8cb1de498ee1441b5e28b4ac6aba808f6ad37d3c2bac9f01c94ff33ac_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A0d0633b8cb1de498ee1441b5e28b4ac6aba808f6ad37d3c2bac9f01c94ff33ac?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674305"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5653e3a360eb8e725d483a152ef0510d5e1f7142666cc5c6e27f62965f6cd08c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5653e3a360eb8e725d483a152ef0510d5e1f7142666cc5c6e27f62965f6cd08c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5653e3a360eb8e725d483a152ef0510d5e1f7142666cc5c6e27f62965f6cd08c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A5653e3a360eb8e725d483a152ef0510d5e1f7142666cc5c6e27f62965f6cd08c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:213608462f3f06ee113095a0b0be07ab8b1e8c194824a11f56c67392729e906d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:213608462f3f06ee113095a0b0be07ab8b1e8c194824a11f56c67392729e906d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:213608462f3f06ee113095a0b0be07ab8b1e8c194824a11f56c67392729e906d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A213608462f3f06ee113095a0b0be07ab8b1e8c194824a11f56c67392729e906d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b889a52cecf44d33e496bb09da6073217d856dfbe6fe78149669ec2af3dd4f63_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b889a52cecf44d33e496bb09da6073217d856dfbe6fe78149669ec2af3dd4f63_s390x",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b889a52cecf44d33e496bb09da6073217d856dfbe6fe78149669ec2af3dd4f63_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3Ab889a52cecf44d33e496bb09da6073217d856dfbe6fe78149669ec2af3dd4f63?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675643"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3198e3a7911d65997d84ae2c4a4756213bd6169408f8e5b4d4fcfc1312ec221f_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3198e3a7911d65997d84ae2c4a4756213bd6169408f8e5b4d4fcfc1312ec221f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3198e3a7911d65997d84ae2c4a4756213bd6169408f8e5b4d4fcfc1312ec221f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:75b581b7faaa791148cfc9a5e5b4c87faf3a809d2baa0fbcec38bac757007b49_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:75b581b7faaa791148cfc9a5e5b4c87faf3a809d2baa0fbcec38bac757007b49_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:75b581b7faaa791148cfc9a5e5b4c87faf3a809d2baa0fbcec38bac757007b49_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:af1751213d6286401c0e1d177bb2952715b50a255dd0072452cfcd1a239c9be9_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:af1751213d6286401c0e1d177bb2952715b50a255dd0072452cfcd1a239c9be9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:af1751213d6286401c0e1d177bb2952715b50a255dd0072452cfcd1a239c9be9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fdc295c04d946e1294cbc811e5ee20827cce284c7a5358c9c6c926f5afb5fc7b_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fdc295c04d946e1294cbc811e5ee20827cce284c7a5358c9c6c926f5afb5fc7b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fdc295c04d946e1294cbc811e5ee20827cce284c7a5358c9c6c926f5afb5fc7b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1fbf0bae66e3d3feafd7a5d800ffdc203ad1171d41da344c7bc899fa9df0c439_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1fbf0bae66e3d3feafd7a5d800ffdc203ad1171d41da344c7bc899fa9df0c439_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1fbf0bae66e3d3feafd7a5d800ffdc203ad1171d41da344c7bc899fa9df0c439_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a83b03a6cc820386376a5e0b5ac0bc43147338cd0f77ba6b20284b93cde06b63_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a83b03a6cc820386376a5e0b5ac0bc43147338cd0f77ba6b20284b93cde06b63_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a83b03a6cc820386376a5e0b5ac0bc43147338cd0f77ba6b20284b93cde06b63_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ab5dc4b258e7a47d4a05f2f4975324ecdb53481bf591d41dad10543be93ac59c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ab5dc4b258e7a47d4a05f2f4975324ecdb53481bf591d41dad10543be93ac59c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ab5dc4b258e7a47d4a05f2f4975324ecdb53481bf591d41dad10543be93ac59c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f6fa7b17816eb0b9d73c00dbf4715a26458d784e65858ebba255b032a5a2b3f0_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f6fa7b17816eb0b9d73c00dbf4715a26458d784e65858ebba255b032a5a2b3f0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f6fa7b17816eb0b9d73c00dbf4715a26458d784e65858ebba255b032a5a2b3f0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:565239690ed2974560e390d87055eb74f793a4d2abe8dcfcf0d40c4b1d3e4334_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:565239690ed2974560e390d87055eb74f793a4d2abe8dcfcf0d40c4b1d3e4334_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:565239690ed2974560e390d87055eb74f793a4d2abe8dcfcf0d40c4b1d3e4334_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5769b6120ec44707f7b98ec0ba5e90dc8dee0cf14a2795a0785435cb01711fa1_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5769b6120ec44707f7b98ec0ba5e90dc8dee0cf14a2795a0785435cb01711fa1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5769b6120ec44707f7b98ec0ba5e90dc8dee0cf14a2795a0785435cb01711fa1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9640a22ea7f43b46c281d8271b89480a9df2b5c9ef500b3b9600c5373ebdade6_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9640a22ea7f43b46c281d8271b89480a9df2b5c9ef500b3b9600c5373ebdade6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9640a22ea7f43b46c281d8271b89480a9df2b5c9ef500b3b9600c5373ebdade6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9e682bfd352c260c9127e3f2affa6dd16af28b3abb8ee7303753eb0ade31c1e8_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9e682bfd352c260c9127e3f2affa6dd16af28b3abb8ee7303753eb0ade31c1e8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9e682bfd352c260c9127e3f2affa6dd16af28b3abb8ee7303753eb0ade31c1e8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a84a096bab105b8e51bdc5f2d93c011a8a6a32e0ccf5b3a5ee2cbb2abeeb2aa_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a84a096bab105b8e51bdc5f2d93c011a8a6a32e0ccf5b3a5ee2cbb2abeeb2aa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a84a096bab105b8e51bdc5f2d93c011a8a6a32e0ccf5b3a5ee2cbb2abeeb2aa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ef77e97f9b16035db985cc79029fc5c3bcd6004ecaee9fec9c05e354ac1e599_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ef77e97f9b16035db985cc79029fc5c3bcd6004ecaee9fec9c05e354ac1e599_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ef77e97f9b16035db985cc79029fc5c3bcd6004ecaee9fec9c05e354ac1e599_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5f3011e69a519014b7801d2acf0897f95635dbe17492a09216673ebd4a1c791b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5f3011e69a519014b7801d2acf0897f95635dbe17492a09216673ebd4a1c791b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5f3011e69a519014b7801d2acf0897f95635dbe17492a09216673ebd4a1c791b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:eaa84214ab82626dee31c0f652f6d4d980065a920932eb8e69f2e078c8fc16b0_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:eaa84214ab82626dee31c0f652f6d4d980065a920932eb8e69f2e078c8fc16b0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:eaa84214ab82626dee31c0f652f6d4d980065a920932eb8e69f2e078c8fc16b0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2684c0efc9838adc240b08c8b263d829bec71acd381dcb4147d8c45eb1d08d08_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2684c0efc9838adc240b08c8b263d829bec71acd381dcb4147d8c45eb1d08d08_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2684c0efc9838adc240b08c8b263d829bec71acd381dcb4147d8c45eb1d08d08_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:31b01092a5183808a2a97430743d04941f034388254cc7007e74c4ce3083df25_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:31b01092a5183808a2a97430743d04941f034388254cc7007e74c4ce3083df25_arm64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:31b01092a5183808a2a97430743d04941f034388254cc7007e74c4ce3083df25_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5699e966b38060569e298ccd084fe89bd719302ca70e2ceeb4bb9b6ca5be8991_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5699e966b38060569e298ccd084fe89bd719302ca70e2ceeb4bb9b6ca5be8991_s390x"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5699e966b38060569e298ccd084fe89bd719302ca70e2ceeb4bb9b6ca5be8991_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d052315ad81d7689a02be445c9a1df8d296fc3c32a33e3975dcc4297fffa2bfa_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d052315ad81d7689a02be445c9a1df8d296fc3c32a33e3975dcc4297fffa2bfa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d052315ad81d7689a02be445c9a1df8d296fc3c32a33e3975dcc4297fffa2bfa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:4b16fcfd326efb0618351bc9ddb2c3206b18e189c188e5c9fcf27f3ca8f3afa7_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:4b16fcfd326efb0618351bc9ddb2c3206b18e189c188e5c9fcf27f3ca8f3afa7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:4b16fcfd326efb0618351bc9ddb2c3206b18e189c188e5c9fcf27f3ca8f3afa7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:511bd02437b2ab8480a54dfe2ed3e8c11c3d9d2b332212cb455c8540678665da_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:511bd02437b2ab8480a54dfe2ed3e8c11c3d9d2b332212cb455c8540678665da_amd64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:511bd02437b2ab8480a54dfe2ed3e8c11c3d9d2b332212cb455c8540678665da_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6d971be6c49127312d1568f9619c9f4684254c64b77a047f6e24e1caa83e9416_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6d971be6c49127312d1568f9619c9f4684254c64b77a047f6e24e1caa83e9416_arm64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6d971be6c49127312d1568f9619c9f4684254c64b77a047f6e24e1caa83e9416_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7df6d4e5830f60779a607ad0ce8716034f168d5d9c6b563bf098dbdf3b2fae05_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7df6d4e5830f60779a607ad0ce8716034f168d5d9c6b563bf098dbdf3b2fae05_s390x"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7df6d4e5830f60779a607ad0ce8716034f168d5d9c6b563bf098dbdf3b2fae05_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:274d4e7ca8dc6003a3d18d931e63a4a0b4d5f80582351fadccef4195de8b847a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:274d4e7ca8dc6003a3d18d931e63a4a0b4d5f80582351fadccef4195de8b847a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:274d4e7ca8dc6003a3d18d931e63a4a0b4d5f80582351fadccef4195de8b847a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:2bd57947814981b16996f8d12e40d5a5670dad3eae9fffbd57e700c39c1b1155_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:2bd57947814981b16996f8d12e40d5a5670dad3eae9fffbd57e700c39c1b1155_amd64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:2bd57947814981b16996f8d12e40d5a5670dad3eae9fffbd57e700c39c1b1155_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7339fa5d4a95cd617046d6dc06a2e97b78c2448353f2ee464095e787a3a2fcca_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7339fa5d4a95cd617046d6dc06a2e97b78c2448353f2ee464095e787a3a2fcca_arm64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7339fa5d4a95cd617046d6dc06a2e97b78c2448353f2ee464095e787a3a2fcca_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cd93cbcc8568e8bc3965cfdf4c989a91782a08c38c6affb64a0a3121fabb7075_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cd93cbcc8568e8bc3965cfdf4c989a91782a08c38c6affb64a0a3121fabb7075_s390x"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cd93cbcc8568e8bc3965cfdf4c989a91782a08c38c6affb64a0a3121fabb7075_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:04e57127605538ba40496972299b81737cc2e5197a2ec97fba0b34d74fc9ab5f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:04e57127605538ba40496972299b81737cc2e5197a2ec97fba0b34d74fc9ab5f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:04e57127605538ba40496972299b81737cc2e5197a2ec97fba0b34d74fc9ab5f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4c9055e26a32fd7f824d0e0c5dc605c6e59ee22369812ab8331f7572e5154ac5_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4c9055e26a32fd7f824d0e0c5dc605c6e59ee22369812ab8331f7572e5154ac5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4c9055e26a32fd7f824d0e0c5dc605c6e59ee22369812ab8331f7572e5154ac5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e8d4c571e3c88206979f8e3c28aaec2fb961b028df0d499ea236c494c0c4096_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e8d4c571e3c88206979f8e3c28aaec2fb961b028df0d499ea236c494c0c4096_s390x"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e8d4c571e3c88206979f8e3c28aaec2fb961b028df0d499ea236c494c0c4096_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ffef56a2b3d651b521f8cfd8024babe6fdd9e8987df4b37fd3d1945d1dff1a64_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ffef56a2b3d651b521f8cfd8024babe6fdd9e8987df4b37fd3d1945d1dff1a64_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ffef56a2b3d651b521f8cfd8024babe6fdd9e8987df4b37fd3d1945d1dff1a64_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:1dbb201ad9ba579d5fec8a6cd23834d0c1ad9c4d44927b1c90ae448458ecccfe_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1dbb201ad9ba579d5fec8a6cd23834d0c1ad9c4d44927b1c90ae448458ecccfe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:1dbb201ad9ba579d5fec8a6cd23834d0c1ad9c4d44927b1c90ae448458ecccfe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:2057e81c225d137b781788c9df16ecc5bab9a103a029a47196b9e2c53d4171bb_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:2057e81c225d137b781788c9df16ecc5bab9a103a029a47196b9e2c53d4171bb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:2057e81c225d137b781788c9df16ecc5bab9a103a029a47196b9e2c53d4171bb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:d66f70ef41f4cb5cabd1e1c36cf32923cd0f228687925ef8c1b08348dff12ea7_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d66f70ef41f4cb5cabd1e1c36cf32923cd0f228687925ef8c1b08348dff12ea7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:d66f70ef41f4cb5cabd1e1c36cf32923cd0f228687925ef8c1b08348dff12ea7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:e61c5aaa06056181b140e49b24b25835c806df7a51efd7597d3d29c8504dfe3e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e61c5aaa06056181b140e49b24b25835c806df7a51efd7597d3d29c8504dfe3e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:e61c5aaa06056181b140e49b24b25835c806df7a51efd7597d3d29c8504dfe3e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2dade7bac074ae0b6d6b8a47004a3c534c6b1a484a822c45001f5d4083742aa2_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2dade7bac074ae0b6d6b8a47004a3c534c6b1a484a822c45001f5d4083742aa2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2dade7bac074ae0b6d6b8a47004a3c534c6b1a484a822c45001f5d4083742aa2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:40132843fd968f729205f908824489fd67b9b0e5bfba1717840f661147af6adc_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:40132843fd968f729205f908824489fd67b9b0e5bfba1717840f661147af6adc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:40132843fd968f729205f908824489fd67b9b0e5bfba1717840f661147af6adc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53c8d86e293208c966c8e7e4fd3435c9d8806e97ebb31c3e963f26456fc38600_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53c8d86e293208c966c8e7e4fd3435c9d8806e97ebb31c3e963f26456fc38600_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53c8d86e293208c966c8e7e4fd3435c9d8806e97ebb31c3e963f26456fc38600_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a310f85c49c19cd35070957d0621694e30215432b5d01e035ed3e8242f82c283_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a310f85c49c19cd35070957d0621694e30215432b5d01e035ed3e8242f82c283_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a310f85c49c19cd35070957d0621694e30215432b5d01e035ed3e8242f82c283_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:29247ef394a58b75aabdd5cc168e578fc2347c8e0c1d779b7b355848a97df2e4_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:29247ef394a58b75aabdd5cc168e578fc2347c8e0c1d779b7b355848a97df2e4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:29247ef394a58b75aabdd5cc168e578fc2347c8e0c1d779b7b355848a97df2e4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:795a0b596a024d3793c0d211f8e2acf771ae79d4c5d47decef1facba2d5a318b_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:795a0b596a024d3793c0d211f8e2acf771ae79d4c5d47decef1facba2d5a318b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:795a0b596a024d3793c0d211f8e2acf771ae79d4c5d47decef1facba2d5a318b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b5277a1b6205eb2ef3c75d691272da6f070b2d10fb1f27558f9241941471cc8d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b5277a1b6205eb2ef3c75d691272da6f070b2d10fb1f27558f9241941471cc8d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b5277a1b6205eb2ef3c75d691272da6f070b2d10fb1f27558f9241941471cc8d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:d2acb9e2a03e0c2873f562605b1e9c9d32215d1d9d265ce18bd262c7c4263f20_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:d2acb9e2a03e0c2873f562605b1e9c9d32215d1d9d265ce18bd262c7c4263f20_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:d2acb9e2a03e0c2873f562605b1e9c9d32215d1d9d265ce18bd262c7c4263f20_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:874eab1c9150b030a11a0742589008c00cd6f8af8fe188ffbbe28ee6b90f7bf6_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:874eab1c9150b030a11a0742589008c00cd6f8af8fe188ffbbe28ee6b90f7bf6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:874eab1c9150b030a11a0742589008c00cd6f8af8fe188ffbbe28ee6b90f7bf6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:9ee41a2f3a833a077416d0bdd181d767145830fde45cc6fa5c31196ef749b1e4_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:9ee41a2f3a833a077416d0bdd181d767145830fde45cc6fa5c31196ef749b1e4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:9ee41a2f3a833a077416d0bdd181d767145830fde45cc6fa5c31196ef749b1e4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a2dfbd0198e34753e82c002abf31d92585dff3b8093d77fd38d8369cb4c44ba9_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a2dfbd0198e34753e82c002abf31d92585dff3b8093d77fd38d8369cb4c44ba9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a2dfbd0198e34753e82c002abf31d92585dff3b8093d77fd38d8369cb4c44ba9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b4f9122a9571ebe6e0da7465f498ae3e74cf7c77dd6062a675105f4c437e29df_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b4f9122a9571ebe6e0da7465f498ae3e74cf7c77dd6062a675105f4c437e29df_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b4f9122a9571ebe6e0da7465f498ae3e74cf7c77dd6062a675105f4c437e29df_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:054e6260810a05bbcb889e80cf6a4f3668409bcfaf6302148c1230b443fcd8a9_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:054e6260810a05bbcb889e80cf6a4f3668409bcfaf6302148c1230b443fcd8a9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:054e6260810a05bbcb889e80cf6a4f3668409bcfaf6302148c1230b443fcd8a9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3d0ceefebed5e66f56692e62fde1a1b435cfaf596932058d0f2768d7141b6bc9_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3d0ceefebed5e66f56692e62fde1a1b435cfaf596932058d0f2768d7141b6bc9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3d0ceefebed5e66f56692e62fde1a1b435cfaf596932058d0f2768d7141b6bc9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:499f3d65ea6972937bfed0d482a782ebbf807c4c0cc369e81d53dfa72c591657_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:499f3d65ea6972937bfed0d482a782ebbf807c4c0cc369e81d53dfa72c591657_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:499f3d65ea6972937bfed0d482a782ebbf807c4c0cc369e81d53dfa72c591657_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c08cf8ce6baf72aee6019b7318106e3a02e635f4b385a71a2e58387e706a2cbe_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c08cf8ce6baf72aee6019b7318106e3a02e635f4b385a71a2e58387e706a2cbe_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c08cf8ce6baf72aee6019b7318106e3a02e635f4b385a71a2e58387e706a2cbe_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:97af951210f4ac7395effe942732418e9999e7b8e54c9db5317eadee25491b3d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:97af951210f4ac7395effe942732418e9999e7b8e54c9db5317eadee25491b3d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:97af951210f4ac7395effe942732418e9999e7b8e54c9db5317eadee25491b3d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:a80d32903c82085a1904b088453a13c88202d53c26626a0ad3663c784f36230e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a80d32903c82085a1904b088453a13c88202d53c26626a0ad3663c784f36230e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:a80d32903c82085a1904b088453a13c88202d53c26626a0ad3663c784f36230e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:a913a01a437d7a6d0ec6cd6eddccf25f064e161b07ed3f9fb0510b485130df08_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a913a01a437d7a6d0ec6cd6eddccf25f064e161b07ed3f9fb0510b485130df08_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:a913a01a437d7a6d0ec6cd6eddccf25f064e161b07ed3f9fb0510b485130df08_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbe31a367bd21946e4dc641324c5091a85bf3ae3befb4f40bdd59b00c23bd67f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbe31a367bd21946e4dc641324c5091a85bf3ae3befb4f40bdd59b00c23bd67f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbe31a367bd21946e4dc641324c5091a85bf3ae3befb4f40bdd59b00c23bd67f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0d7dd7c2f034bca5dcb69cbf5d8e1989e10076fb4187e9c144201b2afec28a2c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0d7dd7c2f034bca5dcb69cbf5d8e1989e10076fb4187e9c144201b2afec28a2c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0d7dd7c2f034bca5dcb69cbf5d8e1989e10076fb4187e9c144201b2afec28a2c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:11286a96806113bfbc34db1b1e230fb678f11135da1809bf7162cee01bfcd267_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:11286a96806113bfbc34db1b1e230fb678f11135da1809bf7162cee01bfcd267_s390x"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:11286a96806113bfbc34db1b1e230fb678f11135da1809bf7162cee01bfcd267_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6fc448b6852cb86de3661f170f364c99940a004d1f85f9e0d546f24aba812fad_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6fc448b6852cb86de3661f170f364c99940a004d1f85f9e0d546f24aba812fad_amd64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6fc448b6852cb86de3661f170f364c99940a004d1f85f9e0d546f24aba812fad_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:82b0dd3db731b7a84ac6b7ff11c2407ab0020e30ef04cea06b25a007be5cae31_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:82b0dd3db731b7a84ac6b7ff11c2407ab0020e30ef04cea06b25a007be5cae31_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:82b0dd3db731b7a84ac6b7ff11c2407ab0020e30ef04cea06b25a007be5cae31_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1aac0c8d30f9ceb91a9ef3cd76fe90c338568b6408656687fe168a8c9a48d628_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1aac0c8d30f9ceb91a9ef3cd76fe90c338568b6408656687fe168a8c9a48d628_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1aac0c8d30f9ceb91a9ef3cd76fe90c338568b6408656687fe168a8c9a48d628_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7062eb071701245aabc8f0839c966e7b4b5fb1673a0f5713b44d82cd726f3ef9_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7062eb071701245aabc8f0839c966e7b4b5fb1673a0f5713b44d82cd726f3ef9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7062eb071701245aabc8f0839c966e7b4b5fb1673a0f5713b44d82cd726f3ef9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:79de159f6b1033732145619c507f29b09fa50f2709fffaa5a10f6554c6818651_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:79de159f6b1033732145619c507f29b09fa50f2709fffaa5a10f6554c6818651_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:79de159f6b1033732145619c507f29b09fa50f2709fffaa5a10f6554c6818651_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c56ca8e906e3b544e0dbdeca92c33ad8a7b0a846378e3b6c9ecb050bf60f2d7c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c56ca8e906e3b544e0dbdeca92c33ad8a7b0a846378e3b6c9ecb050bf60f2d7c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c56ca8e906e3b544e0dbdeca92c33ad8a7b0a846378e3b6c9ecb050bf60f2d7c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:11c374a767b0cdcb1eee64e69900ca970dbd67f814a76ce9648f578862db2dfd_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:11c374a767b0cdcb1eee64e69900ca970dbd67f814a76ce9648f578862db2dfd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:11c374a767b0cdcb1eee64e69900ca970dbd67f814a76ce9648f578862db2dfd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:1ae113ba4a4f5c2e2d9a2abf69d37ea047da7e879486ddf25303ab709648bc79_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:1ae113ba4a4f5c2e2d9a2abf69d37ea047da7e879486ddf25303ab709648bc79_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:1ae113ba4a4f5c2e2d9a2abf69d37ea047da7e879486ddf25303ab709648bc79_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:64ba60275b58312a1a2472ddc46894c40e746014eef5ea4379f71c0b6d7c96a3_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:64ba60275b58312a1a2472ddc46894c40e746014eef5ea4379f71c0b6d7c96a3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:64ba60275b58312a1a2472ddc46894c40e746014eef5ea4379f71c0b6d7c96a3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a0a1e7e812c0f1280e24cf4feff8dabaf299f110a8e8e695dd2e3dfb98c1c698_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a0a1e7e812c0f1280e24cf4feff8dabaf299f110a8e8e695dd2e3dfb98c1c698_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a0a1e7e812c0f1280e24cf4feff8dabaf299f110a8e8e695dd2e3dfb98c1c698_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29de1fa9e82a64eb363bfa664dfac943e9531a5cc46ca5c2e2c41b93d8b7fee2_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29de1fa9e82a64eb363bfa664dfac943e9531a5cc46ca5c2e2c41b93d8b7fee2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29de1fa9e82a64eb363bfa664dfac943e9531a5cc46ca5c2e2c41b93d8b7fee2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:2eee252e29fc035c3d8b5b91ea2e08a63d96b9f11c6d29961cb738cf1ca73d19_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:2eee252e29fc035c3d8b5b91ea2e08a63d96b9f11c6d29961cb738cf1ca73d19_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:2eee252e29fc035c3d8b5b91ea2e08a63d96b9f11c6d29961cb738cf1ca73d19_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bc0fd93c51986738cb1f49fa4a31f066ea2ccccfd45c36a2ae7066244cf1e351_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bc0fd93c51986738cb1f49fa4a31f066ea2ccccfd45c36a2ae7066244cf1e351_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bc0fd93c51986738cb1f49fa4a31f066ea2ccccfd45c36a2ae7066244cf1e351_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:ce46c15516097e435174ffdd74a4a89f1c9d44b256f0ab5ea84b846ca2f339d2_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:ce46c15516097e435174ffdd74a4a89f1c9d44b256f0ab5ea84b846ca2f339d2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:ce46c15516097e435174ffdd74a4a89f1c9d44b256f0ab5ea84b846ca2f339d2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bbb9f7761a83c0face258f4c056fc8276f1e84e37e533ceee3cd1ac11367ed1d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bbb9f7761a83c0face258f4c056fc8276f1e84e37e533ceee3cd1ac11367ed1d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bbb9f7761a83c0face258f4c056fc8276f1e84e37e533ceee3cd1ac11367ed1d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:d23edb6ed5bae7f0f2be4e09cc70e031579e06bb2d42cb1c507727c319deb38e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:d23edb6ed5bae7f0f2be4e09cc70e031579e06bb2d42cb1c507727c319deb38e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:d23edb6ed5bae7f0f2be4e09cc70e031579e06bb2d42cb1c507727c319deb38e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ed2a405c06a57740f0f44a8c3cd9b7e3aedd0bfa372d85e06852082f4ce87ae0_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ed2a405c06a57740f0f44a8c3cd9b7e3aedd0bfa372d85e06852082f4ce87ae0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ed2a405c06a57740f0f44a8c3cd9b7e3aedd0bfa372d85e06852082f4ce87ae0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f360847ce5b67a5ca834ace7da710150d47786dc10eea85494e467cd4d6ef908_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f360847ce5b67a5ca834ace7da710150d47786dc10eea85494e467cd4d6ef908_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f360847ce5b67a5ca834ace7da710150d47786dc10eea85494e467cd4d6ef908_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1d3073d76a6486e752c91e90ff6030c0c0993e9b09ca8f9efa44e5decfd52d97_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1d3073d76a6486e752c91e90ff6030c0c0993e9b09ca8f9efa44e5decfd52d97_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1d3073d76a6486e752c91e90ff6030c0c0993e9b09ca8f9efa44e5decfd52d97_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4c49749a0ead346171f842c37c832cb6c2457f6812fb487728d561aa85d262e9_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4c49749a0ead346171f842c37c832cb6c2457f6812fb487728d561aa85d262e9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4c49749a0ead346171f842c37c832cb6c2457f6812fb487728d561aa85d262e9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f1f47f29cbc61ddc25a846d4c7d9caa18b91cfcf0e089989883a28ad86b1f2b3_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f1f47f29cbc61ddc25a846d4c7d9caa18b91cfcf0e089989883a28ad86b1f2b3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f1f47f29cbc61ddc25a846d4c7d9caa18b91cfcf0e089989883a28ad86b1f2b3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fc01321fe5597aa44e732fdb7e99670d525a47dc7a0e0a37546f4b28fd697b60_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fc01321fe5597aa44e732fdb7e99670d525a47dc7a0e0a37546f4b28fd697b60_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fc01321fe5597aa44e732fdb7e99670d525a47dc7a0e0a37546f4b28fd697b60_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3b5506219e72fab36ad67c982bd7f9bd2d462070214a71b4fd115ced29aab710_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3b5506219e72fab36ad67c982bd7f9bd2d462070214a71b4fd115ced29aab710_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3b5506219e72fab36ad67c982bd7f9bd2d462070214a71b4fd115ced29aab710_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:465009fe0147ff5370183ee02173f430d0b9cfae5d579aec78bedbd3cb9d5dad_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:465009fe0147ff5370183ee02173f430d0b9cfae5d579aec78bedbd3cb9d5dad_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:465009fe0147ff5370183ee02173f430d0b9cfae5d579aec78bedbd3cb9d5dad_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:607051d5881ef1f78d6a62e3ebdeb761f83988788f7898d869482c22773dbe9b_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:607051d5881ef1f78d6a62e3ebdeb761f83988788f7898d869482c22773dbe9b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:607051d5881ef1f78d6a62e3ebdeb761f83988788f7898d869482c22773dbe9b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f12bc532130dc5fa8c8392d3885bde80ca93ba9700844bf9fe54f4878ac53f46_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f12bc532130dc5fa8c8392d3885bde80ca93ba9700844bf9fe54f4878ac53f46_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f12bc532130dc5fa8c8392d3885bde80ca93ba9700844bf9fe54f4878ac53f46_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:33e52f2ae99d85b6fc05d53efb17d0a72540a782a33fa91e766fe2e47a878a9a_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:33e52f2ae99d85b6fc05d53efb17d0a72540a782a33fa91e766fe2e47a878a9a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:33e52f2ae99d85b6fc05d53efb17d0a72540a782a33fa91e766fe2e47a878a9a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6d03501991d6fc5efd43a6c73cb0e3c8630db1f690bf07253c7e7d17a3de07c8_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6d03501991d6fc5efd43a6c73cb0e3c8630db1f690bf07253c7e7d17a3de07c8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6d03501991d6fc5efd43a6c73cb0e3c8630db1f690bf07253c7e7d17a3de07c8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:97598836bf560759a9ff39d9675e5c7f18a03e14500982e442ea93514cbf3677_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:97598836bf560759a9ff39d9675e5c7f18a03e14500982e442ea93514cbf3677_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:97598836bf560759a9ff39d9675e5c7f18a03e14500982e442ea93514cbf3677_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f24128b82f5c31b4eaf4f7198e4b8c0c702588f0568221b07df121175066372b_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f24128b82f5c31b4eaf4f7198e4b8c0c702588f0568221b07df121175066372b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f24128b82f5c31b4eaf4f7198e4b8c0c702588f0568221b07df121175066372b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:671d23e3d686856a4d47efc6c410ace8deffff06134c979c042fde8e9de487a5_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:671d23e3d686856a4d47efc6c410ace8deffff06134c979c042fde8e9de487a5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:671d23e3d686856a4d47efc6c410ace8deffff06134c979c042fde8e9de487a5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9b9e3e354b0218bc54258ca7a8f7117cfe164c2311965769847e83e7f6c15d78_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9b9e3e354b0218bc54258ca7a8f7117cfe164c2311965769847e83e7f6c15d78_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9b9e3e354b0218bc54258ca7a8f7117cfe164c2311965769847e83e7f6c15d78_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d59d91a2af93c1c7b2dd66e5cb98cd8ccc29c3c64b2cf016dea1d2828a6e06a8_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d59d91a2af93c1c7b2dd66e5cb98cd8ccc29c3c64b2cf016dea1d2828a6e06a8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d59d91a2af93c1c7b2dd66e5cb98cd8ccc29c3c64b2cf016dea1d2828a6e06a8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ff08f965b67efb7ff451665a77a7bc0f247cde4ca9038d5558393686bc037c39_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ff08f965b67efb7ff451665a77a7bc0f247cde4ca9038d5558393686bc037c39_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ff08f965b67efb7ff451665a77a7bc0f247cde4ca9038d5558393686bc037c39_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5e4971e899f775e21b6e1a91f00f633c9467d31bdbf4b71038be98520600a625_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5e4971e899f775e21b6e1a91f00f633c9467d31bdbf4b71038be98520600a625_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5e4971e899f775e21b6e1a91f00f633c9467d31bdbf4b71038be98520600a625_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ae63547bd2f56fb1f1efe75e17413e43cf503fc7089dff3fecb68d2fc50bef97_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ae63547bd2f56fb1f1efe75e17413e43cf503fc7089dff3fecb68d2fc50bef97_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ae63547bd2f56fb1f1efe75e17413e43cf503fc7089dff3fecb68d2fc50bef97_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:80154aeefda9559b46845fb40f50aa723f75f29485cfb4846995d08b0c0bceb6_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:80154aeefda9559b46845fb40f50aa723f75f29485cfb4846995d08b0c0bceb6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:80154aeefda9559b46845fb40f50aa723f75f29485cfb4846995d08b0c0bceb6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:fe5558e0b36855d11e4a57511f878702f87a3d907f79bcca226e99a0c8052628_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:fe5558e0b36855d11e4a57511f878702f87a3d907f79bcca226e99a0c8052628_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:fe5558e0b36855d11e4a57511f878702f87a3d907f79bcca226e99a0c8052628_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0ee0d97e5b746a6df7d95ee4ef32075b52a235cd285039e2460f6ad084b1f5e5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0ee0d97e5b746a6df7d95ee4ef32075b52a235cd285039e2460f6ad084b1f5e5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0ee0d97e5b746a6df7d95ee4ef32075b52a235cd285039e2460f6ad084b1f5e5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d80a021dbf04d702b2bc9736f036c0436191ab4ab3510749ccd03c533e9b5aeb_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d80a021dbf04d702b2bc9736f036c0436191ab4ab3510749ccd03c533e9b5aeb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d80a021dbf04d702b2bc9736f036c0436191ab4ab3510749ccd03c533e9b5aeb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6898ceb180df4a46da74c974cdd105e3bcbc5ddd1575e3cabe53a43dc676258e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6898ceb180df4a46da74c974cdd105e3bcbc5ddd1575e3cabe53a43dc676258e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6898ceb180df4a46da74c974cdd105e3bcbc5ddd1575e3cabe53a43dc676258e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d4c950b548bc3ed89ba8e5e216115bda1600c67d5c35fc9979fb4155415a7b42_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d4c950b548bc3ed89ba8e5e216115bda1600c67d5c35fc9979fb4155415a7b42_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d4c950b548bc3ed89ba8e5e216115bda1600c67d5c35fc9979fb4155415a7b42_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:39af594e6f2fd164192c69bab214557cad92989f21e059cf66f00e455c7f816d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:39af594e6f2fd164192c69bab214557cad92989f21e059cf66f00e455c7f816d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:39af594e6f2fd164192c69bab214557cad92989f21e059cf66f00e455c7f816d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f94694f0d2db1759fa507fdde4594e6b4025a61e3c3f8f2e6caad509a77f6709_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f94694f0d2db1759fa507fdde4594e6b4025a61e3c3f8f2e6caad509a77f6709_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f94694f0d2db1759fa507fdde4594e6b4025a61e3c3f8f2e6caad509a77f6709_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5033eb3bcb9c08972c36d6e19b8d192d85822373e76eb3b54cc9168d86ea62b3_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5033eb3bcb9c08972c36d6e19b8d192d85822373e76eb3b54cc9168d86ea62b3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5033eb3bcb9c08972c36d6e19b8d192d85822373e76eb3b54cc9168d86ea62b3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:a9fb56ddfaafe28542fd8a824923257122500903fc18626f90d84b7e9b2da856_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:a9fb56ddfaafe28542fd8a824923257122500903fc18626f90d84b7e9b2da856_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:a9fb56ddfaafe28542fd8a824923257122500903fc18626f90d84b7e9b2da856_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:0f4d2bd2755eb5467e25d30ef813275b15ec77c1433d406250af5294b8b49f55_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:0f4d2bd2755eb5467e25d30ef813275b15ec77c1433d406250af5294b8b49f55_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:0f4d2bd2755eb5467e25d30ef813275b15ec77c1433d406250af5294b8b49f55_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8a2d63e97b83cac2d12e809ea63398ba1c188dd996a00189664c5dd009551860_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8a2d63e97b83cac2d12e809ea63398ba1c188dd996a00189664c5dd009551860_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8a2d63e97b83cac2d12e809ea63398ba1c188dd996a00189664c5dd009551860_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:10847c520f582706d956c48a95e6e2fac51cce89aa8a3d4fee316fb1ec97e140_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:10847c520f582706d956c48a95e6e2fac51cce89aa8a3d4fee316fb1ec97e140_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:10847c520f582706d956c48a95e6e2fac51cce89aa8a3d4fee316fb1ec97e140_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:73d3bc342e17226fc6e47dfaf448d09e394ea53ec199bef1ba42abf3e0be8c5c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:73d3bc342e17226fc6e47dfaf448d09e394ea53ec199bef1ba42abf3e0be8c5c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:73d3bc342e17226fc6e47dfaf448d09e394ea53ec199bef1ba42abf3e0be8c5c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:11f214e396caf556ca08273015712fc739d1df22b550812d079ef51af642d311_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:11f214e396caf556ca08273015712fc739d1df22b550812d079ef51af642d311_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:11f214e396caf556ca08273015712fc739d1df22b550812d079ef51af642d311_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b8a8e237f5827d7935e0dd8dafe0f59157cdada056580d74feb4ac1b9e05b683_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b8a8e237f5827d7935e0dd8dafe0f59157cdada056580d74feb4ac1b9e05b683_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b8a8e237f5827d7935e0dd8dafe0f59157cdada056580d74feb4ac1b9e05b683_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:26422066656afd16e5e36afeb7e4b5a92cb6888d550ab0a0071da9a198f290d5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:26422066656afd16e5e36afeb7e4b5a92cb6888d550ab0a0071da9a198f290d5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:26422066656afd16e5e36afeb7e4b5a92cb6888d550ab0a0071da9a198f290d5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3a2ee96fcf0963d55d4c1b6ffb874be6c3552ea0b9917b410976bd59e4a58efb_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3a2ee96fcf0963d55d4c1b6ffb874be6c3552ea0b9917b410976bd59e4a58efb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3a2ee96fcf0963d55d4c1b6ffb874be6c3552ea0b9917b410976bd59e4a58efb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:2f41d30f61ee12bd34b94ba6d37a517eacb2dc4a51c938f588a87c1f4333b924_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:2f41d30f61ee12bd34b94ba6d37a517eacb2dc4a51c938f588a87c1f4333b924_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:2f41d30f61ee12bd34b94ba6d37a517eacb2dc4a51c938f588a87c1f4333b924_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:b49b52eea375dce5ee2b1fa3aca1facd6ed65b94e44ab235753eebfd917fdf58_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:b49b52eea375dce5ee2b1fa3aca1facd6ed65b94e44ab235753eebfd917fdf58_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:b49b52eea375dce5ee2b1fa3aca1facd6ed65b94e44ab235753eebfd917fdf58_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91e0a641719fea07fe1185250e91b13f8ece46fe371bb603308306fa9bbfc5d4_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91e0a641719fea07fe1185250e91b13f8ece46fe371bb603308306fa9bbfc5d4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91e0a641719fea07fe1185250e91b13f8ece46fe371bb603308306fa9bbfc5d4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a0839939275e2b68712d77224d5a7612b10a1bf0152a6f57050f179a1c492f70_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a0839939275e2b68712d77224d5a7612b10a1bf0152a6f57050f179a1c492f70_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a0839939275e2b68712d77224d5a7612b10a1bf0152a6f57050f179a1c492f70_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:bd2d266a384c88aeff5ef7174ecb532b24aa2a9d6d17a2e5c01ec384102571d9_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:bd2d266a384c88aeff5ef7174ecb532b24aa2a9d6d17a2e5c01ec384102571d9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:bd2d266a384c88aeff5ef7174ecb532b24aa2a9d6d17a2e5c01ec384102571d9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:fcbec489ae513f599fd533e30672085aacb0f937b7d3ecb8f97a39b24d0e3143_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:fcbec489ae513f599fd533e30672085aacb0f937b7d3ecb8f97a39b24d0e3143_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:fcbec489ae513f599fd533e30672085aacb0f937b7d3ecb8f97a39b24d0e3143_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a37378e201c50cfd94eddd0ca6163650e8af46e7c3a4f97d821aff530ea5374_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a37378e201c50cfd94eddd0ca6163650e8af46e7c3a4f97d821aff530ea5374_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a37378e201c50cfd94eddd0ca6163650e8af46e7c3a4f97d821aff530ea5374_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:22eb07d776eed9b364e0f8843dd2eed75c4295cd9c5d3567cb76b5e5ce20b725_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:22eb07d776eed9b364e0f8843dd2eed75c4295cd9c5d3567cb76b5e5ce20b725_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:22eb07d776eed9b364e0f8843dd2eed75c4295cd9c5d3567cb76b5e5ce20b725_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:73622f6358a99c5b2666edc3f8b680b4cc3906e2f198c67709973dfcd7cbb0df_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:73622f6358a99c5b2666edc3f8b680b4cc3906e2f198c67709973dfcd7cbb0df_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:73622f6358a99c5b2666edc3f8b680b4cc3906e2f198c67709973dfcd7cbb0df_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b18d10d989d149b9bf1e94be6b115ec3445541d5d0cee0358b0fdaf634f93378_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b18d10d989d149b9bf1e94be6b115ec3445541d5d0cee0358b0fdaf634f93378_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b18d10d989d149b9bf1e94be6b115ec3445541d5d0cee0358b0fdaf634f93378_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d1772e78e5b5aed465c12a05548f9eff106f7a1e00d3d913830f8dee427fa4c0_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d1772e78e5b5aed465c12a05548f9eff106f7a1e00d3d913830f8dee427fa4c0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d1772e78e5b5aed465c12a05548f9eff106f7a1e00d3d913830f8dee427fa4c0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e9ca0475950b50db7e62be4c43d82cb25734b00fb081359208323067c511c19e_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e9ca0475950b50db7e62be4c43d82cb25734b00fb081359208323067c511c19e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e9ca0475950b50db7e62be4c43d82cb25734b00fb081359208323067c511c19e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f403594cab45dfc4de5a1fb56f8c9cb8d67ee8b8da68ef64487ef45ff6578236_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f403594cab45dfc4de5a1fb56f8c9cb8d67ee8b8da68ef64487ef45ff6578236_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f403594cab45dfc4de5a1fb56f8c9cb8d67ee8b8da68ef64487ef45ff6578236_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fab18be096158a97131184f91230ca5ad7a66946ad4ad527c224f279a4d413f7_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fab18be096158a97131184f91230ca5ad7a66946ad4ad527c224f279a4d413f7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fab18be096158a97131184f91230ca5ad7a66946ad4ad527c224f279a4d413f7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3e79c9035ffce3cb2f835487bd144c0976dc407890016d1fb86d1f1dc3453ed1_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3e79c9035ffce3cb2f835487bd144c0976dc407890016d1fb86d1f1dc3453ed1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3e79c9035ffce3cb2f835487bd144c0976dc407890016d1fb86d1f1dc3453ed1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:70c684711eaef0d1b4f996d745c936f98707584a54b5d9920b8c25af4adec597_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:70c684711eaef0d1b4f996d745c936f98707584a54b5d9920b8c25af4adec597_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:70c684711eaef0d1b4f996d745c936f98707584a54b5d9920b8c25af4adec597_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8371e3f60ff9846b4249201911cad68360c81e944f753a6eff72003a17c2512a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8371e3f60ff9846b4249201911cad68360c81e944f753a6eff72003a17c2512a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8371e3f60ff9846b4249201911cad68360c81e944f753a6eff72003a17c2512a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ebae85f444356b6e695da3e3d2846bccdb8ef037b8cdc77f94128574531851b5_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ebae85f444356b6e695da3e3d2846bccdb8ef037b8cdc77f94128574531851b5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ebae85f444356b6e695da3e3d2846bccdb8ef037b8cdc77f94128574531851b5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:0c0ffcda769ef04c9b46206aafeed9d6afe4f82ebd46751aab4b47ee6584fab4_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:0c0ffcda769ef04c9b46206aafeed9d6afe4f82ebd46751aab4b47ee6584fab4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:0c0ffcda769ef04c9b46206aafeed9d6afe4f82ebd46751aab4b47ee6584fab4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:408f3dd8943ad4ba2ae37bc2708b698e60a150e98e1c0876e46d088832ed8d24_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:408f3dd8943ad4ba2ae37bc2708b698e60a150e98e1c0876e46d088832ed8d24_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:408f3dd8943ad4ba2ae37bc2708b698e60a150e98e1c0876e46d088832ed8d24_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5cddf09377c1fda878639186f3844bab8833fe3890f3266c79dea36faa4f11e9_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5cddf09377c1fda878639186f3844bab8833fe3890f3266c79dea36faa4f11e9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5cddf09377c1fda878639186f3844bab8833fe3890f3266c79dea36faa4f11e9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bc7f21410949e77fe85c5a7330548b893706c2471d7d4e8d5c6c26a873132263_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bc7f21410949e77fe85c5a7330548b893706c2471d7d4e8d5c6c26a873132263_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bc7f21410949e77fe85c5a7330548b893706c2471d7d4e8d5c6c26a873132263_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:283596834104ae59f2780b8f0d61d90ea6128c4b09d57da03e05414203ee9245_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:283596834104ae59f2780b8f0d61d90ea6128c4b09d57da03e05414203ee9245_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:283596834104ae59f2780b8f0d61d90ea6128c4b09d57da03e05414203ee9245_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:53eb49907793916b8c24463ab096e15d14265a19da7a735a38bf5ec2b9625a79_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:53eb49907793916b8c24463ab096e15d14265a19da7a735a38bf5ec2b9625a79_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:53eb49907793916b8c24463ab096e15d14265a19da7a735a38bf5ec2b9625a79_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6ec2c12950d227467d95fb84bbb1f9237cf8ea00b0a414371123dc524e94c71d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6ec2c12950d227467d95fb84bbb1f9237cf8ea00b0a414371123dc524e94c71d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6ec2c12950d227467d95fb84bbb1f9237cf8ea00b0a414371123dc524e94c71d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9fa52422e5bb14cd6eed3ae6d2a3c0ab07f801e6f92493ec59217025239a5121_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9fa52422e5bb14cd6eed3ae6d2a3c0ab07f801e6f92493ec59217025239a5121_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9fa52422e5bb14cd6eed3ae6d2a3c0ab07f801e6f92493ec59217025239a5121_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:089a4975c6964f0c0a435586733b9fa5c3c9c8a5e139580f016f7f69ab83da27_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:089a4975c6964f0c0a435586733b9fa5c3c9c8a5e139580f016f7f69ab83da27_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:089a4975c6964f0c0a435586733b9fa5c3c9c8a5e139580f016f7f69ab83da27_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:950bee80200f2d9bdcb3f07446eb6aaebe4b31642990272178441b6f9e56a761_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:950bee80200f2d9bdcb3f07446eb6aaebe4b31642990272178441b6f9e56a761_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:950bee80200f2d9bdcb3f07446eb6aaebe4b31642990272178441b6f9e56a761_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ba71968598ba3fcc8dd2d9e3a861484f74804828ebbe5b7251da6706b4cbaae0_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ba71968598ba3fcc8dd2d9e3a861484f74804828ebbe5b7251da6706b4cbaae0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ba71968598ba3fcc8dd2d9e3a861484f74804828ebbe5b7251da6706b4cbaae0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d5513c03787f261759b02454de8248faab74c402a7c8d9e948f469181dbb786d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d5513c03787f261759b02454de8248faab74c402a7c8d9e948f469181dbb786d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d5513c03787f261759b02454de8248faab74c402a7c8d9e948f469181dbb786d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56b40826166445e18229752bbcf65a4cf498e30c4f763110099e9adf1accb209_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56b40826166445e18229752bbcf65a4cf498e30c4f763110099e9adf1accb209_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56b40826166445e18229752bbcf65a4cf498e30c4f763110099e9adf1accb209_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:62a48fb1fc6545c57e524b1e1e3dc43b9749c024578e5266defc819d46d264e7_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:62a48fb1fc6545c57e524b1e1e3dc43b9749c024578e5266defc819d46d264e7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:62a48fb1fc6545c57e524b1e1e3dc43b9749c024578e5266defc819d46d264e7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:aa2333d5515daba8a887e66ea88370041a21a6f3c483bbc4e2bd888723c25285_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:aa2333d5515daba8a887e66ea88370041a21a6f3c483bbc4e2bd888723c25285_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:aa2333d5515daba8a887e66ea88370041a21a6f3c483bbc4e2bd888723c25285_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:d61549e87a7d32c426699db0e1e7f716a575427c65493f9af953a74581ce41f3_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:d61549e87a7d32c426699db0e1e7f716a575427c65493f9af953a74581ce41f3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:d61549e87a7d32c426699db0e1e7f716a575427c65493f9af953a74581ce41f3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:328589e1b67b3322968ac4f8b57193b936fbcac1317136e2818f8792e76a7d0c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:328589e1b67b3322968ac4f8b57193b936fbcac1317136e2818f8792e76a7d0c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:328589e1b67b3322968ac4f8b57193b936fbcac1317136e2818f8792e76a7d0c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:362523f56123e0d1b18e7b3028db4d883de2c886e5796e569bffc64118577ca0_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:362523f56123e0d1b18e7b3028db4d883de2c886e5796e569bffc64118577ca0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:362523f56123e0d1b18e7b3028db4d883de2c886e5796e569bffc64118577ca0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:5b18e39a6782f2bac42b00c42d88a05f19d1740d49082289aaac11aa07a48f35_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:5b18e39a6782f2bac42b00c42d88a05f19d1740d49082289aaac11aa07a48f35_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:5b18e39a6782f2bac42b00c42d88a05f19d1740d49082289aaac11aa07a48f35_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:86961033ea238cdf3d061f8aa811f4559001c4e047e98165b00a8f9018b74c2e_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:86961033ea238cdf3d061f8aa811f4559001c4e047e98165b00a8f9018b74c2e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:86961033ea238cdf3d061f8aa811f4559001c4e047e98165b00a8f9018b74c2e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4056b49b2c42986f94456c5c3a5df02d04f8a08fc4cba8b957c040e4590fe581_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4056b49b2c42986f94456c5c3a5df02d04f8a08fc4cba8b957c040e4590fe581_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4056b49b2c42986f94456c5c3a5df02d04f8a08fc4cba8b957c040e4590fe581_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:94b1cf74b70f1ea57d939327a45cc2202783f1ca1d098ff27ac8aeefaec8f2aa_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:94b1cf74b70f1ea57d939327a45cc2202783f1ca1d098ff27ac8aeefaec8f2aa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:94b1cf74b70f1ea57d939327a45cc2202783f1ca1d098ff27ac8aeefaec8f2aa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b7acf9a4f00a5134eb1810f0ea70fdacfcf56549ced88a80b36abeda4435d925_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b7acf9a4f00a5134eb1810f0ea70fdacfcf56549ced88a80b36abeda4435d925_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b7acf9a4f00a5134eb1810f0ea70fdacfcf56549ced88a80b36abeda4435d925_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d43c576b25a46f4b13aa9968a17c93078c96acbe364e2fc13e12cbeeb334e796_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d43c576b25a46f4b13aa9968a17c93078c96acbe364e2fc13e12cbeeb334e796_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d43c576b25a46f4b13aa9968a17c93078c96acbe364e2fc13e12cbeeb334e796_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:020cd17bf8debf39db376f9f514901b1bb882de052631a01814812dd0a913f53_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:020cd17bf8debf39db376f9f514901b1bb882de052631a01814812dd0a913f53_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:020cd17bf8debf39db376f9f514901b1bb882de052631a01814812dd0a913f53_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f857a7dde34e1082edf0e26f92be3ead9148a3c581595a5a945704697d9a9e8_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f857a7dde34e1082edf0e26f92be3ead9148a3c581595a5a945704697d9a9e8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f857a7dde34e1082edf0e26f92be3ead9148a3c581595a5a945704697d9a9e8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ca86e79869a7ab48486107e3637aa3953201ea36b6b8559ae8b2a04041606c8_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ca86e79869a7ab48486107e3637aa3953201ea36b6b8559ae8b2a04041606c8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ca86e79869a7ab48486107e3637aa3953201ea36b6b8559ae8b2a04041606c8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7f0561027732ff639f602c3a24d89894302fd43879370658fffd01a57a99a1fd_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7f0561027732ff639f602c3a24d89894302fd43879370658fffd01a57a99a1fd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7f0561027732ff639f602c3a24d89894302fd43879370658fffd01a57a99a1fd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:077fa69807819b9cf9c057e592c8e75c8108ea09cb2da43d7c378dd76ae68c51_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:077fa69807819b9cf9c057e592c8e75c8108ea09cb2da43d7c378dd76ae68c51_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:077fa69807819b9cf9c057e592c8e75c8108ea09cb2da43d7c378dd76ae68c51_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1493ba223106394c3d89d993ed18f37af46c86aefa50d2a3da144d1ca49d10cc_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1493ba223106394c3d89d993ed18f37af46c86aefa50d2a3da144d1ca49d10cc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1493ba223106394c3d89d993ed18f37af46c86aefa50d2a3da144d1ca49d10cc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3d6a4223a99f958f0fa1c4afa6f1aaa7a584a996fd95140c1bc151eddf215c57_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3d6a4223a99f958f0fa1c4afa6f1aaa7a584a996fd95140c1bc151eddf215c57_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3d6a4223a99f958f0fa1c4afa6f1aaa7a584a996fd95140c1bc151eddf215c57_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:917aade90b9dbdb7c59ac5c85dff49ec74b29a27aa330352c24680a6987a9a7f_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:917aade90b9dbdb7c59ac5c85dff49ec74b29a27aa330352c24680a6987a9a7f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:917aade90b9dbdb7c59ac5c85dff49ec74b29a27aa330352c24680a6987a9a7f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0539cd95b403a48c3ba7a04e3e27da96798e7e342bb6696f65599c693a4b4297_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0539cd95b403a48c3ba7a04e3e27da96798e7e342bb6696f65599c693a4b4297_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0539cd95b403a48c3ba7a04e3e27da96798e7e342bb6696f65599c693a4b4297_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0a3991f02157723641d576f54823b42d424e612837f7871ceec21e40633235c4_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0a3991f02157723641d576f54823b42d424e612837f7871ceec21e40633235c4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0a3991f02157723641d576f54823b42d424e612837f7871ceec21e40633235c4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:60cda39573f604f52c427956ff45e8517e498783efee60cb8c7804ffed26a465_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:60cda39573f604f52c427956ff45e8517e498783efee60cb8c7804ffed26a465_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:60cda39573f604f52c427956ff45e8517e498783efee60cb8c7804ffed26a465_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a564cbff84b987d316d891c033ba1ce2299d0ebb655452671498b3de789b6f02_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a564cbff84b987d316d891c033ba1ce2299d0ebb655452671498b3de789b6f02_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a564cbff84b987d316d891c033ba1ce2299d0ebb655452671498b3de789b6f02_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:23e8f2481d7c5f71053408be6bb5831e6a852ee4c9428f2e72403b6fd721068a_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:23e8f2481d7c5f71053408be6bb5831e6a852ee4c9428f2e72403b6fd721068a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:23e8f2481d7c5f71053408be6bb5831e6a852ee4c9428f2e72403b6fd721068a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:38cceaff79e567296a50b816cd81cf60c695315474c62e0b380d9d0ed253eebb_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:38cceaff79e567296a50b816cd81cf60c695315474c62e0b380d9d0ed253eebb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:38cceaff79e567296a50b816cd81cf60c695315474c62e0b380d9d0ed253eebb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6301be72ffce6f973f70fc6977632499d2930cfcf23ef6e477af59f3b283e3e2_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6301be72ffce6f973f70fc6977632499d2930cfcf23ef6e477af59f3b283e3e2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6301be72ffce6f973f70fc6977632499d2930cfcf23ef6e477af59f3b283e3e2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e70213ca82db398d11de723f2dd463c196059fed0639ccec30709332648efe78_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e70213ca82db398d11de723f2dd463c196059fed0639ccec30709332648efe78_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e70213ca82db398d11de723f2dd463c196059fed0639ccec30709332648efe78_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2bc4240c6a9f5abe64db9b36884b14d0a763e93a6474096e23a353cab562c400_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2bc4240c6a9f5abe64db9b36884b14d0a763e93a6474096e23a353cab562c400_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2bc4240c6a9f5abe64db9b36884b14d0a763e93a6474096e23a353cab562c400_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4a524f1fcf7c5710ceec19c651216c326ce15290848e4736d504f3247a20e1eb_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4a524f1fcf7c5710ceec19c651216c326ce15290848e4736d504f3247a20e1eb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4a524f1fcf7c5710ceec19c651216c326ce15290848e4736d504f3247a20e1eb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e2dd70d80b53776a74125790edbd091dab84b8da27545e129f9ac99d7d5d4657_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e2dd70d80b53776a74125790edbd091dab84b8da27545e129f9ac99d7d5d4657_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e2dd70d80b53776a74125790edbd091dab84b8da27545e129f9ac99d7d5d4657_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ead5377c32eb77ed07c2285ce30eccd930ee6348d19977ec8c7f8050d9b0ff04_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ead5377c32eb77ed07c2285ce30eccd930ee6348d19977ec8c7f8050d9b0ff04_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ead5377c32eb77ed07c2285ce30eccd930ee6348d19977ec8c7f8050d9b0ff04_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:27a4c883fefa0bdb0033fc23d93875f3eccdda559d2813fa131a8ad3b24b9356_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:27a4c883fefa0bdb0033fc23d93875f3eccdda559d2813fa131a8ad3b24b9356_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:27a4c883fefa0bdb0033fc23d93875f3eccdda559d2813fa131a8ad3b24b9356_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67182434ce84ce97c5374f5ab962a79f67777bf02f82ae92be8f7eb5d0c2b85a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67182434ce84ce97c5374f5ab962a79f67777bf02f82ae92be8f7eb5d0c2b85a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67182434ce84ce97c5374f5ab962a79f67777bf02f82ae92be8f7eb5d0c2b85a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:8731368ad974fd8d1e5c954284fce9346912eb4210b01e01e6fc95893320f591_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:8731368ad974fd8d1e5c954284fce9346912eb4210b01e01e6fc95893320f591_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:8731368ad974fd8d1e5c954284fce9346912eb4210b01e01e6fc95893320f591_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:bc7dd594fb0d5018aa4dc0d26653f73d1859d978e07f0a1939189c5d2d654895_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:bc7dd594fb0d5018aa4dc0d26653f73d1859d978e07f0a1939189c5d2d654895_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:bc7dd594fb0d5018aa4dc0d26653f73d1859d978e07f0a1939189c5d2d654895_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:20874645efadc9cd5b6a176a6d76cc1f6ee5175404f7da5e10fea3bc98498ede_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:20874645efadc9cd5b6a176a6d76cc1f6ee5175404f7da5e10fea3bc98498ede_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:20874645efadc9cd5b6a176a6d76cc1f6ee5175404f7da5e10fea3bc98498ede_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5854e872994fcf1c4c534fb1b64f7f24ecffc120b177dc8079056b6a420ae698_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5854e872994fcf1c4c534fb1b64f7f24ecffc120b177dc8079056b6a420ae698_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5854e872994fcf1c4c534fb1b64f7f24ecffc120b177dc8079056b6a420ae698_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89802f2938cd3444ab90393b1046d61cbd3d05280432ea2390732a0d0520990d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89802f2938cd3444ab90393b1046d61cbd3d05280432ea2390732a0d0520990d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89802f2938cd3444ab90393b1046d61cbd3d05280432ea2390732a0d0520990d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f6a6951136c7faa7b9bcd0f6c892ec9658a2fa8701e0dec5e45225c3bae52bc9_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f6a6951136c7faa7b9bcd0f6c892ec9658a2fa8701e0dec5e45225c3bae52bc9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f6a6951136c7faa7b9bcd0f6c892ec9658a2fa8701e0dec5e45225c3bae52bc9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0b54c713dd339589a9b1fc5e109a7b65117139bd27de833ced58f9716fce95cc_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0b54c713dd339589a9b1fc5e109a7b65117139bd27de833ced58f9716fce95cc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0b54c713dd339589a9b1fc5e109a7b65117139bd27de833ced58f9716fce95cc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0eae1a64fecdc43b68370d99fb14c369c5f0116d37bda62cba7196c0ea002116_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0eae1a64fecdc43b68370d99fb14c369c5f0116d37bda62cba7196c0ea002116_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0eae1a64fecdc43b68370d99fb14c369c5f0116d37bda62cba7196c0ea002116_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6b167e1a3755b0a2362ec86878e5614ee29226fcc956b2e193666a7bfc47d44b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6b167e1a3755b0a2362ec86878e5614ee29226fcc956b2e193666a7bfc47d44b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6b167e1a3755b0a2362ec86878e5614ee29226fcc956b2e193666a7bfc47d44b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b97afe9ff8250ec6647976373edddd171f0b362ce576087d8dcac7c4ea4054bf_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b97afe9ff8250ec6647976373edddd171f0b362ce576087d8dcac7c4ea4054bf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b97afe9ff8250ec6647976373edddd171f0b362ce576087d8dcac7c4ea4054bf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3d7227cef380afdefd5f5a05001129a389029547c6f5ea8dba4fc46e20793f23_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3d7227cef380afdefd5f5a05001129a389029547c6f5ea8dba4fc46e20793f23_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3d7227cef380afdefd5f5a05001129a389029547c6f5ea8dba4fc46e20793f23_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002f5d99c5fc748401bed6ef7d0aebf2fb58d6850e7d1de4df622c84e020e87_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002f5d99c5fc748401bed6ef7d0aebf2fb58d6850e7d1de4df622c84e020e87_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002f5d99c5fc748401bed6ef7d0aebf2fb58d6850e7d1de4df622c84e020e87_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e8d8d468ce7f75b0653d4b3e41dc63bc2fd7e231d32bd2296d08155eb258349e_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e8d8d468ce7f75b0653d4b3e41dc63bc2fd7e231d32bd2296d08155eb258349e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e8d8d468ce7f75b0653d4b3e41dc63bc2fd7e231d32bd2296d08155eb258349e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ec0e7dd227d354544a2e67dd236b93970d393c87c1d6093f8191b9141c40ad01_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ec0e7dd227d354544a2e67dd236b93970d393c87c1d6093f8191b9141c40ad01_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ec0e7dd227d354544a2e67dd236b93970d393c87c1d6093f8191b9141c40ad01_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7807ea7a4377bbc2df491ec5bb74d324eaa66649fba9f40ba46957fe1a758081_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7807ea7a4377bbc2df491ec5bb74d324eaa66649fba9f40ba46957fe1a758081_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7807ea7a4377bbc2df491ec5bb74d324eaa66649fba9f40ba46957fe1a758081_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7a977b59ab4f908549ad66c89473f9dbb84e31eefbe6a8dfc92f5598d3f882bd_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7a977b59ab4f908549ad66c89473f9dbb84e31eefbe6a8dfc92f5598d3f882bd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7a977b59ab4f908549ad66c89473f9dbb84e31eefbe6a8dfc92f5598d3f882bd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e10922bda03c19bfcb9e6b85eeb3bb0e5ad0ed717375c19e2a31c94940ef74ee_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e10922bda03c19bfcb9e6b85eeb3bb0e5ad0ed717375c19e2a31c94940ef74ee_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e10922bda03c19bfcb9e6b85eeb3bb0e5ad0ed717375c19e2a31c94940ef74ee_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e9101408b3219a72c3e43b88129a6bc6918df42b116ad18efce8c7a1b32e50bc_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e9101408b3219a72c3e43b88129a6bc6918df42b116ad18efce8c7a1b32e50bc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e9101408b3219a72c3e43b88129a6bc6918df42b116ad18efce8c7a1b32e50bc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0618e1978b5b4ac2a90f578af3b8b1c471ef922a3d01d58d413215aae8c5a509_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0618e1978b5b4ac2a90f578af3b8b1c471ef922a3d01d58d413215aae8c5a509_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0618e1978b5b4ac2a90f578af3b8b1c471ef922a3d01d58d413215aae8c5a509_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:164e9edcf185697cf77fef80a7b26eaf42efeae25aeb04a91a7e2afe8299828a_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:164e9edcf185697cf77fef80a7b26eaf42efeae25aeb04a91a7e2afe8299828a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:164e9edcf185697cf77fef80a7b26eaf42efeae25aeb04a91a7e2afe8299828a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:366eb47b3cb6c42670ceba8966f0ab119694536fb2baac881685e75e6615dc85_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:366eb47b3cb6c42670ceba8966f0ab119694536fb2baac881685e75e6615dc85_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:366eb47b3cb6c42670ceba8966f0ab119694536fb2baac881685e75e6615dc85_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6afb37d303abf20e6e100a4e472d782d6bf063ae6d131852a4ef9cdac53f7dd6_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6afb37d303abf20e6e100a4e472d782d6bf063ae6d131852a4ef9cdac53f7dd6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6afb37d303abf20e6e100a4e472d782d6bf063ae6d131852a4ef9cdac53f7dd6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:28b92b175c80d10b33844a1466fe71cb48f48431513dd0c634f2ced57e0fa5b6_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:28b92b175c80d10b33844a1466fe71cb48f48431513dd0c634f2ced57e0fa5b6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:28b92b175c80d10b33844a1466fe71cb48f48431513dd0c634f2ced57e0fa5b6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2cab2a6c6f64eafdc588cc11a5537e1a2ccdd0cb37eb84507c985cdb79855e25_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2cab2a6c6f64eafdc588cc11a5537e1a2ccdd0cb37eb84507c985cdb79855e25_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2cab2a6c6f64eafdc588cc11a5537e1a2ccdd0cb37eb84507c985cdb79855e25_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c8322ff72825fe9dcc1c4446c8c3e4dd73619c15542d7f483642789e0463fee4_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c8322ff72825fe9dcc1c4446c8c3e4dd73619c15542d7f483642789e0463fee4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c8322ff72825fe9dcc1c4446c8c3e4dd73619c15542d7f483642789e0463fee4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d3ef2745733b13faa31084c3cc345368c89f43b80b2a76e5b10fd7bfc008bcc9_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d3ef2745733b13faa31084c3cc345368c89f43b80b2a76e5b10fd7bfc008bcc9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d3ef2745733b13faa31084c3cc345368c89f43b80b2a76e5b10fd7bfc008bcc9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:6ca65a281af1b92df6872e052381ccf15cb51c4adb0ba9afca4c3d3041e9d9e3_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:6ca65a281af1b92df6872e052381ccf15cb51c4adb0ba9afca4c3d3041e9d9e3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:6ca65a281af1b92df6872e052381ccf15cb51c4adb0ba9afca4c3d3041e9d9e3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a387760a9151eb37055ae66aa4821ee114125536324c3404a1b4c7044beebcfb_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a387760a9151eb37055ae66aa4821ee114125536324c3404a1b4c7044beebcfb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a387760a9151eb37055ae66aa4821ee114125536324c3404a1b4c7044beebcfb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b6f9dbf0e6927d43f45ac8efcad6913ce67b663747d509666cf0ce87455b0379_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b6f9dbf0e6927d43f45ac8efcad6913ce67b663747d509666cf0ce87455b0379_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b6f9dbf0e6927d43f45ac8efcad6913ce67b663747d509666cf0ce87455b0379_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:f7828b8fc7d451c4b252b52150b2278d310e456e4b06de990bce9d123d923b9c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:f7828b8fc7d451c4b252b52150b2278d310e456e4b06de990bce9d123d923b9c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:f7828b8fc7d451c4b252b52150b2278d310e456e4b06de990bce9d123d923b9c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:215cb8bf8d6ed22118bebdc28ed8766acfe0d8bcc2c5e8311d3b4dbf8a664d48_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:215cb8bf8d6ed22118bebdc28ed8766acfe0d8bcc2c5e8311d3b4dbf8a664d48_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:215cb8bf8d6ed22118bebdc28ed8766acfe0d8bcc2c5e8311d3b4dbf8a664d48_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7077e9ed025326ff3ebc0277b0d716efd46bfcff079442d777dd572c35842ba9_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7077e9ed025326ff3ebc0277b0d716efd46bfcff079442d777dd572c35842ba9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7077e9ed025326ff3ebc0277b0d716efd46bfcff079442d777dd572c35842ba9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7987b5ef6ba2b7e5a9fd3be756c5cab95cd2464af7c9e8459d00e527609513cb_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7987b5ef6ba2b7e5a9fd3be756c5cab95cd2464af7c9e8459d00e527609513cb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7987b5ef6ba2b7e5a9fd3be756c5cab95cd2464af7c9e8459d00e527609513cb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8e5fa9f4eadf03465802101457da9e3a618572e47bf8ebd2859e9b1c50310991_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8e5fa9f4eadf03465802101457da9e3a618572e47bf8ebd2859e9b1c50310991_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8e5fa9f4eadf03465802101457da9e3a618572e47bf8ebd2859e9b1c50310991_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0d11910863bd5a411090ddf070c1be9d58c6f8cfe94eaed1c3ebc9cbe26c3cf6_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0d11910863bd5a411090ddf070c1be9d58c6f8cfe94eaed1c3ebc9cbe26c3cf6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0d11910863bd5a411090ddf070c1be9d58c6f8cfe94eaed1c3ebc9cbe26c3cf6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6ad8362a4cb63bb7bae0e49db53ff65fc60a16f01a414e9f2ab540606a284b08_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6ad8362a4cb63bb7bae0e49db53ff65fc60a16f01a414e9f2ab540606a284b08_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6ad8362a4cb63bb7bae0e49db53ff65fc60a16f01a414e9f2ab540606a284b08_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7f889df4c103d4fb66fdb537989e34f139c953344fda28b60920feafeb1964f2_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7f889df4c103d4fb66fdb537989e34f139c953344fda28b60920feafeb1964f2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7f889df4c103d4fb66fdb537989e34f139c953344fda28b60920feafeb1964f2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cadf5ebac4b179bbc456ebc6743a061cb44437675a0b69f825670a753ff3fb0d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cadf5ebac4b179bbc456ebc6743a061cb44437675a0b69f825670a753ff3fb0d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cadf5ebac4b179bbc456ebc6743a061cb44437675a0b69f825670a753ff3fb0d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6d5855d82cc1db4c9b87e58fdcd0133f56d26e44942787c74d0cd27e212ddfba_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6d5855d82cc1db4c9b87e58fdcd0133f56d26e44942787c74d0cd27e212ddfba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6d5855d82cc1db4c9b87e58fdcd0133f56d26e44942787c74d0cd27e212ddfba_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fe02ef18800c00ea33cc42fd3e7bb5d5ab2855499250279c785ae222e69f537_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fe02ef18800c00ea33cc42fd3e7bb5d5ab2855499250279c785ae222e69f537_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fe02ef18800c00ea33cc42fd3e7bb5d5ab2855499250279c785ae222e69f537_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9bec401a9b520ec096af6673657d6265501df64d94da332e818eaab70ce54722_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9bec401a9b520ec096af6673657d6265501df64d94da332e818eaab70ce54722_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9bec401a9b520ec096af6673657d6265501df64d94da332e818eaab70ce54722_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ac7aa75334ba6e157584d2fc588d682c9c841ddb1cad9d03ef0df96f7274041a_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ac7aa75334ba6e157584d2fc588d682c9c841ddb1cad9d03ef0df96f7274041a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ac7aa75334ba6e157584d2fc588d682c9c841ddb1cad9d03ef0df96f7274041a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0077c7ef1053ca67c87920402ca1cbf21bf54626ba4046031528822a176e0875_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0077c7ef1053ca67c87920402ca1cbf21bf54626ba4046031528822a176e0875_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0077c7ef1053ca67c87920402ca1cbf21bf54626ba4046031528822a176e0875_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1d103663fd08d4a67877ff23ec32b2d16e290f2cfa268fa89c59c3f296c3b080_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1d103663fd08d4a67877ff23ec32b2d16e290f2cfa268fa89c59c3f296c3b080_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1d103663fd08d4a67877ff23ec32b2d16e290f2cfa268fa89c59c3f296c3b080_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:78baab63d2e3ad8f17734423f5b10cd137d944af647104bd40401f433a9ea996_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:78baab63d2e3ad8f17734423f5b10cd137d944af647104bd40401f433a9ea996_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:78baab63d2e3ad8f17734423f5b10cd137d944af647104bd40401f433a9ea996_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:7ebf3a7acad88ffd14b4ae54a1a8fac1eb1d22b6f102216df4586e544d2fe1f7_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:7ebf3a7acad88ffd14b4ae54a1a8fac1eb1d22b6f102216df4586e544d2fe1f7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:7ebf3a7acad88ffd14b4ae54a1a8fac1eb1d22b6f102216df4586e544d2fe1f7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:07ced40602810c0a35ffbed0e120a396076ff01e1d254ba9488a8714d766319b_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:07ced40602810c0a35ffbed0e120a396076ff01e1d254ba9488a8714d766319b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:07ced40602810c0a35ffbed0e120a396076ff01e1d254ba9488a8714d766319b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:080a99a5e9663712b898e49ea608d1195c8e113753e23e403954fc0852e2b8da_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:080a99a5e9663712b898e49ea608d1195c8e113753e23e403954fc0852e2b8da_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:080a99a5e9663712b898e49ea608d1195c8e113753e23e403954fc0852e2b8da_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:125008a0bd8a64e396b32583f34c77e15e45e212e7e623ca20f418bd89cb618d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:125008a0bd8a64e396b32583f34c77e15e45e212e7e623ca20f418bd89cb618d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:125008a0bd8a64e396b32583f34c77e15e45e212e7e623ca20f418bd89cb618d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9b8c9e0dba83ba79ff28bda01050caca261f0e723e8f222cfce4a840db29e300_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9b8c9e0dba83ba79ff28bda01050caca261f0e723e8f222cfce4a840db29e300_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9b8c9e0dba83ba79ff28bda01050caca261f0e723e8f222cfce4a840db29e300_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08c33ef6a9b30a565ddad8d93b0529ea8a7c29a6e0f403cb0f49face063ae162_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08c33ef6a9b30a565ddad8d93b0529ea8a7c29a6e0f403cb0f49face063ae162_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08c33ef6a9b30a565ddad8d93b0529ea8a7c29a6e0f403cb0f49face063ae162_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5928577bdfc2683410ba93dba0ec9106d1ab29bce79f56a832c06e00ef82fb48_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5928577bdfc2683410ba93dba0ec9106d1ab29bce79f56a832c06e00ef82fb48_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5928577bdfc2683410ba93dba0ec9106d1ab29bce79f56a832c06e00ef82fb48_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9f0fa62bbcb4f5b18ee1ab7831d634e2faf5e945e94fcc61a204d7a4a5d39d24_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9f0fa62bbcb4f5b18ee1ab7831d634e2faf5e945e94fcc61a204d7a4a5d39d24_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9f0fa62bbcb4f5b18ee1ab7831d634e2faf5e945e94fcc61a204d7a4a5d39d24_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f448d0ef7d1bd805abc57fb34fd9acdae51656851126b9abd3038703592ba4a8_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f448d0ef7d1bd805abc57fb34fd9acdae51656851126b9abd3038703592ba4a8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f448d0ef7d1bd805abc57fb34fd9acdae51656851126b9abd3038703592ba4a8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:21000531fed1065562e8e0d275bcf48eaaad2d35f54e81e13a03e9dbe22fce2e_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:21000531fed1065562e8e0d275bcf48eaaad2d35f54e81e13a03e9dbe22fce2e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:21000531fed1065562e8e0d275bcf48eaaad2d35f54e81e13a03e9dbe22fce2e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:41a99736bd8c61ac43d9cd84f3f21d4d174851c81e2a4039263b81d0cb3520e0_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:41a99736bd8c61ac43d9cd84f3f21d4d174851c81e2a4039263b81d0cb3520e0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:41a99736bd8c61ac43d9cd84f3f21d4d174851c81e2a4039263b81d0cb3520e0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:95c36149f02710b63a6c05bd3249027dea0cb332ce600226b6a7aebf4ff73e38_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:95c36149f02710b63a6c05bd3249027dea0cb332ce600226b6a7aebf4ff73e38_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:95c36149f02710b63a6c05bd3249027dea0cb332ce600226b6a7aebf4ff73e38_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:988d7aab9c210f5e09de3488b38758cac859c4619f8e8d715176c60b95993ee1_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:988d7aab9c210f5e09de3488b38758cac859c4619f8e8d715176c60b95993ee1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:988d7aab9c210f5e09de3488b38758cac859c4619f8e8d715176c60b95993ee1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1dbaa49ed53404150877894965d638ec0558f4e17bb2b0d70933d1e93c26b713_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1dbaa49ed53404150877894965d638ec0558f4e17bb2b0d70933d1e93c26b713_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1dbaa49ed53404150877894965d638ec0558f4e17bb2b0d70933d1e93c26b713_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2bfbea264fdf5062c9454ad7efeeb799d1568071ebac6195c8138c171dacde67_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2bfbea264fdf5062c9454ad7efeeb799d1568071ebac6195c8138c171dacde67_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2bfbea264fdf5062c9454ad7efeeb799d1568071ebac6195c8138c171dacde67_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:a7a07a455ee7e89c4702fb1f15c7888945acec38d7ff1cf731129b098050a591_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:a7a07a455ee7e89c4702fb1f15c7888945acec38d7ff1cf731129b098050a591_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:a7a07a455ee7e89c4702fb1f15c7888945acec38d7ff1cf731129b098050a591_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b965fdf100922a0b263f372f4757fec562f0b48a8032d2c7090d9c8f19b5aca0_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b965fdf100922a0b263f372f4757fec562f0b48a8032d2c7090d9c8f19b5aca0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b965fdf100922a0b263f372f4757fec562f0b48a8032d2c7090d9c8f19b5aca0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:54bb0200c75df26bf82e42db71faef1dc309be87095afb5de60e39d2853acd62_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:54bb0200c75df26bf82e42db71faef1dc309be87095afb5de60e39d2853acd62_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:54bb0200c75df26bf82e42db71faef1dc309be87095afb5de60e39d2853acd62_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:63d7e09d2367614dd7b83c41b35b538a6e3d98fb49c03a103f31355202528319_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:63d7e09d2367614dd7b83c41b35b538a6e3d98fb49c03a103f31355202528319_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:63d7e09d2367614dd7b83c41b35b538a6e3d98fb49c03a103f31355202528319_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:9557a3d19aec734063ea30485f71fc2f279b7ea77ef1b2d1cbd7e98ebf7e2938_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:9557a3d19aec734063ea30485f71fc2f279b7ea77ef1b2d1cbd7e98ebf7e2938_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:9557a3d19aec734063ea30485f71fc2f279b7ea77ef1b2d1cbd7e98ebf7e2938_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:de22ad5dc832ca597947d9eebd182f01721908bb26f8367e077134bc442bca68_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:de22ad5dc832ca597947d9eebd182f01721908bb26f8367e077134bc442bca68_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:de22ad5dc832ca597947d9eebd182f01721908bb26f8367e077134bc442bca68_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2568dfbc55a8a64fab947b40e160757402d1598a563bb1ea7a42103d2e6c049a_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2568dfbc55a8a64fab947b40e160757402d1598a563bb1ea7a42103d2e6c049a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2568dfbc55a8a64fab947b40e160757402d1598a563bb1ea7a42103d2e6c049a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5044508d683bfb7c1fcb538293e01a54e21360f85dd3d6b6d9150be3571e4604_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5044508d683bfb7c1fcb538293e01a54e21360f85dd3d6b6d9150be3571e4604_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5044508d683bfb7c1fcb538293e01a54e21360f85dd3d6b6d9150be3571e4604_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7f9d5ae402c429ceb81c952f23b0898f4f768b048e87f4c7c193f970d83248a2_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7f9d5ae402c429ceb81c952f23b0898f4f768b048e87f4c7c193f970d83248a2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7f9d5ae402c429ceb81c952f23b0898f4f768b048e87f4c7c193f970d83248a2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cbde0cfe56b953fbee3a2fed6ea3cd13e6cdb0dd0fa74414b488295feecdf5bc_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cbde0cfe56b953fbee3a2fed6ea3cd13e6cdb0dd0fa74414b488295feecdf5bc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cbde0cfe56b953fbee3a2fed6ea3cd13e6cdb0dd0fa74414b488295feecdf5bc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2ba313bef314b9e69e1b2a545ab54b0fbfec2d5a6c8b558dccf18abaa7d7e33e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2ba313bef314b9e69e1b2a545ab54b0fbfec2d5a6c8b558dccf18abaa7d7e33e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2ba313bef314b9e69e1b2a545ab54b0fbfec2d5a6c8b558dccf18abaa7d7e33e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9848ebd13facf8daf9ca0f32295a280ca5d4dff1d48b9f3e8c0b249b616278aa_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9848ebd13facf8daf9ca0f32295a280ca5d4dff1d48b9f3e8c0b249b616278aa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9848ebd13facf8daf9ca0f32295a280ca5d4dff1d48b9f3e8c0b249b616278aa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ae1bc048acdaaf5dab22505faec4c6b0c582b97023409da8ceb84d983494a0b2_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ae1bc048acdaaf5dab22505faec4c6b0c582b97023409da8ceb84d983494a0b2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ae1bc048acdaaf5dab22505faec4c6b0c582b97023409da8ceb84d983494a0b2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f8a862ce45dd686fb79c68036e611e15ce84922dfc64f847abcf6b65aa55742a_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f8a862ce45dd686fb79c68036e611e15ce84922dfc64f847abcf6b65aa55742a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f8a862ce45dd686fb79c68036e611e15ce84922dfc64f847abcf6b65aa55742a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:11d975797a78fdaca7e28cc15699aaee700b3ac8185bd5d019ecc2a51980ef10_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:11d975797a78fdaca7e28cc15699aaee700b3ac8185bd5d019ecc2a51980ef10_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:11d975797a78fdaca7e28cc15699aaee700b3ac8185bd5d019ecc2a51980ef10_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:40debe8017daf2ff3c5b17e89a4ab7e96cb717ae7bddcec305fb1eab8bbce0bb_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:40debe8017daf2ff3c5b17e89a4ab7e96cb717ae7bddcec305fb1eab8bbce0bb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:40debe8017daf2ff3c5b17e89a4ab7e96cb717ae7bddcec305fb1eab8bbce0bb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aa195335b903dcf873590deea8e425735760fee97ab33c5b648bfea1aacfa894_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aa195335b903dcf873590deea8e425735760fee97ab33c5b648bfea1aacfa894_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aa195335b903dcf873590deea8e425735760fee97ab33c5b648bfea1aacfa894_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d71c752e32a996fda35a49d7c7ab959689a91197b0e229481891a03c151d48f7_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d71c752e32a996fda35a49d7c7ab959689a91197b0e229481891a03c151d48f7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d71c752e32a996fda35a49d7c7ab959689a91197b0e229481891a03c151d48f7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:666c36444702f862ad1df16b8dc76f3a8f7b4eba8d63473a4cacfcd34c7ca914_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:666c36444702f862ad1df16b8dc76f3a8f7b4eba8d63473a4cacfcd34c7ca914_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:666c36444702f862ad1df16b8dc76f3a8f7b4eba8d63473a4cacfcd34c7ca914_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:836090b24936b955f5b60d236ae328e50ac91ba3cc367249cb5d7762cb15ebc6_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:836090b24936b955f5b60d236ae328e50ac91ba3cc367249cb5d7762cb15ebc6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:836090b24936b955f5b60d236ae328e50ac91ba3cc367249cb5d7762cb15ebc6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:837118a81cc9bdc984af5e9a3f4fedeae4489ba4aa98cd6513dbdaece6acea61_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:837118a81cc9bdc984af5e9a3f4fedeae4489ba4aa98cd6513dbdaece6acea61_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:837118a81cc9bdc984af5e9a3f4fedeae4489ba4aa98cd6513dbdaece6acea61_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8bcaefae8c33ff10f758558796e4e90193b1ce2ad3ece24a21ab93a7e685dfb2_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8bcaefae8c33ff10f758558796e4e90193b1ce2ad3ece24a21ab93a7e685dfb2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8bcaefae8c33ff10f758558796e4e90193b1ce2ad3ece24a21ab93a7e685dfb2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3fccc681700104f6edd949e78d406f8c10375739f4ce8c5c23c9e85b69b1f201_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3fccc681700104f6edd949e78d406f8c10375739f4ce8c5c23c9e85b69b1f201_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3fccc681700104f6edd949e78d406f8c10375739f4ce8c5c23c9e85b69b1f201_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac846a2c18b90026c941cc2fcd91197ca909f985f0cfc14e91fa8c0cf2b10b5_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac846a2c18b90026c941cc2fcd91197ca909f985f0cfc14e91fa8c0cf2b10b5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac846a2c18b90026c941cc2fcd91197ca909f985f0cfc14e91fa8c0cf2b10b5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:96f715b9440bfb17ea68aa161b833ac33265b372e174123bc10dac3eba00a872_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:96f715b9440bfb17ea68aa161b833ac33265b372e174123bc10dac3eba00a872_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:96f715b9440bfb17ea68aa161b833ac33265b372e174123bc10dac3eba00a872_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a7750c02c168c6243c3cd666816d5a4be224e3799d9f7d626cf7e64f07cf06f8_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a7750c02c168c6243c3cd666816d5a4be224e3799d9f7d626cf7e64f07cf06f8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a7750c02c168c6243c3cd666816d5a4be224e3799d9f7d626cf7e64f07cf06f8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:32286da133273dd699de38a8ea62c46b66fd0f0271788ba6b205ce7e34fd5ff6_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:32286da133273dd699de38a8ea62c46b66fd0f0271788ba6b205ce7e34fd5ff6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:32286da133273dd699de38a8ea62c46b66fd0f0271788ba6b205ce7e34fd5ff6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:34faf675b9e5361a23ee97d02ae1257feb38fda6e287b3b2c67e0b2e4e3ab06c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:34faf675b9e5361a23ee97d02ae1257feb38fda6e287b3b2c67e0b2e4e3ab06c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:34faf675b9e5361a23ee97d02ae1257feb38fda6e287b3b2c67e0b2e4e3ab06c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:997ea290d800e3599f44e72cea8bdb65876dba2483d486938e2d024b1b9a4fae_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:997ea290d800e3599f44e72cea8bdb65876dba2483d486938e2d024b1b9a4fae_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:997ea290d800e3599f44e72cea8bdb65876dba2483d486938e2d024b1b9a4fae_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b329d7566ac8f0b7f45be16a1b364e249036c2c8f703af70c9965240f682f808_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b329d7566ac8f0b7f45be16a1b364e249036c2c8f703af70c9965240f682f808_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b329d7566ac8f0b7f45be16a1b364e249036c2c8f703af70c9965240f682f808_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:309782f6dc79d9760dde0265959260871b592a5586bf4073e9561e813f316816_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:309782f6dc79d9760dde0265959260871b592a5586bf4073e9561e813f316816_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:309782f6dc79d9760dde0265959260871b592a5586bf4073e9561e813f316816_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:529879780fd60bb296f0d2656d7d5805459827820b0b07e839909032ec9fbc17_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:529879780fd60bb296f0d2656d7d5805459827820b0b07e839909032ec9fbc17_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:529879780fd60bb296f0d2656d7d5805459827820b0b07e839909032ec9fbc17_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9a12ba31f5a9e9e4b8114ed30bf9a067cd5b92430c35905224899a819c627741_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9a12ba31f5a9e9e4b8114ed30bf9a067cd5b92430c35905224899a819c627741_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9a12ba31f5a9e9e4b8114ed30bf9a067cd5b92430c35905224899a819c627741_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ee31620709847e19ee56a6187986df168cc55a41e86bee1488291ff6a0415d31_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ee31620709847e19ee56a6187986df168cc55a41e86bee1488291ff6a0415d31_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ee31620709847e19ee56a6187986df168cc55a41e86bee1488291ff6a0415d31_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:16f45167a5407ccf892d7518ca3c7a9912d5d0cc3f07446cfd3a1de175e5321a_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:16f45167a5407ccf892d7518ca3c7a9912d5d0cc3f07446cfd3a1de175e5321a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:16f45167a5407ccf892d7518ca3c7a9912d5d0cc3f07446cfd3a1de175e5321a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3ec816ffcd991bf5082f28a7edad858d9b02cd65f8e23ca2e320c41a33a0cd79_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3ec816ffcd991bf5082f28a7edad858d9b02cd65f8e23ca2e320c41a33a0cd79_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3ec816ffcd991bf5082f28a7edad858d9b02cd65f8e23ca2e320c41a33a0cd79_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:50e0dcc3cf9d804afd0a8a3f633f36283817569fa1f5b7cad47db6cfc61c4a48_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:50e0dcc3cf9d804afd0a8a3f633f36283817569fa1f5b7cad47db6cfc61c4a48_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:50e0dcc3cf9d804afd0a8a3f633f36283817569fa1f5b7cad47db6cfc61c4a48_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:af6e2eef8ff2eadcff4cd975245ba0cdc56f04931b248cde6d581d2d17582fd6_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:af6e2eef8ff2eadcff4cd975245ba0cdc56f04931b248cde6d581d2d17582fd6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:af6e2eef8ff2eadcff4cd975245ba0cdc56f04931b248cde6d581d2d17582fd6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29b6202fa854ec12e85774564ed5da58d314916d5843aa6032428c3cbf97123f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29b6202fa854ec12e85774564ed5da58d314916d5843aa6032428c3cbf97123f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29b6202fa854ec12e85774564ed5da58d314916d5843aa6032428c3cbf97123f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8c019754ed9656d55c293ce39412f910b0f3ac833615aaa03e961183c4831fd3_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8c019754ed9656d55c293ce39412f910b0f3ac833615aaa03e961183c4831fd3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8c019754ed9656d55c293ce39412f910b0f3ac833615aaa03e961183c4831fd3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a985f0116d10743bdde5e34fb181c4639ff0941caa66a3590713ea5d2586115c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a985f0116d10743bdde5e34fb181c4639ff0941caa66a3590713ea5d2586115c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a985f0116d10743bdde5e34fb181c4639ff0941caa66a3590713ea5d2586115c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b01b10b5836dae32a5b9938ba42fd4db2ae33a6b311da4e0c54ce0e48668ddf1_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b01b10b5836dae32a5b9938ba42fd4db2ae33a6b311da4e0c54ce0e48668ddf1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b01b10b5836dae32a5b9938ba42fd4db2ae33a6b311da4e0c54ce0e48668ddf1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:64a243eb83f743985213e3c255f7ae58909fd3a4ab69bce80b30361bc9cd9225_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:64a243eb83f743985213e3c255f7ae58909fd3a4ab69bce80b30361bc9cd9225_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:64a243eb83f743985213e3c255f7ae58909fd3a4ab69bce80b30361bc9cd9225_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:995d3fcffd3f156dcd8831241e80223d35b6a150d9d72e89bf639b6ef6f2b81a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:995d3fcffd3f156dcd8831241e80223d35b6a150d9d72e89bf639b6ef6f2b81a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:995d3fcffd3f156dcd8831241e80223d35b6a150d9d72e89bf639b6ef6f2b81a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:aa7c8a340787569438c3c7515d62384f9a5ecdc53e400cc6768bc92c940efda5_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:aa7c8a340787569438c3c7515d62384f9a5ecdc53e400cc6768bc92c940efda5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:aa7c8a340787569438c3c7515d62384f9a5ecdc53e400cc6768bc92c940efda5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:ee434038f9c8039bb2e2729584617a8d1b2554cb1e981f24a746badcc63c9022_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:ee434038f9c8039bb2e2729584617a8d1b2554cb1e981f24a746badcc63c9022_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:ee434038f9c8039bb2e2729584617a8d1b2554cb1e981f24a746badcc63c9022_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:772cccd41fa1d467cc54dec80bb7de08fc746507148f6220360c89f3f731c31f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:772cccd41fa1d467cc54dec80bb7de08fc746507148f6220360c89f3f731c31f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:772cccd41fa1d467cc54dec80bb7de08fc746507148f6220360c89f3f731c31f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:80c44734612ee4b1c13c995b1583a317e4742755ddd9ae515d6b9c61ecb5f152_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:80c44734612ee4b1c13c995b1583a317e4742755ddd9ae515d6b9c61ecb5f152_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:80c44734612ee4b1c13c995b1583a317e4742755ddd9ae515d6b9c61ecb5f152_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ae27d39fe63e4d5859648c7cc80b0fdf8ab8072bb8ecb34d21790552274a7abc_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ae27d39fe63e4d5859648c7cc80b0fdf8ab8072bb8ecb34d21790552274a7abc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ae27d39fe63e4d5859648c7cc80b0fdf8ab8072bb8ecb34d21790552274a7abc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:cc9a958fbda1e4df8e235a0ae4c62d23e2e02dfcf25c3c18c3dfc8bcc787b7f3_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:cc9a958fbda1e4df8e235a0ae4c62d23e2e02dfcf25c3c18c3dfc8bcc787b7f3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:cc9a958fbda1e4df8e235a0ae4c62d23e2e02dfcf25c3c18c3dfc8bcc787b7f3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:223602e0d30df9f086cec5c4f63562fd46f46726c44e186a5fec80f57689bc24_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:223602e0d30df9f086cec5c4f63562fd46f46726c44e186a5fec80f57689bc24_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:223602e0d30df9f086cec5c4f63562fd46f46726c44e186a5fec80f57689bc24_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7099a6800e9cd28758ace736f2c602a223f61dc00fd45def548e6d9a4bd23539_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7099a6800e9cd28758ace736f2c602a223f61dc00fd45def548e6d9a4bd23539_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7099a6800e9cd28758ace736f2c602a223f61dc00fd45def548e6d9a4bd23539_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:af138219459f8f23471300a38c65d1d0c580ab93b30c63798d51e8891a948afd_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:af138219459f8f23471300a38c65d1d0c580ab93b30c63798d51e8891a948afd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:af138219459f8f23471300a38c65d1d0c580ab93b30c63798d51e8891a948afd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d7da61ad815088b8c671d5dde3b5878fff0083776e1618c3a11594e6f08c26b4_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d7da61ad815088b8c671d5dde3b5878fff0083776e1618c3a11594e6f08c26b4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d7da61ad815088b8c671d5dde3b5878fff0083776e1618c3a11594e6f08c26b4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:18eace0b9a62e03ca9e882c582a3ca9362a14488044b9b30076447ce3731206b_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:18eace0b9a62e03ca9e882c582a3ca9362a14488044b9b30076447ce3731206b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:18eace0b9a62e03ca9e882c582a3ca9362a14488044b9b30076447ce3731206b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:2dc26c9c7dd35b78f4ed2c520337631bc45fb10076d94e52d9a632dd66982765_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2dc26c9c7dd35b78f4ed2c520337631bc45fb10076d94e52d9a632dd66982765_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:2dc26c9c7dd35b78f4ed2c520337631bc45fb10076d94e52d9a632dd66982765_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ad7c164753be2cf26a2c69aacb95f5d91e5b1120dac43cb2ec505794fd98fb7_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ad7c164753be2cf26a2c69aacb95f5d91e5b1120dac43cb2ec505794fd98fb7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ad7c164753be2cf26a2c69aacb95f5d91e5b1120dac43cb2ec505794fd98fb7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:5b23ce65b543c607e5547f2bb71866255794752a920b7f644fb203086cabae72_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5b23ce65b543c607e5547f2bb71866255794752a920b7f644fb203086cabae72_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:5b23ce65b543c607e5547f2bb71866255794752a920b7f644fb203086cabae72_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:385e0ff7ff74b73dac4393c5ed5d700cb3a1289d501917dd44a6adee10f492b9_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:385e0ff7ff74b73dac4393c5ed5d700cb3a1289d501917dd44a6adee10f492b9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:385e0ff7ff74b73dac4393c5ed5d700cb3a1289d501917dd44a6adee10f492b9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4393f322b7404940430e70469c0ede12e724564e87c3359946e349cea2304a11_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4393f322b7404940430e70469c0ede12e724564e87c3359946e349cea2304a11_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4393f322b7404940430e70469c0ede12e724564e87c3359946e349cea2304a11_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5ba8673706092251814d05e8dc3d6de7e74faf5829c57dae0e3634cb6e80aec5_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5ba8673706092251814d05e8dc3d6de7e74faf5829c57dae0e3634cb6e80aec5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5ba8673706092251814d05e8dc3d6de7e74faf5829c57dae0e3634cb6e80aec5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7cce8b979af738044110eae0d3f16db2e70178b32b340b7f98c339c6c1c80791_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7cce8b979af738044110eae0d3f16db2e70178b32b340b7f98c339c6c1c80791_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7cce8b979af738044110eae0d3f16db2e70178b32b340b7f98c339c6c1c80791_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:070167681620cee73ddfffac875e999f5a32c5ba48fca753ba907671c70e3ba3_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:070167681620cee73ddfffac875e999f5a32c5ba48fca753ba907671c70e3ba3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:070167681620cee73ddfffac875e999f5a32c5ba48fca753ba907671c70e3ba3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3ae7edcafadd5fc3a2ce15754828efe17dd81a7fe95759f5d10fb843d8f0cff0_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3ae7edcafadd5fc3a2ce15754828efe17dd81a7fe95759f5d10fb843d8f0cff0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3ae7edcafadd5fc3a2ce15754828efe17dd81a7fe95759f5d10fb843d8f0cff0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:4465d88b33622cf161e2df43aafe3fbedbd4e63f833a729df6ec5d6ffbb23b1a_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:4465d88b33622cf161e2df43aafe3fbedbd4e63f833a729df6ec5d6ffbb23b1a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:4465d88b33622cf161e2df43aafe3fbedbd4e63f833a729df6ec5d6ffbb23b1a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f0dccb2d388210d13763e44e7aaf06712b1c463b73698566b32665030a881dec_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f0dccb2d388210d13763e44e7aaf06712b1c463b73698566b32665030a881dec_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f0dccb2d388210d13763e44e7aaf06712b1c463b73698566b32665030a881dec_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:60a1f3345766ea95b39394925fcae2358dd8cc819a0f7b187363bff9f3bd1bad_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:60a1f3345766ea95b39394925fcae2358dd8cc819a0f7b187363bff9f3bd1bad_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:60a1f3345766ea95b39394925fcae2358dd8cc819a0f7b187363bff9f3bd1bad_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ea484b41505f1e5b8ddade45cf6f89e7b22ad4b81d740e9db3b4263672611398_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ea484b41505f1e5b8ddade45cf6f89e7b22ad4b81d740e9db3b4263672611398_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ea484b41505f1e5b8ddade45cf6f89e7b22ad4b81d740e9db3b4263672611398_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0a527723fa338e5204f37b50f7c3ea7f46055a91f391aa12f5ff91dfc621b45b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0a527723fa338e5204f37b50f7c3ea7f46055a91f391aa12f5ff91dfc621b45b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0a527723fa338e5204f37b50f7c3ea7f46055a91f391aa12f5ff91dfc621b45b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6fd265148a4fd19ed6f39345ae982687a6ccfadefb2dc96af15737550c46891a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6fd265148a4fd19ed6f39345ae982687a6ccfadefb2dc96af15737550c46891a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6fd265148a4fd19ed6f39345ae982687a6ccfadefb2dc96af15737550c46891a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1df097f85a3b46c3624fc2b59b6755ec1dd1bb6843ce84fceca2c40b8af74eda_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1df097f85a3b46c3624fc2b59b6755ec1dd1bb6843ce84fceca2c40b8af74eda_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1df097f85a3b46c3624fc2b59b6755ec1dd1bb6843ce84fceca2c40b8af74eda_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fb4965e61b337cbbc13b082ccfc8ba17f7c98e3a9946a2429967203a71ab5ffa_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fb4965e61b337cbbc13b082ccfc8ba17f7c98e3a9946a2429967203a71ab5ffa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fb4965e61b337cbbc13b082ccfc8ba17f7c98e3a9946a2429967203a71ab5ffa_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:19233828b527446a7c210823b43ab95d309ed58c124ce07bf2cc70f809a6abc4_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:19233828b527446a7c210823b43ab95d309ed58c124ce07bf2cc70f809a6abc4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:19233828b527446a7c210823b43ab95d309ed58c124ce07bf2cc70f809a6abc4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:953d7116656841f449d6b295f0753a0d39a2474b3b6a4b6d6240d53e357ff86b_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:953d7116656841f449d6b295f0753a0d39a2474b3b6a4b6d6240d53e357ff86b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:953d7116656841f449d6b295f0753a0d39a2474b3b6a4b6d6240d53e357ff86b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad08029d8e31a6c80b9d25947ea267b78ddc0e7f3a97dc1dbc075dc4a02283ff_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad08029d8e31a6c80b9d25947ea267b78ddc0e7f3a97dc1dbc075dc4a02283ff_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad08029d8e31a6c80b9d25947ea267b78ddc0e7f3a97dc1dbc075dc4a02283ff_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:e163cc3aff166d01ced5f33c6f5c9145a330cd35a7f82538017338ff9ac43f19_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:e163cc3aff166d01ced5f33c6f5c9145a330cd35a7f82538017338ff9ac43f19_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:e163cc3aff166d01ced5f33c6f5c9145a330cd35a7f82538017338ff9ac43f19_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:039ccc1b8843a4dae1d65e616c23066e2e921f5f4693f52a6c6a9e0091ee298f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:039ccc1b8843a4dae1d65e616c23066e2e921f5f4693f52a6c6a9e0091ee298f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:039ccc1b8843a4dae1d65e616c23066e2e921f5f4693f52a6c6a9e0091ee298f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6c5f2e308f308f3892acb46179df4b6bd460b234a416f4414194005cf915ef5b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6c5f2e308f308f3892acb46179df4b6bd460b234a416f4414194005cf915ef5b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6c5f2e308f308f3892acb46179df4b6bd460b234a416f4414194005cf915ef5b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ed23039296c3dbd7ddce99ee1a538b7b83e32e827932e3d00b929d0f9de13a91_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ed23039296c3dbd7ddce99ee1a538b7b83e32e827932e3d00b929d0f9de13a91_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ed23039296c3dbd7ddce99ee1a538b7b83e32e827932e3d00b929d0f9de13a91_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:efccb4622508c44f67b3693732b8da8bf28bf80097723497289cc3cd3180d19f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:efccb4622508c44f67b3693732b8da8bf28bf80097723497289cc3cd3180d19f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:efccb4622508c44f67b3693732b8da8bf28bf80097723497289cc3cd3180d19f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:77dfdc4b6e35954e750b90627d720a0f7a3cb6fe224459c09f5de359c589f939_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:77dfdc4b6e35954e750b90627d720a0f7a3cb6fe224459c09f5de359c589f939_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:77dfdc4b6e35954e750b90627d720a0f7a3cb6fe224459c09f5de359c589f939_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c4ad92a5a5a030bd90ad8be8df3914f70dad8fa8e2c984144791685c7150132_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c4ad92a5a5a030bd90ad8be8df3914f70dad8fa8e2c984144791685c7150132_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c4ad92a5a5a030bd90ad8be8df3914f70dad8fa8e2c984144791685c7150132_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:924c6a190d3e2ccf26e3486fe09b892629736bbad223bf608cb02cc4ca2b5991_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:924c6a190d3e2ccf26e3486fe09b892629736bbad223bf608cb02cc4ca2b5991_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:924c6a190d3e2ccf26e3486fe09b892629736bbad223bf608cb02cc4ca2b5991_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f75d1ef206cef5035c7a4e2d0f8e73330eee059919cc4283cf0ae8711a3e7865_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f75d1ef206cef5035c7a4e2d0f8e73330eee059919cc4283cf0ae8711a3e7865_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f75d1ef206cef5035c7a4e2d0f8e73330eee059919cc4283cf0ae8711a3e7865_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3daca8e471b071e56c8f9551af5d9afd8c2eb1e29cf87e09dc48214cc885e262_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3daca8e471b071e56c8f9551af5d9afd8c2eb1e29cf87e09dc48214cc885e262_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3daca8e471b071e56c8f9551af5d9afd8c2eb1e29cf87e09dc48214cc885e262_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4a3b3272a261a24b3fa681898aa7d0c55e8a8f67f719200e05e580b0606c16e4_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4a3b3272a261a24b3fa681898aa7d0c55e8a8f67f719200e05e580b0606c16e4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4a3b3272a261a24b3fa681898aa7d0c55e8a8f67f719200e05e580b0606c16e4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:683faf9d19ecd98b5cc92545e3628a1049b13156136f86626896572e7401a356_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:683faf9d19ecd98b5cc92545e3628a1049b13156136f86626896572e7401a356_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:683faf9d19ecd98b5cc92545e3628a1049b13156136f86626896572e7401a356_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e294500f174a12001306f888e6bdf9e10d3d30bf8554bccd5c82f1227de196b0_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e294500f174a12001306f888e6bdf9e10d3d30bf8554bccd5c82f1227de196b0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e294500f174a12001306f888e6bdf9e10d3d30bf8554bccd5c82f1227de196b0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:08d7cbc7bf9e4d19e36b4fd5d27040329982b353032c525179227c3e15d30f32_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:08d7cbc7bf9e4d19e36b4fd5d27040329982b353032c525179227c3e15d30f32_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:08d7cbc7bf9e4d19e36b4fd5d27040329982b353032c525179227c3e15d30f32_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:58b18bfb4498e2a7890ee5979598decd1b9692168ee10ece35178e9c2191f430_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:58b18bfb4498e2a7890ee5979598decd1b9692168ee10ece35178e9c2191f430_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:58b18bfb4498e2a7890ee5979598decd1b9692168ee10ece35178e9c2191f430_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5eaf2d7d197bc327adb488bf3514d2ce6886900164bb8a7e3d8c92061baeb783_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5eaf2d7d197bc327adb488bf3514d2ce6886900164bb8a7e3d8c92061baeb783_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5eaf2d7d197bc327adb488bf3514d2ce6886900164bb8a7e3d8c92061baeb783_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9728bac89d23922ef66913d370ccaf943465509f8a068494d517984ff490f707_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9728bac89d23922ef66913d370ccaf943465509f8a068494d517984ff490f707_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9728bac89d23922ef66913d370ccaf943465509f8a068494d517984ff490f707_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6257b90eaa900f50cee0d5cf84c105158f70d9ad4a9829d5208cc261de3ab5e0_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6257b90eaa900f50cee0d5cf84c105158f70d9ad4a9829d5208cc261de3ab5e0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6257b90eaa900f50cee0d5cf84c105158f70d9ad4a9829d5208cc261de3ab5e0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:7b851c7bfbaaa9227d15850922fc76f76bc517f60be3c984e23d339fc2091eeb_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:7b851c7bfbaaa9227d15850922fc76f76bc517f60be3c984e23d339fc2091eeb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:7b851c7bfbaaa9227d15850922fc76f76bc517f60be3c984e23d339fc2091eeb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d6142179c8354154a885955351e093aea68de58f0cbae8ec631da2d3d8cba63a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d6142179c8354154a885955351e093aea68de58f0cbae8ec631da2d3d8cba63a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d6142179c8354154a885955351e093aea68de58f0cbae8ec631da2d3d8cba63a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d939f022cd84850c27b617d17d71edd7dcb549908b74ff92d5115dcb5149df28_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d939f022cd84850c27b617d17d71edd7dcb549908b74ff92d5115dcb5149df28_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d939f022cd84850c27b617d17d71edd7dcb549908b74ff92d5115dcb5149df28_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:530f79ee436e2ba7bf71f7cbc3b62c3be81665f5207555dec663565772158b99_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:530f79ee436e2ba7bf71f7cbc3b62c3be81665f5207555dec663565772158b99_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:530f79ee436e2ba7bf71f7cbc3b62c3be81665f5207555dec663565772158b99_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9aad9fae53a218cf8bd83d50b3df6163a9f0ef6fe742a9527d0cc267fc8164a5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9aad9fae53a218cf8bd83d50b3df6163a9f0ef6fe742a9527d0cc267fc8164a5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9aad9fae53a218cf8bd83d50b3df6163a9f0ef6fe742a9527d0cc267fc8164a5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c43b8d25569a9a26f77e1c1b6be0fff4467a9dbb8117ff562c2e650a2a62aeba_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c43b8d25569a9a26f77e1c1b6be0fff4467a9dbb8117ff562c2e650a2a62aeba_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c43b8d25569a9a26f77e1c1b6be0fff4467a9dbb8117ff562c2e650a2a62aeba_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f0b3d8e6b527fee7bb63906136288b117ae31a38ad93aef266b7e0d84dff4f5a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f0b3d8e6b527fee7bb63906136288b117ae31a38ad93aef266b7e0d84dff4f5a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f0b3d8e6b527fee7bb63906136288b117ae31a38ad93aef266b7e0d84dff4f5a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26fc6ee878e8b9b76a61d203bfd0e01a61175ae9d6e350b4c8a01afc8e388080_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26fc6ee878e8b9b76a61d203bfd0e01a61175ae9d6e350b4c8a01afc8e388080_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26fc6ee878e8b9b76a61d203bfd0e01a61175ae9d6e350b4c8a01afc8e388080_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:93b66467306d137b06f29b307a72f45eb3a9149a15cdce0bbefd93a9034de3a7_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:93b66467306d137b06f29b307a72f45eb3a9149a15cdce0bbefd93a9034de3a7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:93b66467306d137b06f29b307a72f45eb3a9149a15cdce0bbefd93a9034de3a7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ada0c79488c2d4b388d12f9e4238054ec9e038bde604659fc70b1c368ad36964_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ada0c79488c2d4b388d12f9e4238054ec9e038bde604659fc70b1c368ad36964_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ada0c79488c2d4b388d12f9e4238054ec9e038bde604659fc70b1c368ad36964_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eaf2dff09f9cdbb55d3486888f5e18db19f535767aca754ea0ead9129bc6ca0e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eaf2dff09f9cdbb55d3486888f5e18db19f535767aca754ea0ead9129bc6ca0e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eaf2dff09f9cdbb55d3486888f5e18db19f535767aca754ea0ead9129bc6ca0e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4a738c52c3e5bcf3c1d94b679aaea8e91b3cb3a3f981be534d8ee1274d8455c1_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4a738c52c3e5bcf3c1d94b679aaea8e91b3cb3a3f981be534d8ee1274d8455c1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4a738c52c3e5bcf3c1d94b679aaea8e91b3cb3a3f981be534d8ee1274d8455c1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66d6f7a10465049938e81ddc1e4c13b2b375b2c92b39af99b2c7fb8bfe2d5e3c_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66d6f7a10465049938e81ddc1e4c13b2b375b2c92b39af99b2c7fb8bfe2d5e3c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66d6f7a10465049938e81ddc1e4c13b2b375b2c92b39af99b2c7fb8bfe2d5e3c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:75e8df980f8d21fae7af1185852e235db098190d2e3098c7cc9086236a60eeba_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:75e8df980f8d21fae7af1185852e235db098190d2e3098c7cc9086236a60eeba_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:75e8df980f8d21fae7af1185852e235db098190d2e3098c7cc9086236a60eeba_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e819fb1752cc974f7ec462dd49c52f9575c7b0db53f8cda50121ce1a391ef0a3_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e819fb1752cc974f7ec462dd49c52f9575c7b0db53f8cda50121ce1a391ef0a3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e819fb1752cc974f7ec462dd49c52f9575c7b0db53f8cda50121ce1a391ef0a3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5c0a5ac804bc8bc5f5e368bab64945e8e6b506358e4511387869f9bf458ba3f3_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5c0a5ac804bc8bc5f5e368bab64945e8e6b506358e4511387869f9bf458ba3f3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5c0a5ac804bc8bc5f5e368bab64945e8e6b506358e4511387869f9bf458ba3f3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:9f541ec9efd0d0553a8648c8048c7b91854c3d8419e07c909e621d2ff5276c60_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:9f541ec9efd0d0553a8648c8048c7b91854c3d8419e07c909e621d2ff5276c60_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:9f541ec9efd0d0553a8648c8048c7b91854c3d8419e07c909e621d2ff5276c60_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:cc987d4c88966417b6c45bc66dd878cd885b4805c9e2885fcbaca1734e7bbcb3_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:cc987d4c88966417b6c45bc66dd878cd885b4805c9e2885fcbaca1734e7bbcb3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:cc987d4c88966417b6c45bc66dd878cd885b4805c9e2885fcbaca1734e7bbcb3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e88d308e0ea7524be29e017096eb77ca6df3c8b3ea58a8a6a16dd7fc2fd5949c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e88d308e0ea7524be29e017096eb77ca6df3c8b3ea58a8a6a16dd7fc2fd5949c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e88d308e0ea7524be29e017096eb77ca6df3c8b3ea58a8a6a16dd7fc2fd5949c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:231178be9e1d4d547dc7705f82f8e529672f47786de781ca53424543d9b1e073_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:231178be9e1d4d547dc7705f82f8e529672f47786de781ca53424543d9b1e073_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:231178be9e1d4d547dc7705f82f8e529672f47786de781ca53424543d9b1e073_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3dc25f71c79a131cdb79f72e3c6bd2a3c987728e52d3261c5935f15b1466150f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3dc25f71c79a131cdb79f72e3c6bd2a3c987728e52d3261c5935f15b1466150f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3dc25f71c79a131cdb79f72e3c6bd2a3c987728e52d3261c5935f15b1466150f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b05e21c1862a49132611c23c1c0b589c5ee29b98ef5711244a7c32438f55f7fd_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b05e21c1862a49132611c23c1c0b589c5ee29b98ef5711244a7c32438f55f7fd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b05e21c1862a49132611c23c1c0b589c5ee29b98ef5711244a7c32438f55f7fd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f1a5782a8202fa153b78b53324954109911991dffa9d7997229da1c6ceff7d45_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f1a5782a8202fa153b78b53324954109911991dffa9d7997229da1c6ceff7d45_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f1a5782a8202fa153b78b53324954109911991dffa9d7997229da1c6ceff7d45_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:17bcf0374c1cdded8c518835d832bac6b8ca75e05efeb0a6528e0ee49643bb35_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:17bcf0374c1cdded8c518835d832bac6b8ca75e05efeb0a6528e0ee49643bb35_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:17bcf0374c1cdded8c518835d832bac6b8ca75e05efeb0a6528e0ee49643bb35_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2873f8aca5b0ead479497c023010d6cf324fa893522eaa924f10695a63c1045d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2873f8aca5b0ead479497c023010d6cf324fa893522eaa924f10695a63c1045d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2873f8aca5b0ead479497c023010d6cf324fa893522eaa924f10695a63c1045d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ce52fcb8c19848e8fc81e8cfca9c47e1a257339eb96e6a5e4d214066dad9afe6_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ce52fcb8c19848e8fc81e8cfca9c47e1a257339eb96e6a5e4d214066dad9afe6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ce52fcb8c19848e8fc81e8cfca9c47e1a257339eb96e6a5e4d214066dad9afe6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1f93b71bd8b9bd62776c67cd5c41b93f94b4b60b58a06625e7d57548518f3669_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1f93b71bd8b9bd62776c67cd5c41b93f94b4b60b58a06625e7d57548518f3669_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1f93b71bd8b9bd62776c67cd5c41b93f94b4b60b58a06625e7d57548518f3669_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5599c06a31ac2bdd1a8f190f5095a1614788b2aedab9fc4f454cdbdcff9bca9f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5599c06a31ac2bdd1a8f190f5095a1614788b2aedab9fc4f454cdbdcff9bca9f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5599c06a31ac2bdd1a8f190f5095a1614788b2aedab9fc4f454cdbdcff9bca9f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e79429feca8812a6d1bb6316906b670ccbb89c506d0f47a0ec8568cd9975a479_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e79429feca8812a6d1bb6316906b670ccbb89c506d0f47a0ec8568cd9975a479_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e79429feca8812a6d1bb6316906b670ccbb89c506d0f47a0ec8568cd9975a479_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32526be8ad65ea6e3f70126e66ec2494364930f90aeaae32f1ea3611ac7e167e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32526be8ad65ea6e3f70126e66ec2494364930f90aeaae32f1ea3611ac7e167e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32526be8ad65ea6e3f70126e66ec2494364930f90aeaae32f1ea3611ac7e167e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:9575d057a034bdd890854a08559cc08013ac76dd0aaf2ef11e26a5734be590e9_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:9575d057a034bdd890854a08559cc08013ac76dd0aaf2ef11e26a5734be590e9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:9575d057a034bdd890854a08559cc08013ac76dd0aaf2ef11e26a5734be590e9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d6f6a6f074d7794ed9d7015ea7937582f0ad1d07b35d983dfc07236fa3323bde_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d6f6a6f074d7794ed9d7015ea7937582f0ad1d07b35d983dfc07236fa3323bde_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d6f6a6f074d7794ed9d7015ea7937582f0ad1d07b35d983dfc07236fa3323bde_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:7246b6b2f38d276340ab7d46baf8e67166639d6bcdb75aa901ddc09999fedd92_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:7246b6b2f38d276340ab7d46baf8e67166639d6bcdb75aa901ddc09999fedd92_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:7246b6b2f38d276340ab7d46baf8e67166639d6bcdb75aa901ddc09999fedd92_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:87a0e8e9d89cbb753a2507abcb8b0b1b3258a7a88f5d632f174e6097789cc7c6_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:87a0e8e9d89cbb753a2507abcb8b0b1b3258a7a88f5d632f174e6097789cc7c6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:87a0e8e9d89cbb753a2507abcb8b0b1b3258a7a88f5d632f174e6097789cc7c6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:96069c3067b68f1e2942d7758c89426eefd21722db2d0b08ff5f1db39f2b12aa_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:96069c3067b68f1e2942d7758c89426eefd21722db2d0b08ff5f1db39f2b12aa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:96069c3067b68f1e2942d7758c89426eefd21722db2d0b08ff5f1db39f2b12aa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c2401f994e1783a28eab6f7289a25a6dfb9e6edbf6b424dd0ee9320469cc3a7_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c2401f994e1783a28eab6f7289a25a6dfb9e6edbf6b424dd0ee9320469cc3a7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c2401f994e1783a28eab6f7289a25a6dfb9e6edbf6b424dd0ee9320469cc3a7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3eaeaa507833c96c48161f8fc13d4ade13b4ad85f397a41574326e7ef81239a1_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3eaeaa507833c96c48161f8fc13d4ade13b4ad85f397a41574326e7ef81239a1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3eaeaa507833c96c48161f8fc13d4ade13b4ad85f397a41574326e7ef81239a1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e84c44ad88440bde18b3f65817a1ffd69ce15d48f8772dd82f5984d68c73928_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e84c44ad88440bde18b3f65817a1ffd69ce15d48f8772dd82f5984d68c73928_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e84c44ad88440bde18b3f65817a1ffd69ce15d48f8772dd82f5984d68c73928_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6914c074989cf18597497721c5b4006874a7e9a12fff27c513f8e6ab049be83c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6914c074989cf18597497721c5b4006874a7e9a12fff27c513f8e6ab049be83c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6914c074989cf18597497721c5b4006874a7e9a12fff27c513f8e6ab049be83c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4b2274d948f48f8cc0df96f3bccd2d610034ac4495c977bdda82c440b65092c6_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4b2274d948f48f8cc0df96f3bccd2d610034ac4495c977bdda82c440b65092c6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4b2274d948f48f8cc0df96f3bccd2d610034ac4495c977bdda82c440b65092c6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:72ba74f4ad3c5c803af1c9388ed1c7186295b74429f7466304339f22deecd40f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:72ba74f4ad3c5c803af1c9388ed1c7186295b74429f7466304339f22deecd40f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:72ba74f4ad3c5c803af1c9388ed1c7186295b74429f7466304339f22deecd40f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d47a6d11b74143b03ababf249a83e8ca576752a2ad58482a2dda2986d79e7098_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d47a6d11b74143b03ababf249a83e8ca576752a2ad58482a2dda2986d79e7098_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d47a6d11b74143b03ababf249a83e8ca576752a2ad58482a2dda2986d79e7098_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d71b697e5c67952876677ad7d89394139d322dd6320943c1bc32fef9c501c326_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d71b697e5c67952876677ad7d89394139d322dd6320943c1bc32fef9c501c326_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d71b697e5c67952876677ad7d89394139d322dd6320943c1bc32fef9c501c326_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:3cf00020f76f7dd6428f49aee9060f70f2d5d73a7579cf8400ba22f8a3c16364_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:3cf00020f76f7dd6428f49aee9060f70f2d5d73a7579cf8400ba22f8a3c16364_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:3cf00020f76f7dd6428f49aee9060f70f2d5d73a7579cf8400ba22f8a3c16364_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8a9fc2fc1351bcf4a939eb506e5ac91788d65c5f1826c46d3b41e15e8ac7b3ab_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8a9fc2fc1351bcf4a939eb506e5ac91788d65c5f1826c46d3b41e15e8ac7b3ab_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8a9fc2fc1351bcf4a939eb506e5ac91788d65c5f1826c46d3b41e15e8ac7b3ab_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e16e35579e3696474f357bcd4bb3c77bdfdb1603b971c3267d08f8fd119da62a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e16e35579e3696474f357bcd4bb3c77bdfdb1603b971c3267d08f8fd119da62a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e16e35579e3696474f357bcd4bb3c77bdfdb1603b971c3267d08f8fd119da62a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f3623315e94aa6a0748d390674e9f2f8632bcadc5b8ccccd75bc45019cb5a9ce_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f3623315e94aa6a0748d390674e9f2f8632bcadc5b8ccccd75bc45019cb5a9ce_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f3623315e94aa6a0748d390674e9f2f8632bcadc5b8ccccd75bc45019cb5a9ce_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:bd3081cfa4a3a02061a6908b469dd9a0b987b5fd1dc73aa67bb2dc05ccd2c5d0_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:bd3081cfa4a3a02061a6908b469dd9a0b987b5fd1dc73aa67bb2dc05ccd2c5d0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:bd3081cfa4a3a02061a6908b469dd9a0b987b5fd1dc73aa67bb2dc05ccd2c5d0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c84b8c416b3b543d4406aa42eefdc1c02c12f2bdb1b7d56a3e5c0d9c549dec44_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c84b8c416b3b543d4406aa42eefdc1c02c12f2bdb1b7d56a3e5c0d9c549dec44_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c84b8c416b3b543d4406aa42eefdc1c02c12f2bdb1b7d56a3e5c0d9c549dec44_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ef6ee4f9fb6e0ebeca08a2a2dfd69cc6b5baeb5bdee0b3158f575b14398f3ad4_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ef6ee4f9fb6e0ebeca08a2a2dfd69cc6b5baeb5bdee0b3158f575b14398f3ad4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ef6ee4f9fb6e0ebeca08a2a2dfd69cc6b5baeb5bdee0b3158f575b14398f3ad4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ffb6610a0f2627dfd68731bde61d78df97e4ef5ba769dbfb9fe723dfff0a62cd_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ffb6610a0f2627dfd68731bde61d78df97e4ef5ba769dbfb9fe723dfff0a62cd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ffb6610a0f2627dfd68731bde61d78df97e4ef5ba769dbfb9fe723dfff0a62cd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:9329715c3820b10b14bd23f2f3e89ea1172886a3c61333d8b099019701f80619_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:9329715c3820b10b14bd23f2f3e89ea1172886a3c61333d8b099019701f80619_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:9329715c3820b10b14bd23f2f3e89ea1172886a3c61333d8b099019701f80619_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:cb9ffb3b3c64cc43b15f52a40235df199172800aa837ee2fa136c785312126a7_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:cb9ffb3b3c64cc43b15f52a40235df199172800aa837ee2fa136c785312126a7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:cb9ffb3b3c64cc43b15f52a40235df199172800aa837ee2fa136c785312126a7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:834b63c9cd783e684ce59e99d4b060af5f2d6b6027bc62793e511bd5ae91afc6_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:834b63c9cd783e684ce59e99d4b060af5f2d6b6027bc62793e511bd5ae91afc6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:834b63c9cd783e684ce59e99d4b060af5f2d6b6027bc62793e511bd5ae91afc6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c362a8609bd2a9b6ca073545e2ffc732949b1791929dacd899faea3c4176e984_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c362a8609bd2a9b6ca073545e2ffc732949b1791929dacd899faea3c4176e984_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c362a8609bd2a9b6ca073545e2ffc732949b1791929dacd899faea3c4176e984_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f050a78d1622d2a10a4549fa7d2340eacdfc80e4c1a628078a4a13006df99e35_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f050a78d1622d2a10a4549fa7d2340eacdfc80e4c1a628078a4a13006df99e35_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f050a78d1622d2a10a4549fa7d2340eacdfc80e4c1a628078a4a13006df99e35_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f32061109e6d1b72145ead1598d0a2065ccecb2ae424e743dd613b03992ba030_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f32061109e6d1b72145ead1598d0a2065ccecb2ae424e743dd613b03992ba030_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f32061109e6d1b72145ead1598d0a2065ccecb2ae424e743dd613b03992ba030_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0650df0f1f51958baf5fecd36385b4ad6afdccfc77ff0bdb90fb140a7e6a72af_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0650df0f1f51958baf5fecd36385b4ad6afdccfc77ff0bdb90fb140a7e6a72af_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0650df0f1f51958baf5fecd36385b4ad6afdccfc77ff0bdb90fb140a7e6a72af_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4c95f82bafd9f1a3207635da63f752252d94cf5d13405748bf9f1dc6d4e5f9bc_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4c95f82bafd9f1a3207635da63f752252d94cf5d13405748bf9f1dc6d4e5f9bc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4c95f82bafd9f1a3207635da63f752252d94cf5d13405748bf9f1dc6d4e5f9bc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:70ec142f9336133ffb3e4caebd30e579d59bcc3d52a3fd4c4642884103cd5134_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:70ec142f9336133ffb3e4caebd30e579d59bcc3d52a3fd4c4642884103cd5134_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:70ec142f9336133ffb3e4caebd30e579d59bcc3d52a3fd4c4642884103cd5134_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:11a23b0b5190d560d8a7e45c7ac015f71c18fac0f1672f2db84c55ec7d55f9ac_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:11a23b0b5190d560d8a7e45c7ac015f71c18fac0f1672f2db84c55ec7d55f9ac_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:11a23b0b5190d560d8a7e45c7ac015f71c18fac0f1672f2db84c55ec7d55f9ac_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e04e8d139638d3b8444961f636909cbf640ab494b88a738cebb3c6a7805e19e3_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e04e8d139638d3b8444961f636909cbf640ab494b88a738cebb3c6a7805e19e3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e04e8d139638d3b8444961f636909cbf640ab494b88a738cebb3c6a7805e19e3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:503da2bcb8b582dd98c685b81bd031aafd71e1bbfc8962b3c8b0ea9110e9f69c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:503da2bcb8b582dd98c685b81bd031aafd71e1bbfc8962b3c8b0ea9110e9f69c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:503da2bcb8b582dd98c685b81bd031aafd71e1bbfc8962b3c8b0ea9110e9f69c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:e1e3d49db220a1e3f4f540ec89e06b8a4bb7dc72cefa4b96cb278001154cb21c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:e1e3d49db220a1e3f4f540ec89e06b8a4bb7dc72cefa4b96cb278001154cb21c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:e1e3d49db220a1e3f4f540ec89e06b8a4bb7dc72cefa4b96cb278001154cb21c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:12908e94266b5a90846f50b7fe8688d66c359fb3fc3e9c317450ddb65b455076_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:12908e94266b5a90846f50b7fe8688d66c359fb3fc3e9c317450ddb65b455076_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:12908e94266b5a90846f50b7fe8688d66c359fb3fc3e9c317450ddb65b455076_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:587f806a8e6500d4dcced927409c0b582a658fee0f51c31c79736f8c31c3dea7_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:587f806a8e6500d4dcced927409c0b582a658fee0f51c31c79736f8c31c3dea7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:587f806a8e6500d4dcced927409c0b582a658fee0f51c31c79736f8c31c3dea7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8c53297adf899ca1152c61b10149db660a9146fe067476c82114287f564ac191_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8c53297adf899ca1152c61b10149db660a9146fe067476c82114287f564ac191_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8c53297adf899ca1152c61b10149db660a9146fe067476c82114287f564ac191_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e530b7dae37afa62a6c9def8c54b573975018b94b5a56fc88e218792b85237e3_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e530b7dae37afa62a6c9def8c54b573975018b94b5a56fc88e218792b85237e3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e530b7dae37afa62a6c9def8c54b573975018b94b5a56fc88e218792b85237e3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4cb9d96442ea8b54307369d340a8cca987471b191b21c9463027c9bddd754074_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4cb9d96442ea8b54307369d340a8cca987471b191b21c9463027c9bddd754074_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4cb9d96442ea8b54307369d340a8cca987471b191b21c9463027c9bddd754074_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:791d876a5d256f592916c167dc0919fd16e1251317356838146a5fde8fd8a6e1_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:791d876a5d256f592916c167dc0919fd16e1251317356838146a5fde8fd8a6e1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:791d876a5d256f592916c167dc0919fd16e1251317356838146a5fde8fd8a6e1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a9a8d43364851f839ae1bc62a807a983421cf5b41a7488f8da7e68b7261af056_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a9a8d43364851f839ae1bc62a807a983421cf5b41a7488f8da7e68b7261af056_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a9a8d43364851f839ae1bc62a807a983421cf5b41a7488f8da7e68b7261af056_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e1571e62821f55bcfb611afb286ff61773a16ac15a67da5bf210b5d141a6b3ef_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e1571e62821f55bcfb611afb286ff61773a16ac15a67da5bf210b5d141a6b3ef_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e1571e62821f55bcfb611afb286ff61773a16ac15a67da5bf210b5d141a6b3ef_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:21e4959e7a52ffdfd8df79a73177f02714f8689270c9a4aab4f390be59524042_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:21e4959e7a52ffdfd8df79a73177f02714f8689270c9a4aab4f390be59524042_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:21e4959e7a52ffdfd8df79a73177f02714f8689270c9a4aab4f390be59524042_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:51a465dd014fe567fc52613a127c932e386d2a6e5f1faf4fe1cbb1e6becf7e4a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:51a465dd014fe567fc52613a127c932e386d2a6e5f1faf4fe1cbb1e6becf7e4a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:51a465dd014fe567fc52613a127c932e386d2a6e5f1faf4fe1cbb1e6becf7e4a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:64f077c897c6ee0c9db36c7cc4f9913d1ed66afb822975974c40d98fc21bead0_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:64f077c897c6ee0c9db36c7cc4f9913d1ed66afb822975974c40d98fc21bead0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:64f077c897c6ee0c9db36c7cc4f9913d1ed66afb822975974c40d98fc21bead0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ed3e46a857f509e0c8a08c750cea6e1de65bb6a1f86933165b36ca5e45171377_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ed3e46a857f509e0c8a08c750cea6e1de65bb6a1f86933165b36ca5e45171377_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ed3e46a857f509e0c8a08c750cea6e1de65bb6a1f86933165b36ca5e45171377_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4b47b7c763f063e8afe3014f0f902d55ec6d1fbe832c2fc2f0585121f68c618b_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4b47b7c763f063e8afe3014f0f902d55ec6d1fbe832c2fc2f0585121f68c618b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4b47b7c763f063e8afe3014f0f902d55ec6d1fbe832c2fc2f0585121f68c618b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:affe71c5753db62c3117e7d4d8d3a79f3e076b740fe8895b5337211ac6809eb3_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:affe71c5753db62c3117e7d4d8d3a79f3e076b740fe8895b5337211ac6809eb3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:affe71c5753db62c3117e7d4d8d3a79f3e076b740fe8895b5337211ac6809eb3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:664fcca5d05f7993a6ca81942ea48894df00d46728bae7580f534891e47fa72c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:664fcca5d05f7993a6ca81942ea48894df00d46728bae7580f534891e47fa72c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:664fcca5d05f7993a6ca81942ea48894df00d46728bae7580f534891e47fa72c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b37fe0e3a3212b0e82bb27cdf4b84f4423e4886d2a3fff5ffe46be761e98aec8_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b37fe0e3a3212b0e82bb27cdf4b84f4423e4886d2a3fff5ffe46be761e98aec8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b37fe0e3a3212b0e82bb27cdf4b84f4423e4886d2a3fff5ffe46be761e98aec8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a2a838ee2839658272f41aba9d5e1b41fbb05039c1aee8a63eff7d14d7a1f0fc_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a2a838ee2839658272f41aba9d5e1b41fbb05039c1aee8a63eff7d14d7a1f0fc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a2a838ee2839658272f41aba9d5e1b41fbb05039c1aee8a63eff7d14d7a1f0fc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ffbee6c294475f3dbe6b73884fcb411b1e5303f9b549b7adfd24708b776eb306_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ffbee6c294475f3dbe6b73884fcb411b1e5303f9b549b7adfd24708b776eb306_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ffbee6c294475f3dbe6b73884fcb411b1e5303f9b549b7adfd24708b776eb306_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:43fd6e0b0d869a25c61ac074076a78a7f8f389a0c5247af03e7ce51392e90108_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:43fd6e0b0d869a25c61ac074076a78a7f8f389a0c5247af03e7ce51392e90108_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:43fd6e0b0d869a25c61ac074076a78a7f8f389a0c5247af03e7ce51392e90108_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:9f05231471d861b8e8a788a6f448aeeee16693fceea9521fd87e4f6a6b6d6c9d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:9f05231471d861b8e8a788a6f448aeeee16693fceea9521fd87e4f6a6b6d6c9d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:9f05231471d861b8e8a788a6f448aeeee16693fceea9521fd87e4f6a6b6d6c9d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:049dbb920b57cff7ffb88073192c4c843fef754775862e4d57d2373637e45c85_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:049dbb920b57cff7ffb88073192c4c843fef754775862e4d57d2373637e45c85_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:049dbb920b57cff7ffb88073192c4c843fef754775862e4d57d2373637e45c85_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3b801c6c05a17b0b1c763f0a87d4908ba4980ad09aa8f12dce6f3e11b8ca637b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3b801c6c05a17b0b1c763f0a87d4908ba4980ad09aa8f12dce6f3e11b8ca637b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3b801c6c05a17b0b1c763f0a87d4908ba4980ad09aa8f12dce6f3e11b8ca637b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5afc27dc982aa722303ec6aa2b10cf727f2d1b409a5a77e0f599569559275b76_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5afc27dc982aa722303ec6aa2b10cf727f2d1b409a5a77e0f599569559275b76_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5afc27dc982aa722303ec6aa2b10cf727f2d1b409a5a77e0f599569559275b76_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6354ab3fa4a9e9cfa2c51da14109a1a67e98a3b43c346203ba40036ef5c3665a_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6354ab3fa4a9e9cfa2c51da14109a1a67e98a3b43c346203ba40036ef5c3665a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6354ab3fa4a9e9cfa2c51da14109a1a67e98a3b43c346203ba40036ef5c3665a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:22f52c4591a8ccddda25dc4a1eebcc92010f49832ffc28cf935b0873021b2f96_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:22f52c4591a8ccddda25dc4a1eebcc92010f49832ffc28cf935b0873021b2f96_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:22f52c4591a8ccddda25dc4a1eebcc92010f49832ffc28cf935b0873021b2f96_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ab74018d4cba5a5f1ed65e9de515209321ff6be359ae0958f2a1b73d799805b_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ab74018d4cba5a5f1ed65e9de515209321ff6be359ae0958f2a1b73d799805b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ab74018d4cba5a5f1ed65e9de515209321ff6be359ae0958f2a1b73d799805b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:65b2efd1ededf1a89f9e6a3e12ee8c7085a1282b2520b2906cab1d80520c00d5_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:65b2efd1ededf1a89f9e6a3e12ee8c7085a1282b2520b2906cab1d80520c00d5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:65b2efd1ededf1a89f9e6a3e12ee8c7085a1282b2520b2906cab1d80520c00d5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:98d6f4f8d76d6dc810ca3d927fcf93740efe1a56fa6100c1ed1e80b84d1be21f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:98d6f4f8d76d6dc810ca3d927fcf93740efe1a56fa6100c1ed1e80b84d1be21f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:98d6f4f8d76d6dc810ca3d927fcf93740efe1a56fa6100c1ed1e80b84d1be21f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b07ab0a485d53b9ed37a1a1b244c94a70630972020176fa7206d5c9dc40d9962_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b07ab0a485d53b9ed37a1a1b244c94a70630972020176fa7206d5c9dc40d9962_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b07ab0a485d53b9ed37a1a1b244c94a70630972020176fa7206d5c9dc40d9962_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b4501412341595aa8eefec6973195073fbf3d961cd813e21e02f3cc14150e223_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b4501412341595aa8eefec6973195073fbf3d961cd813e21e02f3cc14150e223_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b4501412341595aa8eefec6973195073fbf3d961cd813e21e02f3cc14150e223_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c03291d932607165444321fb2fa980104e60ac414920c1c05c499a898b2afedb_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c03291d932607165444321fb2fa980104e60ac414920c1c05c499a898b2afedb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c03291d932607165444321fb2fa980104e60ac414920c1c05c499a898b2afedb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e1caaa1ddc51954943c6b44448ef50d7113fcd1f8aae4a84fcb24749de315e60_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e1caaa1ddc51954943c6b44448ef50d7113fcd1f8aae4a84fcb24749de315e60_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e1caaa1ddc51954943c6b44448ef50d7113fcd1f8aae4a84fcb24749de315e60_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1268948f6dae5346a6a8052db8644297c1b98e1732d64b24073d959de18aa22d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1268948f6dae5346a6a8052db8644297c1b98e1732d64b24073d959de18aa22d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1268948f6dae5346a6a8052db8644297c1b98e1732d64b24073d959de18aa22d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:458cf14369629b17e735598d3e6c24eed47bdd8bfe054034b5a60f4f40b6ec4e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:458cf14369629b17e735598d3e6c24eed47bdd8bfe054034b5a60f4f40b6ec4e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:458cf14369629b17e735598d3e6c24eed47bdd8bfe054034b5a60f4f40b6ec4e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6d51ed70ff145e62ae5d22d42b7cdb071e06053d2d456bc5411da7265c29c96d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6d51ed70ff145e62ae5d22d42b7cdb071e06053d2d456bc5411da7265c29c96d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6d51ed70ff145e62ae5d22d42b7cdb071e06053d2d456bc5411da7265c29c96d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c11d63f511b868c53303849b22d71273e844679808aaf604c87b373491a99db_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c11d63f511b868c53303849b22d71273e844679808aaf604c87b373491a99db_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c11d63f511b868c53303849b22d71273e844679808aaf604c87b373491a99db_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:043460ad9ec9a4b05671ebfac16b6b2eeb39e3ebe5f43e3867f3767b7b2f993d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:043460ad9ec9a4b05671ebfac16b6b2eeb39e3ebe5f43e3867f3767b7b2f993d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:043460ad9ec9a4b05671ebfac16b6b2eeb39e3ebe5f43e3867f3767b7b2f993d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:62420bf7fc2b91f60b32851f2c099ac5fda8083e6274d2a5523ccd0ece3b6a80_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:62420bf7fc2b91f60b32851f2c099ac5fda8083e6274d2a5523ccd0ece3b6a80_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:62420bf7fc2b91f60b32851f2c099ac5fda8083e6274d2a5523ccd0ece3b6a80_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:77301f40eca2b49f92f3c89a93fc6766306d39013350d635f0bfeff4b98ae012_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:77301f40eca2b49f92f3c89a93fc6766306d39013350d635f0bfeff4b98ae012_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:77301f40eca2b49f92f3c89a93fc6766306d39013350d635f0bfeff4b98ae012_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:b86db4181d9fe036b77d0473dda243523003c19d0fa5888a54f3f19c104a7e52_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:b86db4181d9fe036b77d0473dda243523003c19d0fa5888a54f3f19c104a7e52_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:b86db4181d9fe036b77d0473dda243523003c19d0fa5888a54f3f19c104a7e52_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6bb49580fa2f15130fd93f51e34f31f963a4c9b8b9cd898ed573ba88ea24a60d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6bb49580fa2f15130fd93f51e34f31f963a4c9b8b9cd898ed573ba88ea24a60d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6bb49580fa2f15130fd93f51e34f31f963a4c9b8b9cd898ed573ba88ea24a60d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6caecd5a01bd49eff8acad2449074c505d07e521208af296b0cd9f0822f54911_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6caecd5a01bd49eff8acad2449074c505d07e521208af296b0cd9f0822f54911_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6caecd5a01bd49eff8acad2449074c505d07e521208af296b0cd9f0822f54911_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ca38c682197a97a075635209b6091a60ff412df3461950a24d1d881f830fb3d5_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ca38c682197a97a075635209b6091a60ff412df3461950a24d1d881f830fb3d5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ca38c682197a97a075635209b6091a60ff412df3461950a24d1d881f830fb3d5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dd9a440a68817b45e6d2d04b3c31feddb82304ac1d246c20c0e33355631d9624_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dd9a440a68817b45e6d2d04b3c31feddb82304ac1d246c20c0e33355631d9624_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dd9a440a68817b45e6d2d04b3c31feddb82304ac1d246c20c0e33355631d9624_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a251f2b5d7f716fecb5119acdbbfdbb9b535f2c6d8fd51ee0c57cef72cfa1964_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a251f2b5d7f716fecb5119acdbbfdbb9b535f2c6d8fd51ee0c57cef72cfa1964_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a251f2b5d7f716fecb5119acdbbfdbb9b535f2c6d8fd51ee0c57cef72cfa1964_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b0188af5f7dcf5f286e4ec4f331062ec77f341391c612aac52e017df26f89a89_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b0188af5f7dcf5f286e4ec4f331062ec77f341391c612aac52e017df26f89a89_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b0188af5f7dcf5f286e4ec4f331062ec77f341391c612aac52e017df26f89a89_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b3f13d71ce9dddbce566d9a5bb5783d3e5417b8fa3cae427f7f74997e4a8c8ed_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b3f13d71ce9dddbce566d9a5bb5783d3e5417b8fa3cae427f7f74997e4a8c8ed_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b3f13d71ce9dddbce566d9a5bb5783d3e5417b8fa3cae427f7f74997e4a8c8ed_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d6384ac004f36838bc5b35ff63c4d1edcb3223c0a3907d4f099c5d85ab51b014_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d6384ac004f36838bc5b35ff63c4d1edcb3223c0a3907d4f099c5d85ab51b014_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d6384ac004f36838bc5b35ff63c4d1edcb3223c0a3907d4f099c5d85ab51b014_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:db20ce7a947978ea2646d479eab935796e8cfe482ddce01f3675066b221e2e3c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:db20ce7a947978ea2646d479eab935796e8cfe482ddce01f3675066b221e2e3c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:db20ce7a947978ea2646d479eab935796e8cfe482ddce01f3675066b221e2e3c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:eaa77c0a842cf32f826c2ca19abbe4020997810c35e079c0c88a0a9361323893_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:eaa77c0a842cf32f826c2ca19abbe4020997810c35e079c0c88a0a9361323893_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:eaa77c0a842cf32f826c2ca19abbe4020997810c35e079c0c88a0a9361323893_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:59988d13b37880c4b79bf8622161c6e975136bdbfb59c8fe73ee8e39bc0f7fe2_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:59988d13b37880c4b79bf8622161c6e975136bdbfb59c8fe73ee8e39bc0f7fe2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:59988d13b37880c4b79bf8622161c6e975136bdbfb59c8fe73ee8e39bc0f7fe2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:f6dd660a76715b8eef53fa459376986a60d9f2e7cd3f176b0ec5c6e8ce19cfea_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:f6dd660a76715b8eef53fa459376986a60d9f2e7cd3f176b0ec5c6e8ce19cfea_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:f6dd660a76715b8eef53fa459376986a60d9f2e7cd3f176b0ec5c6e8ce19cfea_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:05fb046ec30c464d04a70831316de4af2c29a226be1e7f73036c90899e6bd193_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:05fb046ec30c464d04a70831316de4af2c29a226be1e7f73036c90899e6bd193_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:05fb046ec30c464d04a70831316de4af2c29a226be1e7f73036c90899e6bd193_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1da080de78222a6c01704597983765a751b1b4544a81168fdbc952ab31f11a54_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1da080de78222a6c01704597983765a751b1b4544a81168fdbc952ab31f11a54_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1da080de78222a6c01704597983765a751b1b4544a81168fdbc952ab31f11a54_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:45c9e9816f3b14886661b4c82dd75f87e242f4ad3e0c1c5f264d1a1839e8cff3_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:45c9e9816f3b14886661b4c82dd75f87e242f4ad3e0c1c5f264d1a1839e8cff3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:45c9e9816f3b14886661b4c82dd75f87e242f4ad3e0c1c5f264d1a1839e8cff3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2ab57f0587e4ff1adee3ac4ca2c3383955448c0b26849eb24c77aa3f4cb5e959_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2ab57f0587e4ff1adee3ac4ca2c3383955448c0b26849eb24c77aa3f4cb5e959_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2ab57f0587e4ff1adee3ac4ca2c3383955448c0b26849eb24c77aa3f4cb5e959_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:66b581d789ec455fc8bd8e01e980c7fb183bb0f6ccc09ff525ffdfa4aafd9a52_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:66b581d789ec455fc8bd8e01e980c7fb183bb0f6ccc09ff525ffdfa4aafd9a52_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:66b581d789ec455fc8bd8e01e980c7fb183bb0f6ccc09ff525ffdfa4aafd9a52_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:721aa2904e0c2d5c4d0e3134fb695b6613e74809e0faf3faa949c93b68ed168f_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:721aa2904e0c2d5c4d0e3134fb695b6613e74809e0faf3faa949c93b68ed168f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:721aa2904e0c2d5c4d0e3134fb695b6613e74809e0faf3faa949c93b68ed168f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a84aa018bfe05a74226938ca4e34b58dde33019aa093e01a7a60a8d6a4c913ca_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a84aa018bfe05a74226938ca4e34b58dde33019aa093e01a7a60a8d6a4c913ca_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a84aa018bfe05a74226938ca4e34b58dde33019aa093e01a7a60a8d6a4c913ca_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1a255a287f3100cade2efe8d8b75ca7f031b9606f6d8ea31581a59e0ca38fde1_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1a255a287f3100cade2efe8d8b75ca7f031b9606f6d8ea31581a59e0ca38fde1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1a255a287f3100cade2efe8d8b75ca7f031b9606f6d8ea31581a59e0ca38fde1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3778fc40b92ab82012aacfa7589247e6ff79edb9aa918caf6ba6c5fa3159ae61_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3778fc40b92ab82012aacfa7589247e6ff79edb9aa918caf6ba6c5fa3159ae61_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3778fc40b92ab82012aacfa7589247e6ff79edb9aa918caf6ba6c5fa3159ae61_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:60433084081071dbf7cd337a3769f60ab109201e2ac323be2471c62178d87703_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:60433084081071dbf7cd337a3769f60ab109201e2ac323be2471c62178d87703_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:60433084081071dbf7cd337a3769f60ab109201e2ac323be2471c62178d87703_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96b873289284cbff34ea1c9f852dce31e5a72669f204d742288e266cc3a19d21_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96b873289284cbff34ea1c9f852dce31e5a72669f204d742288e266cc3a19d21_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96b873289284cbff34ea1c9f852dce31e5a72669f204d742288e266cc3a19d21_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0e2cca7da188aebd3f4445715b88a3f4727456cdfee2147e7521059722162fa2_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0e2cca7da188aebd3f4445715b88a3f4727456cdfee2147e7521059722162fa2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0e2cca7da188aebd3f4445715b88a3f4727456cdfee2147e7521059722162fa2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:23043c95c32122eaef725c3e2f65ea824e4f83242614d2609e9367cd6707e454_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:23043c95c32122eaef725c3e2f65ea824e4f83242614d2609e9367cd6707e454_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:23043c95c32122eaef725c3e2f65ea824e4f83242614d2609e9367cd6707e454_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:68a9dd5597bb207e899a4716a7642cc28260e059ead26fc84d1e48d4e6159683_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:68a9dd5597bb207e899a4716a7642cc28260e059ead26fc84d1e48d4e6159683_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:68a9dd5597bb207e899a4716a7642cc28260e059ead26fc84d1e48d4e6159683_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c1a6b704c85cfb829b9a3421cbde16b5011d2c506143322e8f2563d6a5191fe2_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c1a6b704c85cfb829b9a3421cbde16b5011d2c506143322e8f2563d6a5191fe2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c1a6b704c85cfb829b9a3421cbde16b5011d2c506143322e8f2563d6a5191fe2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1f6f4d1a8a3c89486253cd025f8d0e5aa34c0ef221487aed5e4e968e8d810285_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1f6f4d1a8a3c89486253cd025f8d0e5aa34c0ef221487aed5e4e968e8d810285_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1f6f4d1a8a3c89486253cd025f8d0e5aa34c0ef221487aed5e4e968e8d810285_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9955ec574da8c2821d783edbf833af9c4b4d4a2abcffd603b85d706333c68111_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9955ec574da8c2821d783edbf833af9c4b4d4a2abcffd603b85d706333c68111_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9955ec574da8c2821d783edbf833af9c4b4d4a2abcffd603b85d706333c68111_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dfcef3e2b6dfabf0abd72dd9743c91ca4c5c4bbe5bfe7488c2a85c2cbf467661_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dfcef3e2b6dfabf0abd72dd9743c91ca4c5c4bbe5bfe7488c2a85c2cbf467661_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dfcef3e2b6dfabf0abd72dd9743c91ca4c5c4bbe5bfe7488c2a85c2cbf467661_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ec5717ba7c764e22cf72a5792423078ccb9c3a3bb06b92a33eb6014f03f82fef_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ec5717ba7c764e22cf72a5792423078ccb9c3a3bb06b92a33eb6014f03f82fef_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ec5717ba7c764e22cf72a5792423078ccb9c3a3bb06b92a33eb6014f03f82fef_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013f0b271dc70347bae313209781261c76127a19b3a2f8bd074d170a84e49047_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013f0b271dc70347bae313209781261c76127a19b3a2f8bd074d170a84e49047_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013f0b271dc70347bae313209781261c76127a19b3a2f8bd074d170a84e49047_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:19c6031d8609f10b2b075201c0ccbe6f26e6efd03f567b485b6b327a4f6a7fc5_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:19c6031d8609f10b2b075201c0ccbe6f26e6efd03f567b485b6b327a4f6a7fc5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:19c6031d8609f10b2b075201c0ccbe6f26e6efd03f567b485b6b327a4f6a7fc5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:304cad693bfac84415c3f6311edf8234f412a4bec7635178c963e2f3fda74d44_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:304cad693bfac84415c3f6311edf8234f412a4bec7635178c963e2f3fda74d44_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:304cad693bfac84415c3f6311edf8234f412a4bec7635178c963e2f3fda74d44_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ee8bb516566d6a9dafaa65ae52177421adece839dd4db80426d3d2ba30a1ec10_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ee8bb516566d6a9dafaa65ae52177421adece839dd4db80426d3d2ba30a1ec10_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ee8bb516566d6a9dafaa65ae52177421adece839dd4db80426d3d2ba30a1ec10_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:371a5fe6ba1f62960a89e6b1050a2d324c2c91b733704fed2fb0356ff2cd9524_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:371a5fe6ba1f62960a89e6b1050a2d324c2c91b733704fed2fb0356ff2cd9524_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:371a5fe6ba1f62960a89e6b1050a2d324c2c91b733704fed2fb0356ff2cd9524_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5eb44886f42c57f0e736d6259b55ba561beb6324ca58537e253581f6570b22cd_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5eb44886f42c57f0e736d6259b55ba561beb6324ca58537e253581f6570b22cd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5eb44886f42c57f0e736d6259b55ba561beb6324ca58537e253581f6570b22cd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:854407987817269c3069c1d1e4ebd7441465f971e28d391eddd456371162b449_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:854407987817269c3069c1d1e4ebd7441465f971e28d391eddd456371162b449_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:854407987817269c3069c1d1e4ebd7441465f971e28d391eddd456371162b449_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e7184c5af00f0dc4551f17ef5539952c25c37aa32d596514e463464c92ad146c_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e7184c5af00f0dc4551f17ef5539952c25c37aa32d596514e463464c92ad146c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e7184c5af00f0dc4551f17ef5539952c25c37aa32d596514e463464c92ad146c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:039a4cc5025db0cacd9e5dec922d9cd51194cf0ce903904210000245c5e7c048_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:039a4cc5025db0cacd9e5dec922d9cd51194cf0ce903904210000245c5e7c048_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:039a4cc5025db0cacd9e5dec922d9cd51194cf0ce903904210000245c5e7c048_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6ccfe8e12098c660310fa2af574a71b7b27b23050f6b6c524e9c1787c7127110_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6ccfe8e12098c660310fa2af574a71b7b27b23050f6b6c524e9c1787c7127110_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6ccfe8e12098c660310fa2af574a71b7b27b23050f6b6c524e9c1787c7127110_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a5f3adb97a88b5910f2b5375e05fe3411652541687262714d50105f05ca31c34_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a5f3adb97a88b5910f2b5375e05fe3411652541687262714d50105f05ca31c34_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a5f3adb97a88b5910f2b5375e05fe3411652541687262714d50105f05ca31c34_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:de16bed38709aacd8a1c25b3e68a995631d38c12d9d28924360fffcc17adb0cb_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:de16bed38709aacd8a1c25b3e68a995631d38c12d9d28924360fffcc17adb0cb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:de16bed38709aacd8a1c25b3e68a995631d38c12d9d28924360fffcc17adb0cb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4cc2ec3ed32c991240703b0a40c6602db1320fdbd328e887b517a11474149030_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4cc2ec3ed32c991240703b0a40c6602db1320fdbd328e887b517a11474149030_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4cc2ec3ed32c991240703b0a40c6602db1320fdbd328e887b517a11474149030_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52e3ca4eb01859dcd5c4346d73339889f494576b19577fee88cb1800c84f8fc1_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52e3ca4eb01859dcd5c4346d73339889f494576b19577fee88cb1800c84f8fc1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52e3ca4eb01859dcd5c4346d73339889f494576b19577fee88cb1800c84f8fc1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:949a7355b5e946e1d5c760e14244073db9df660fd8b28a3c6d06420dddccc298_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:949a7355b5e946e1d5c760e14244073db9df660fd8b28a3c6d06420dddccc298_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:949a7355b5e946e1d5c760e14244073db9df660fd8b28a3c6d06420dddccc298_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aca1f2e8b0aeb6eae4a77bf712b8c255dd50526c76e843f9960871cbd4abb6f5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aca1f2e8b0aeb6eae4a77bf712b8c255dd50526c76e843f9960871cbd4abb6f5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aca1f2e8b0aeb6eae4a77bf712b8c255dd50526c76e843f9960871cbd4abb6f5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c075a7526723ebf1b921ceb895e63a6d5f3df60707afd79c4fcf1c9bb6f33e3_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c075a7526723ebf1b921ceb895e63a6d5f3df60707afd79c4fcf1c9bb6f33e3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c075a7526723ebf1b921ceb895e63a6d5f3df60707afd79c4fcf1c9bb6f33e3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a952d0aa30010721e7a2cb903e30260a02f4a9dd9d83eb7ff02d2847f1e76e0_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a952d0aa30010721e7a2cb903e30260a02f4a9dd9d83eb7ff02d2847f1e76e0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a952d0aa30010721e7a2cb903e30260a02f4a9dd9d83eb7ff02d2847f1e76e0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7a7b182e9ec23abab1daeee26897eecb99e1785569a62888db4b54d6e897568e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7a7b182e9ec23abab1daeee26897eecb99e1785569a62888db4b54d6e897568e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7a7b182e9ec23abab1daeee26897eecb99e1785569a62888db4b54d6e897568e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9025051729370f663bc9231aa612b0bb51b35bc6da68f8b504dcc01c760a1fee_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9025051729370f663bc9231aa612b0bb51b35bc6da68f8b504dcc01c760a1fee_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9025051729370f663bc9231aa612b0bb51b35bc6da68f8b504dcc01c760a1fee_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0232982c7a3431d641fde0e3b3b8921f855cb872d470e5b9f69edc9b573c2714_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0232982c7a3431d641fde0e3b3b8921f855cb872d470e5b9f69edc9b573c2714_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0232982c7a3431d641fde0e3b3b8921f855cb872d470e5b9f69edc9b573c2714_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1e05df129e355b9a76f8bbb8aa65e9b4263fb9e888639fd2fb61f79d6d212c04_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1e05df129e355b9a76f8bbb8aa65e9b4263fb9e888639fd2fb61f79d6d212c04_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1e05df129e355b9a76f8bbb8aa65e9b4263fb9e888639fd2fb61f79d6d212c04_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:89451c63f28e8e515b4529c8a834f6e8e558179ed3d4f973df539a509933f942_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:89451c63f28e8e515b4529c8a834f6e8e558179ed3d4f973df539a509933f942_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:89451c63f28e8e515b4529c8a834f6e8e558179ed3d4f973df539a509933f942_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ace5b486176727834f9e1ca6ce46b4d0ab0bc6ddf651f4142626b543a02c61d5_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ace5b486176727834f9e1ca6ce46b4d0ab0bc6ddf651f4142626b543a02c61d5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ace5b486176727834f9e1ca6ce46b4d0ab0bc6ddf651f4142626b543a02c61d5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:007e6fe2b8d7a384cfe07309e8a523bd1b7d3cea896f3b7f29908a8d41c62f16_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:007e6fe2b8d7a384cfe07309e8a523bd1b7d3cea896f3b7f29908a8d41c62f16_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:007e6fe2b8d7a384cfe07309e8a523bd1b7d3cea896f3b7f29908a8d41c62f16_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3fbc6e29fc388b15dc77aa93d2623ba9a23db114399f3b07da429707a03eb8fa_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3fbc6e29fc388b15dc77aa93d2623ba9a23db114399f3b07da429707a03eb8fa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3fbc6e29fc388b15dc77aa93d2623ba9a23db114399f3b07da429707a03eb8fa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:42f1e088777be6853d6845aa25cee3f46df776aba71ed1209285ea853dcafb95_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:42f1e088777be6853d6845aa25cee3f46df776aba71ed1209285ea853dcafb95_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:42f1e088777be6853d6845aa25cee3f46df776aba71ed1209285ea853dcafb95_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:73f6897c667e3fa46703b50ec857958738442bb7d8b95fae051f761f42a01605_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:73f6897c667e3fa46703b50ec857958738442bb7d8b95fae051f761f42a01605_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:73f6897c667e3fa46703b50ec857958738442bb7d8b95fae051f761f42a01605_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:3f69c1b708c411bfdd1a2f5387e6084f2fa28e1c4bfcfe136db5b66377918bf9_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:3f69c1b708c411bfdd1a2f5387e6084f2fa28e1c4bfcfe136db5b66377918bf9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:3f69c1b708c411bfdd1a2f5387e6084f2fa28e1c4bfcfe136db5b66377918bf9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:46ba8317ce0d48d6d0e8902fa4b6deea668d6f3c9c6c15c2a3aa6238cc06e52b_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:46ba8317ce0d48d6d0e8902fa4b6deea668d6f3c9c6c15c2a3aa6238cc06e52b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:46ba8317ce0d48d6d0e8902fa4b6deea668d6f3c9c6c15c2a3aa6238cc06e52b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5e919ab71bf57a160c89b6e5964525a708a10c7cfdd87aaf911e57e6353daf23_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5e919ab71bf57a160c89b6e5964525a708a10c7cfdd87aaf911e57e6353daf23_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5e919ab71bf57a160c89b6e5964525a708a10c7cfdd87aaf911e57e6353daf23_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c706a7354b0006b9e9c7c351954f179d6c50cc2b872833bbb59214ae7148ae3e_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c706a7354b0006b9e9c7c351954f179d6c50cc2b872833bbb59214ae7148ae3e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c706a7354b0006b9e9c7c351954f179d6c50cc2b872833bbb59214ae7148ae3e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7439625194105ec8e55d4f7b3acd13a5f2ca70da75f9c82cad5f5693b604bf28_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7439625194105ec8e55d4f7b3acd13a5f2ca70da75f9c82cad5f5693b604bf28_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7439625194105ec8e55d4f7b3acd13a5f2ca70da75f9c82cad5f5693b604bf28_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ffcf4fc9bf77edd7944824b25136db6027d21faef80bef9d7b126b9fb6c0574_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ffcf4fc9bf77edd7944824b25136db6027d21faef80bef9d7b126b9fb6c0574_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ffcf4fc9bf77edd7944824b25136db6027d21faef80bef9d7b126b9fb6c0574_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8540ec8af82488dd6edb249e811036b1e639a74f892af1ffac1ab5d59ceb0abf_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8540ec8af82488dd6edb249e811036b1e639a74f892af1ffac1ab5d59ceb0abf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8540ec8af82488dd6edb249e811036b1e639a74f892af1ffac1ab5d59ceb0abf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9b497b933ce2f828025dcf4390c7d53debb2418394317da9a8c52ba82a6f2fc0_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9b497b933ce2f828025dcf4390c7d53debb2418394317da9a8c52ba82a6f2fc0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9b497b933ce2f828025dcf4390c7d53debb2418394317da9a8c52ba82a6f2fc0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:37fa7e2453893831aa0ea8bfe068e692ca4f1ffd6f69afca37a6a4e7ad401c49_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:37fa7e2453893831aa0ea8bfe068e692ca4f1ffd6f69afca37a6a4e7ad401c49_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:37fa7e2453893831aa0ea8bfe068e692ca4f1ffd6f69afca37a6a4e7ad401c49_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:63db7c4a436ffd18fb03a7cda09cd47844691a8025f2ab04492ff405a85ed144_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:63db7c4a436ffd18fb03a7cda09cd47844691a8025f2ab04492ff405a85ed144_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:63db7c4a436ffd18fb03a7cda09cd47844691a8025f2ab04492ff405a85ed144_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9a30469bc5882ab2711af24dc3b3cbcbd0532f49bfa9dead772070c5fd1280e3_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9a30469bc5882ab2711af24dc3b3cbcbd0532f49bfa9dead772070c5fd1280e3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9a30469bc5882ab2711af24dc3b3cbcbd0532f49bfa9dead772070c5fd1280e3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ef2e5a237cc5d69647af1b904a902e4e216ae8480a54587357fb135b738db120_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ef2e5a237cc5d69647af1b904a902e4e216ae8480a54587357fb135b738db120_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ef2e5a237cc5d69647af1b904a902e4e216ae8480a54587357fb135b738db120_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6be6d5b27b6e178e0806938850699d1e760c4d456ae517a658b47cf5a1401a2e_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6be6d5b27b6e178e0806938850699d1e760c4d456ae517a658b47cf5a1401a2e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6be6d5b27b6e178e0806938850699d1e760c4d456ae517a658b47cf5a1401a2e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9389ab668e31d432d3b2d44fe11f68df7f9d926179d0fbec8a6d1b30f489857e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9389ab668e31d432d3b2d44fe11f68df7f9d926179d0fbec8a6d1b30f489857e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9389ab668e31d432d3b2d44fe11f68df7f9d926179d0fbec8a6d1b30f489857e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ab20bef5ffe91fc06a7dad3508294cfb9a72745da8cc0342e59f515db447e264_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ab20bef5ffe91fc06a7dad3508294cfb9a72745da8cc0342e59f515db447e264_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ab20bef5ffe91fc06a7dad3508294cfb9a72745da8cc0342e59f515db447e264_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c5c16e51700e2c16c6fd496225946c033875f4fa4c0174ea625958bd62a7ac51_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c5c16e51700e2c16c6fd496225946c033875f4fa4c0174ea625958bd62a7ac51_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c5c16e51700e2c16c6fd496225946c033875f4fa4c0174ea625958bd62a7ac51_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:37c574ecbe02ca7bc99355b6bbd952c392cbb2abb430db4b752257306c37bcbb_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:37c574ecbe02ca7bc99355b6bbd952c392cbb2abb430db4b752257306c37bcbb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:37c574ecbe02ca7bc99355b6bbd952c392cbb2abb430db4b752257306c37bcbb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:db6cfccfb142d8f7addac06e4aec0d6686361bc15b459d169b0df831b1d00160_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:db6cfccfb142d8f7addac06e4aec0d6686361bc15b459d169b0df831b1d00160_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:db6cfccfb142d8f7addac06e4aec0d6686361bc15b459d169b0df831b1d00160_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e813ed4ae0135da60fc1e7e572f6a46495e03764c96ec3c095a4e61a8bdd338_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e813ed4ae0135da60fc1e7e572f6a46495e03764c96ec3c095a4e61a8bdd338_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e813ed4ae0135da60fc1e7e572f6a46495e03764c96ec3c095a4e61a8bdd338_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2766e79b9a9a3fae66e1d331ad2fcc2141a4108e816cb1f91557bcf2e045882c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2766e79b9a9a3fae66e1d331ad2fcc2141a4108e816cb1f91557bcf2e045882c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2766e79b9a9a3fae66e1d331ad2fcc2141a4108e816cb1f91557bcf2e045882c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bfcf47037dce9565700224c63e19aa2ca8935d72e355c08cc8754cbb84b41d00_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bfcf47037dce9565700224c63e19aa2ca8935d72e355c08cc8754cbb84b41d00_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bfcf47037dce9565700224c63e19aa2ca8935d72e355c08cc8754cbb84b41d00_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d4588b2594a2fcb58e676ea0e8d11372e0bea9deb53824b47a4d8f3c63e774bc_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d4588b2594a2fcb58e676ea0e8d11372e0bea9deb53824b47a4d8f3c63e774bc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d4588b2594a2fcb58e676ea0e8d11372e0bea9deb53824b47a4d8f3c63e774bc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2bb5a02fa2032146aed8fcae80961e9a6e37e1c8a13a368ea07d6b124f303519_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2bb5a02fa2032146aed8fcae80961e9a6e37e1c8a13a368ea07d6b124f303519_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2bb5a02fa2032146aed8fcae80961e9a6e37e1c8a13a368ea07d6b124f303519_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5998439ba17cc0cdbe1bf48e888862182d6e10400fd9df74dfab53d161f0582a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5998439ba17cc0cdbe1bf48e888862182d6e10400fd9df74dfab53d161f0582a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5998439ba17cc0cdbe1bf48e888862182d6e10400fd9df74dfab53d161f0582a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7e0233017e706ead44793f1fff610a4625a22a834de67511cd66efb208a24a47_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7e0233017e706ead44793f1fff610a4625a22a834de67511cd66efb208a24a47_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7e0233017e706ead44793f1fff610a4625a22a834de67511cd66efb208a24a47_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:97bdb1cc0033381c61bc1c9abeb5f3ecaac1adc70e91b203fbcbfca9a9ae6c39_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:97bdb1cc0033381c61bc1c9abeb5f3ecaac1adc70e91b203fbcbfca9a9ae6c39_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:97bdb1cc0033381c61bc1c9abeb5f3ecaac1adc70e91b203fbcbfca9a9ae6c39_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f4605b13a1cd445835bfa2bf8d2f094533e4b731ede1d00e6e15a83ca924bea_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f4605b13a1cd445835bfa2bf8d2f094533e4b731ede1d00e6e15a83ca924bea_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f4605b13a1cd445835bfa2bf8d2f094533e4b731ede1d00e6e15a83ca924bea_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:20955243143106da7d9e730ece6e49bc84a18427ddce20cd90fb5ce712e5477e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:20955243143106da7d9e730ece6e49bc84a18427ddce20cd90fb5ce712e5477e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:20955243143106da7d9e730ece6e49bc84a18427ddce20cd90fb5ce712e5477e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6c27e11d2ba7f408c9ca5dc0bd898bf395b3f773931b04c558759493e0aece8f_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6c27e11d2ba7f408c9ca5dc0bd898bf395b3f773931b04c558759493e0aece8f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6c27e11d2ba7f408c9ca5dc0bd898bf395b3f773931b04c558759493e0aece8f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:7f08d881878f5d69360edd1be3e1e5190a66df75a087120abb37b2c0a78b4473_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:7f08d881878f5d69360edd1be3e1e5190a66df75a087120abb37b2c0a78b4473_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:7f08d881878f5d69360edd1be3e1e5190a66df75a087120abb37b2c0a78b4473_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:755632416caf3e2fa4e8c24958855e78c74b12d5e3f2dcae93152ce06274d428_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:755632416caf3e2fa4e8c24958855e78c74b12d5e3f2dcae93152ce06274d428_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:755632416caf3e2fa4e8c24958855e78c74b12d5e3f2dcae93152ce06274d428_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:847a5098475d0ab53e351d52148f5a2211dcc8090e03e17dd7b161b7332465d1_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:847a5098475d0ab53e351d52148f5a2211dcc8090e03e17dd7b161b7332465d1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:847a5098475d0ab53e351d52148f5a2211dcc8090e03e17dd7b161b7332465d1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:93c4ad9c017eba69c7105c1f60cba46f201b39da79f5ded60ce13a98d7608e7d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:93c4ad9c017eba69c7105c1f60cba46f201b39da79f5ded60ce13a98d7608e7d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:93c4ad9c017eba69c7105c1f60cba46f201b39da79f5ded60ce13a98d7608e7d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b559c70d997c0ce2c57e2cc3f1d3160f5ec2367c53c8d1fe1d9418b142c5c577_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b559c70d997c0ce2c57e2cc3f1d3160f5ec2367c53c8d1fe1d9418b142c5c577_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b559c70d997c0ce2c57e2cc3f1d3160f5ec2367c53c8d1fe1d9418b142c5c577_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2674a13e799262a6ba79ba3e43c2560304a1201374272e8622aa1a5e3df33d66_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2674a13e799262a6ba79ba3e43c2560304a1201374272e8622aa1a5e3df33d66_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2674a13e799262a6ba79ba3e43c2560304a1201374272e8622aa1a5e3df33d66_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6bafd363141b2012cd318a353cfff9c109c6ccc90d227587f2d0e08316309602_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6bafd363141b2012cd318a353cfff9c109c6ccc90d227587f2d0e08316309602_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6bafd363141b2012cd318a353cfff9c109c6ccc90d227587f2d0e08316309602_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ad9865c56a3ac1997b3aa16166966f73a24b49a1a8c71edec2eeb795016b849c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ad9865c56a3ac1997b3aa16166966f73a24b49a1a8c71edec2eeb795016b849c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ad9865c56a3ac1997b3aa16166966f73a24b49a1a8c71edec2eeb795016b849c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c2d53d7716676842974f1dda29eba47d03b525614857591426a01b4186ad2edb_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c2d53d7716676842974f1dda29eba47d03b525614857591426a01b4186ad2edb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c2d53d7716676842974f1dda29eba47d03b525614857591426a01b4186ad2edb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2098ea118ff218c9004be57932760642db74b9387d11fd5376593ebb3b2f13c2_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2098ea118ff218c9004be57932760642db74b9387d11fd5376593ebb3b2f13c2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2098ea118ff218c9004be57932760642db74b9387d11fd5376593ebb3b2f13c2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac90d3f60f0a9de597df5344adc3d6b1478b96d47fad0ea71a00597e8576b12_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac90d3f60f0a9de597df5344adc3d6b1478b96d47fad0ea71a00597e8576b12_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac90d3f60f0a9de597df5344adc3d6b1478b96d47fad0ea71a00597e8576b12_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:81c29521d2aa0a7d8a0eed047e5948d145c9e4a72fd0697fa9aa613033e7faf9_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:81c29521d2aa0a7d8a0eed047e5948d145c9e4a72fd0697fa9aa613033e7faf9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:81c29521d2aa0a7d8a0eed047e5948d145c9e4a72fd0697fa9aa613033e7faf9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d9208e402a04781e9dffbab5c989e91804b14b6d8a5f5f29a79cc54f85782e24_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d9208e402a04781e9dffbab5c989e91804b14b6d8a5f5f29a79cc54f85782e24_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d9208e402a04781e9dffbab5c989e91804b14b6d8a5f5f29a79cc54f85782e24_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:71602c5c8069030db0fa7373e496c7bc23bba707756f57a082d7eea44f61c9cb_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:71602c5c8069030db0fa7373e496c7bc23bba707756f57a082d7eea44f61c9cb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:71602c5c8069030db0fa7373e496c7bc23bba707756f57a082d7eea44f61c9cb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:72d17c4acb7d58df68ccc1ccd8d7334f35df3091d8bd8e25a949e3c7f528de1d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:72d17c4acb7d58df68ccc1ccd8d7334f35df3091d8bd8e25a949e3c7f528de1d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:72d17c4acb7d58df68ccc1ccd8d7334f35df3091d8bd8e25a949e3c7f528de1d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8817af94a399c898fea21c34bdd60dd2c927ba3613436f79aab4906ecfc92cfc_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8817af94a399c898fea21c34bdd60dd2c927ba3613436f79aab4906ecfc92cfc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8817af94a399c898fea21c34bdd60dd2c927ba3613436f79aab4906ecfc92cfc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f9d6ccdb270a01e408d70d01d692955ba92282ec5e577fd695f6c51289edce2a_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f9d6ccdb270a01e408d70d01d692955ba92282ec5e577fd695f6c51289edce2a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f9d6ccdb270a01e408d70d01d692955ba92282ec5e577fd695f6c51289edce2a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:005773da78ed8522b96f69d9e53c961811e79340b54d49dffdce92c59a0cea2e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:005773da78ed8522b96f69d9e53c961811e79340b54d49dffdce92c59a0cea2e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:005773da78ed8522b96f69d9e53c961811e79340b54d49dffdce92c59a0cea2e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:502e2c5f47b1b95e0ce1e3922306ee37c604845d1d1accd92181342b473d3b3e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:502e2c5f47b1b95e0ce1e3922306ee37c604845d1d1accd92181342b473d3b3e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:502e2c5f47b1b95e0ce1e3922306ee37c604845d1d1accd92181342b473d3b3e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6c68854cff5a2b94527d6230740551ccc74d1161e7a1bd82d8119065e9e764d3_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6c68854cff5a2b94527d6230740551ccc74d1161e7a1bd82d8119065e9e764d3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6c68854cff5a2b94527d6230740551ccc74d1161e7a1bd82d8119065e9e764d3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6ff88655c6a7e78def695735bde806319fe65b5fb68ee0c3ec2a82c6d80a9b00_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6ff88655c6a7e78def695735bde806319fe65b5fb68ee0c3ec2a82c6d80a9b00_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6ff88655c6a7e78def695735bde806319fe65b5fb68ee0c3ec2a82c6d80a9b00_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:179c818cc5f2021988e1b71e4edaed742e62d398da747cb548896697617254a1_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:179c818cc5f2021988e1b71e4edaed742e62d398da747cb548896697617254a1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:179c818cc5f2021988e1b71e4edaed742e62d398da747cb548896697617254a1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a75ee91ea3ee181623a22f9e54b00c5d4b2e6cf3f222a912c8aff5a29dde1376_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a75ee91ea3ee181623a22f9e54b00c5d4b2e6cf3f222a912c8aff5a29dde1376_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a75ee91ea3ee181623a22f9e54b00c5d4b2e6cf3f222a912c8aff5a29dde1376_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:eeffe28791e4306c642f156e83c6035bebdff5d1232174d56ccb09b805f9271c_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:eeffe28791e4306c642f156e83c6035bebdff5d1232174d56ccb09b805f9271c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:eeffe28791e4306c642f156e83c6035bebdff5d1232174d56ccb09b805f9271c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:fec4f6e102887cd0d47167eecfee667e3161dd21a13383e96ef3b36f8e319076_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:fec4f6e102887cd0d47167eecfee667e3161dd21a13383e96ef3b36f8e319076_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:fec4f6e102887cd0d47167eecfee667e3161dd21a13383e96ef3b36f8e319076_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:167bea17ac181347213db54ace41bd0191b77ad20a3a355e56c90fefcfef0c1f_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:167bea17ac181347213db54ace41bd0191b77ad20a3a355e56c90fefcfef0c1f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:167bea17ac181347213db54ace41bd0191b77ad20a3a355e56c90fefcfef0c1f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:734b7d0af02c1b79781846ffd3c617b27728ae053941b112d544c73e0bf3a3b5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:734b7d0af02c1b79781846ffd3c617b27728ae053941b112d544c73e0bf3a3b5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:734b7d0af02c1b79781846ffd3c617b27728ae053941b112d544c73e0bf3a3b5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a7cc1cc44f13ea307fb79522996cc56264a0e036bd5ab9134b24e4a0f6639843_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a7cc1cc44f13ea307fb79522996cc56264a0e036bd5ab9134b24e4a0f6639843_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a7cc1cc44f13ea307fb79522996cc56264a0e036bd5ab9134b24e4a0f6639843_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ca75fc486998027f4903a313c7bd742711e2b7bd11e55b1e0c557582ca3d1dbd_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ca75fc486998027f4903a313c7bd742711e2b7bd11e55b1e0c557582ca3d1dbd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ca75fc486998027f4903a313c7bd742711e2b7bd11e55b1e0c557582ca3d1dbd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5d23f5103a7bb7c71ab5b79c2149be46e4ce746f3556508933593a94f15ba945_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5d23f5103a7bb7c71ab5b79c2149be46e4ce746f3556508933593a94f15ba945_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5d23f5103a7bb7c71ab5b79c2149be46e4ce746f3556508933593a94f15ba945_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b2dcf4c5a2b14b677212eaecf6ec3fbba8bef7e21d51a437449456979b5fb551_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b2dcf4c5a2b14b677212eaecf6ec3fbba8bef7e21d51a437449456979b5fb551_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b2dcf4c5a2b14b677212eaecf6ec3fbba8bef7e21d51a437449456979b5fb551_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b692ee1154fd6b6a8fae68467ae87ad89c8a528d50599db14f614c7f08831d81_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b692ee1154fd6b6a8fae68467ae87ad89c8a528d50599db14f614c7f08831d81_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b692ee1154fd6b6a8fae68467ae87ad89c8a528d50599db14f614c7f08831d81_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fe7bd87ddcdf1ec088e780a9e3421286cc0e4aefcccabf17d1c50e4a4656b2e4_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fe7bd87ddcdf1ec088e780a9e3421286cc0e4aefcccabf17d1c50e4a4656b2e4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fe7bd87ddcdf1ec088e780a9e3421286cc0e4aefcccabf17d1c50e4a4656b2e4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1775e9ce012c333caee47c4df8f9187d85d8b47f6300e3a7ddf6d83af462986e_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1775e9ce012c333caee47c4df8f9187d85d8b47f6300e3a7ddf6d83af462986e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1775e9ce012c333caee47c4df8f9187d85d8b47f6300e3a7ddf6d83af462986e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5403330e0c28b3af4b3fda34ea84b3e6edced89649cd00bf6ff7f8352d2f7708_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5403330e0c28b3af4b3fda34ea84b3e6edced89649cd00bf6ff7f8352d2f7708_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5403330e0c28b3af4b3fda34ea84b3e6edced89649cd00bf6ff7f8352d2f7708_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7e13f7a4f2a67e74b36e39b5e582b54a8979c270158789c658974993ad351262_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7e13f7a4f2a67e74b36e39b5e582b54a8979c270158789c658974993ad351262_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7e13f7a4f2a67e74b36e39b5e582b54a8979c270158789c658974993ad351262_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ad1b944c7135118573159adb6eb359face5ab141e8328420eaca3999fabd8575_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ad1b944c7135118573159adb6eb359face5ab141e8328420eaca3999fabd8575_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ad1b944c7135118573159adb6eb359face5ab141e8328420eaca3999fabd8575_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22ed10b10973b3a91b30a7269a88013439964eca8e6954fd515442d543bb74af_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22ed10b10973b3a91b30a7269a88013439964eca8e6954fd515442d543bb74af_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22ed10b10973b3a91b30a7269a88013439964eca8e6954fd515442d543bb74af_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:74dfd09f047da2dcdbdaf8b16a3aba913df216cae2f26898c4f9fe423ff6e330_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:74dfd09f047da2dcdbdaf8b16a3aba913df216cae2f26898c4f9fe423ff6e330_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:74dfd09f047da2dcdbdaf8b16a3aba913df216cae2f26898c4f9fe423ff6e330_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d7f0f0b52c3c3c7feed13d3ab9d70fdfdb89af06210b90650123b362444a292_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d7f0f0b52c3c3c7feed13d3ab9d70fdfdb89af06210b90650123b362444a292_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d7f0f0b52c3c3c7feed13d3ab9d70fdfdb89af06210b90650123b362444a292_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:88732e8c96326c07670db570f1b1549412775fd07a66b0816f227d1d4320a27c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:88732e8c96326c07670db570f1b1549412775fd07a66b0816f227d1d4320a27c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:88732e8c96326c07670db570f1b1549412775fd07a66b0816f227d1d4320a27c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3e0bc6b1b9cfd488a3cf5fd19d5a6d2839d37bd609c08e6a5a7a9da869ab3cbb_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3e0bc6b1b9cfd488a3cf5fd19d5a6d2839d37bd609c08e6a5a7a9da869ab3cbb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3e0bc6b1b9cfd488a3cf5fd19d5a6d2839d37bd609c08e6a5a7a9da869ab3cbb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7efa402118210c406818a1791109dae10962706df8c04b290561d0c784f8a57d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7efa402118210c406818a1791109dae10962706df8c04b290561d0c784f8a57d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7efa402118210c406818a1791109dae10962706df8c04b290561d0c784f8a57d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:8872db8f65a31459cc63eaec8f03d40ff2b21e95871e59e3bff97b6b0bc9b9d9_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:8872db8f65a31459cc63eaec8f03d40ff2b21e95871e59e3bff97b6b0bc9b9d9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:8872db8f65a31459cc63eaec8f03d40ff2b21e95871e59e3bff97b6b0bc9b9d9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bc298ee8cd84ce0a44f51ba31cefe4052b67cbf9ea559fac77de3ca7a02762fe_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bc298ee8cd84ce0a44f51ba31cefe4052b67cbf9ea559fac77de3ca7a02762fe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bc298ee8cd84ce0a44f51ba31cefe4052b67cbf9ea559fac77de3ca7a02762fe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:1715daa2ffc4a6ea78b5de1a1ffe556d27e3e9aa1cca1d6ec9e53217f27b7ffc_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:1715daa2ffc4a6ea78b5de1a1ffe556d27e3e9aa1cca1d6ec9e53217f27b7ffc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:1715daa2ffc4a6ea78b5de1a1ffe556d27e3e9aa1cca1d6ec9e53217f27b7ffc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:32d4fbd0cbd715ed35ef290d459834423dcf6203374a2a480fc5513b3764873f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:32d4fbd0cbd715ed35ef290d459834423dcf6203374a2a480fc5513b3764873f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:32d4fbd0cbd715ed35ef290d459834423dcf6203374a2a480fc5513b3764873f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d22fe92972f9d9303f541977a3d753750554e6675545ad7e511b723c3869c4c_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d22fe92972f9d9303f541977a3d753750554e6675545ad7e511b723c3869c4c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d22fe92972f9d9303f541977a3d753750554e6675545ad7e511b723c3869c4c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a51b74a21651e21c9d8d8538c2cbf9272d09696abe8244cd2b1290777ad452b4_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a51b74a21651e21c9d8d8538c2cbf9272d09696abe8244cd2b1290777ad452b4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a51b74a21651e21c9d8d8538c2cbf9272d09696abe8244cd2b1290777ad452b4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2a82548bcb003f718c669be20b0abf13183fccb5d7d4e34a17e9be6ee08dc2cc_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2a82548bcb003f718c669be20b0abf13183fccb5d7d4e34a17e9be6ee08dc2cc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2a82548bcb003f718c669be20b0abf13183fccb5d7d4e34a17e9be6ee08dc2cc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2bb613f365004e6cca2c81baa7a59ff75a08efff24294779f54a51296a4f1afe_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2bb613f365004e6cca2c81baa7a59ff75a08efff24294779f54a51296a4f1afe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2bb613f365004e6cca2c81baa7a59ff75a08efff24294779f54a51296a4f1afe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2e010df4822fc8ce8b452dd6d9381d38b1dced3c0e429a9d88e02ac61384c825_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2e010df4822fc8ce8b452dd6d9381d38b1dced3c0e429a9d88e02ac61384c825_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2e010df4822fc8ce8b452dd6d9381d38b1dced3c0e429a9d88e02ac61384c825_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a8ff1c3b2fa1dd0d849d5cd35526a5ef2135bfd6c551ecade04e4744ac595453_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a8ff1c3b2fa1dd0d849d5cd35526a5ef2135bfd6c551ecade04e4744ac595453_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a8ff1c3b2fa1dd0d849d5cd35526a5ef2135bfd6c551ecade04e4744ac595453_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:86e68bbe22d576839fa35f704596b2f643c09e3cd755fae8effe90935f65ab10_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:86e68bbe22d576839fa35f704596b2f643c09e3cd755fae8effe90935f65ab10_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:86e68bbe22d576839fa35f704596b2f643c09e3cd755fae8effe90935f65ab10_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d48fa90ded7d3c77d535abf9eb8f56d32e1567a3c292686a7f76c6ac39b5c6e6_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d48fa90ded7d3c77d535abf9eb8f56d32e1567a3c292686a7f76c6ac39b5c6e6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d48fa90ded7d3c77d535abf9eb8f56d32e1567a3c292686a7f76c6ac39b5c6e6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f781a380867adf7f20c38114cc8d7c751cc84faba5fbcbfc67b721793f017339_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f781a380867adf7f20c38114cc8d7c751cc84faba5fbcbfc67b721793f017339_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f781a380867adf7f20c38114cc8d7c751cc84faba5fbcbfc67b721793f017339_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f9d1a4c9d0a5404e8493a84f94fc1715d6226b22b672f0e378157405f5a7204e_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f9d1a4c9d0a5404e8493a84f94fc1715d6226b22b672f0e378157405f5a7204e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f9d1a4c9d0a5404e8493a84f94fc1715d6226b22b672f0e378157405f5a7204e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0696026a1a59a9227aaac743602e83017e0281e6726d94d46c20c69e61bb6ee3_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0696026a1a59a9227aaac743602e83017e0281e6726d94d46c20c69e61bb6ee3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0696026a1a59a9227aaac743602e83017e0281e6726d94d46c20c69e61bb6ee3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:18ead28e318b6a165c6988639f9361dfdb3b7936c026f6043b66996e806be30c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:18ead28e318b6a165c6988639f9361dfdb3b7936c026f6043b66996e806be30c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:18ead28e318b6a165c6988639f9361dfdb3b7936c026f6043b66996e806be30c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:64802d951a8cc8294fa9194e5778fd8ba178cc2dff80234d85234121013ee58b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:64802d951a8cc8294fa9194e5778fd8ba178cc2dff80234d85234121013ee58b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:64802d951a8cc8294fa9194e5778fd8ba178cc2dff80234d85234121013ee58b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e6adba899b629ba8eea41574e66d8ed2eaac9169aae5fcb789aff787f0724b73_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e6adba899b629ba8eea41574e66d8ed2eaac9169aae5fcb789aff787f0724b73_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e6adba899b629ba8eea41574e66d8ed2eaac9169aae5fcb789aff787f0724b73_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:06d3718842b1f074dd7b6477dd8e738e91ad243e06e466cd9cf8b08d7b7fa024_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:06d3718842b1f074dd7b6477dd8e738e91ad243e06e466cd9cf8b08d7b7fa024_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:06d3718842b1f074dd7b6477dd8e738e91ad243e06e466cd9cf8b08d7b7fa024_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:220e8b87b16dc9219b324fe7b97208869a17d1039e620bc91cdb5aec19d4a0c2_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:220e8b87b16dc9219b324fe7b97208869a17d1039e620bc91cdb5aec19d4a0c2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:220e8b87b16dc9219b324fe7b97208869a17d1039e620bc91cdb5aec19d4a0c2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d85785005a4cf5e4bc26adabdddffe345fa8827a0db2240d01cf64a49747675_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d85785005a4cf5e4bc26adabdddffe345fa8827a0db2240d01cf64a49747675_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d85785005a4cf5e4bc26adabdddffe345fa8827a0db2240d01cf64a49747675_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fb190187adc311919da380eef951373ed4f907a07606af0797e96cd7d253f20b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fb190187adc311919da380eef951373ed4f907a07606af0797e96cd7d253f20b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fb190187adc311919da380eef951373ed4f907a07606af0797e96cd7d253f20b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1d5caff7082d26409e72c3d18b018f01178321f3922a0868af8058f839261d3b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1d5caff7082d26409e72c3d18b018f01178321f3922a0868af8058f839261d3b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1d5caff7082d26409e72c3d18b018f01178321f3922a0868af8058f839261d3b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a0968a8bb5df2b0b41bf55b06f11397a4d0c0ec290d22bde93fcf631923091a0_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a0968a8bb5df2b0b41bf55b06f11397a4d0c0ec290d22bde93fcf631923091a0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a0968a8bb5df2b0b41bf55b06f11397a4d0c0ec290d22bde93fcf631923091a0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5882d9e24bf330ab1bd022877c1f3b711a41b329c46c64652105a1b0a1c24cbe_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5882d9e24bf330ab1bd022877c1f3b711a41b329c46c64652105a1b0a1c24cbe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5882d9e24bf330ab1bd022877c1f3b711a41b329c46c64652105a1b0a1c24cbe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:a7f9b163518a7508adb281ab052ca9e1c233c9ee5efe37efad238eb0febad187_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:a7f9b163518a7508adb281ab052ca9e1c233c9ee5efe37efad238eb0febad187_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:a7f9b163518a7508adb281ab052ca9e1c233c9ee5efe37efad238eb0febad187_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:059a0c17ca865b86ef3b3c19cf641d3dd43b007de861583f5c160083dc52a012_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:059a0c17ca865b86ef3b3c19cf641d3dd43b007de861583f5c160083dc52a012_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:059a0c17ca865b86ef3b3c19cf641d3dd43b007de861583f5c160083dc52a012_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7fd099e945dc79ff47d6aef25ab62b66920ae6e7338ef2da01ec5865970bb62b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7fd099e945dc79ff47d6aef25ab62b66920ae6e7338ef2da01ec5865970bb62b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7fd099e945dc79ff47d6aef25ab62b66920ae6e7338ef2da01ec5865970bb62b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:2461d40854f69f775c2643a67eb8676729f4fde44b8ad6f106b86b8a66342f67_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:2461d40854f69f775c2643a67eb8676729f4fde44b8ad6f106b86b8a66342f67_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:2461d40854f69f775c2643a67eb8676729f4fde44b8ad6f106b86b8a66342f67_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:c69c4ec8cd052eeca122726323294481522580372cc3c948fbeace53beb74765_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:c69c4ec8cd052eeca122726323294481522580372cc3c948fbeace53beb74765_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:c69c4ec8cd052eeca122726323294481522580372cc3c948fbeace53beb74765_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:05f0aaebb8307b693452309341fef6e3bfe6912a34c1a9d7ced1be398d81351f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:05f0aaebb8307b693452309341fef6e3bfe6912a34c1a9d7ced1be398d81351f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:05f0aaebb8307b693452309341fef6e3bfe6912a34c1a9d7ced1be398d81351f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:0a46ca252418f181a86af41b48cbabda464d51f9d9f44792efea11e54ed2167d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:0a46ca252418f181a86af41b48cbabda464d51f9d9f44792efea11e54ed2167d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:0a46ca252418f181a86af41b48cbabda464d51f9d9f44792efea11e54ed2167d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8e9b9f7048b849a45ea2edbfcdbc1601d8a11cb4260d5c1d89d85b5ed462e7ff_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8e9b9f7048b849a45ea2edbfcdbc1601d8a11cb4260d5c1d89d85b5ed462e7ff_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8e9b9f7048b849a45ea2edbfcdbc1601d8a11cb4260d5c1d89d85b5ed462e7ff_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:cc9d2ebecaf2c78d99104d0a3ff23cf7748e42f13d00215783cac971193b1f69_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:cc9d2ebecaf2c78d99104d0a3ff23cf7748e42f13d00215783cac971193b1f69_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:cc9d2ebecaf2c78d99104d0a3ff23cf7748e42f13d00215783cac971193b1f69_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:25e957fc0f6723e791625c55d1b251f6b7a894e15d74e7af29e004add4e3a6bc_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:25e957fc0f6723e791625c55d1b251f6b7a894e15d74e7af29e004add4e3a6bc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:25e957fc0f6723e791625c55d1b251f6b7a894e15d74e7af29e004add4e3a6bc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:42a64c335c5af6c607f435c9a09411e789ba8b66d4df1201d532f27df5b9dc04_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:42a64c335c5af6c607f435c9a09411e789ba8b66d4df1201d532f27df5b9dc04_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:42a64c335c5af6c607f435c9a09411e789ba8b66d4df1201d532f27df5b9dc04_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7c98311b8e0f89f03a4250cbcc60ff62ffe65c4ee1bd8c34c31b623442f348e7_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7c98311b8e0f89f03a4250cbcc60ff62ffe65c4ee1bd8c34c31b623442f348e7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7c98311b8e0f89f03a4250cbcc60ff62ffe65c4ee1bd8c34c31b623442f348e7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:abdd622e2447490b74f285cf653b9f6900b904aa6750b34bf9a39f09dc6337de_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:abdd622e2447490b74f285cf653b9f6900b904aa6750b34bf9a39f09dc6337de_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:abdd622e2447490b74f285cf653b9f6900b904aa6750b34bf9a39f09dc6337de_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6a3350010ffc87ac68f2c8eff3ccd707bef4d9295be9aa7d5633e83b3fdcec1d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6a3350010ffc87ac68f2c8eff3ccd707bef4d9295be9aa7d5633e83b3fdcec1d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6a3350010ffc87ac68f2c8eff3ccd707bef4d9295be9aa7d5633e83b3fdcec1d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9ce9629c6a48384d0dd7d325fd61cf62b8c290db57b2917a8ed671f7e3d4fa9d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9ce9629c6a48384d0dd7d325fd61cf62b8c290db57b2917a8ed671f7e3d4fa9d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9ce9629c6a48384d0dd7d325fd61cf62b8c290db57b2917a8ed671f7e3d4fa9d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a71526c9cd2f4c5f9a397348f1ebc08590caad252cf3bce6e5d07ee6c77274c3_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a71526c9cd2f4c5f9a397348f1ebc08590caad252cf3bce6e5d07ee6c77274c3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a71526c9cd2f4c5f9a397348f1ebc08590caad252cf3bce6e5d07ee6c77274c3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9cce3c5b53509924dd37d4d3a250925226372f26b45bb52a9dcb46526b1f3d2_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9cce3c5b53509924dd37d4d3a250925226372f26b45bb52a9dcb46526b1f3d2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9cce3c5b53509924dd37d4d3a250925226372f26b45bb52a9dcb46526b1f3d2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:137c1f39ca66f98cd37c8a9deb3279d0acd18c24d70a88b6e8d9033a1926fc0a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:137c1f39ca66f98cd37c8a9deb3279d0acd18c24d70a88b6e8d9033a1926fc0a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:137c1f39ca66f98cd37c8a9deb3279d0acd18c24d70a88b6e8d9033a1926fc0a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a38f0412ab643c849826b9600b42aa8975f4d77546ed3b36e92e7b2dce237e4a_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a38f0412ab643c849826b9600b42aa8975f4d77546ed3b36e92e7b2dce237e4a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a38f0412ab643c849826b9600b42aa8975f4d77546ed3b36e92e7b2dce237e4a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:de2eb4f5453b3a0463c333a1770034a9016eadddbe8a07c2666c3d58367ce3f9_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:de2eb4f5453b3a0463c333a1770034a9016eadddbe8a07c2666c3d58367ce3f9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:de2eb4f5453b3a0463c333a1770034a9016eadddbe8a07c2666c3d58367ce3f9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e463a6ace53d6f8eeb652db6a69ecda86245cf3a87cf10ec7735738375d17c9f_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e463a6ace53d6f8eeb652db6a69ecda86245cf3a87cf10ec7735738375d17c9f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e463a6ace53d6f8eeb652db6a69ecda86245cf3a87cf10ec7735738375d17c9f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:348c8fad1c84cc45b10e7add9d5bb5c37057b699d6466e18c3bec3d593e1adde_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:348c8fad1c84cc45b10e7add9d5bb5c37057b699d6466e18c3bec3d593e1adde_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:348c8fad1c84cc45b10e7add9d5bb5c37057b699d6466e18c3bec3d593e1adde_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:37bcb5a159c17e1241a4e5add6d5276512ce99418b2f779c1e2a976a099de7a3_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:37bcb5a159c17e1241a4e5add6d5276512ce99418b2f779c1e2a976a099de7a3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:37bcb5a159c17e1241a4e5add6d5276512ce99418b2f779c1e2a976a099de7a3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5653e3a360eb8e725d483a152ef0510d5e1f7142666cc5c6e27f62965f6cd08c_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5653e3a360eb8e725d483a152ef0510d5e1f7142666cc5c6e27f62965f6cd08c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5653e3a360eb8e725d483a152ef0510d5e1f7142666cc5c6e27f62965f6cd08c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:57ea23e19a26640f9e8bebcef70419d22c23ff334878e89d4b77a894acc2ce7b_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:57ea23e19a26640f9e8bebcef70419d22c23ff334878e89d4b77a894acc2ce7b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:57ea23e19a26640f9e8bebcef70419d22c23ff334878e89d4b77a894acc2ce7b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0d0633b8cb1de498ee1441b5e28b4ac6aba808f6ad37d3c2bac9f01c94ff33ac_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0d0633b8cb1de498ee1441b5e28b4ac6aba808f6ad37d3c2bac9f01c94ff33ac_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0d0633b8cb1de498ee1441b5e28b4ac6aba808f6ad37d3c2bac9f01c94ff33ac_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:702219e963a769b7dbe97a0f9ea6a20dfd1415097dd6f38cf31cea657b1e4936_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:702219e963a769b7dbe97a0f9ea6a20dfd1415097dd6f38cf31cea657b1e4936_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:702219e963a769b7dbe97a0f9ea6a20dfd1415097dd6f38cf31cea657b1e4936_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:aa9dc51ef8366806a19116f700448b4c0ea9dc1de7fc9f2b8191872de744e591_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:aa9dc51ef8366806a19116f700448b4c0ea9dc1de7fc9f2b8191872de744e591_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:aa9dc51ef8366806a19116f700448b4c0ea9dc1de7fc9f2b8191872de744e591_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:dc192484377ead9c1805632aa8a8252186c4f5f0649bc30ce521b67f521c66a0_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:dc192484377ead9c1805632aa8a8252186c4f5f0649bc30ce521b67f521c66a0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:dc192484377ead9c1805632aa8a8252186c4f5f0649bc30ce521b67f521c66a0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:02a58199e4b61c2d8854772359ea02b3abe946e3e67d1cea7ff753c49b0ad3e7_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:02a58199e4b61c2d8854772359ea02b3abe946e3e67d1cea7ff753c49b0ad3e7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:02a58199e4b61c2d8854772359ea02b3abe946e3e67d1cea7ff753c49b0ad3e7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:35e90ec749853c76f098be940be10e29e25401c6a1064a27843f09cac052378f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:35e90ec749853c76f098be940be10e29e25401c6a1064a27843f09cac052378f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:35e90ec749853c76f098be940be10e29e25401c6a1064a27843f09cac052378f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5fdb8a778fc61b0900436f22aacadd59f7da453af25b9b2eb9c22aca76bc9b_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5fdb8a778fc61b0900436f22aacadd59f7da453af25b9b2eb9c22aca76bc9b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5fdb8a778fc61b0900436f22aacadd59f7da453af25b9b2eb9c22aca76bc9b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4554e982ba99a234ce6c3717e3447b817fc1c35a384e8fae9766dbb4f22b868_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4554e982ba99a234ce6c3717e3447b817fc1c35a384e8fae9766dbb4f22b868_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4554e982ba99a234ce6c3717e3447b817fc1c35a384e8fae9766dbb4f22b868_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:3d5ff34a3f9281202e3c0c9593b481d9b16a8321020caca71fa4e3b4d6527579_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:3d5ff34a3f9281202e3c0c9593b481d9b16a8321020caca71fa4e3b4d6527579_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:3d5ff34a3f9281202e3c0c9593b481d9b16a8321020caca71fa4e3b4d6527579_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:423f3c92919536202042249d0e3911b30e777ad4616ae8f6ca9968c87e14c33d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:423f3c92919536202042249d0e3911b30e777ad4616ae8f6ca9968c87e14c33d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:423f3c92919536202042249d0e3911b30e777ad4616ae8f6ca9968c87e14c33d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bcc604910483ac005899662bc05a597cbc8af51dd0c1dbaa05d521b95cc2ee94_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bcc604910483ac005899662bc05a597cbc8af51dd0c1dbaa05d521b95cc2ee94_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bcc604910483ac005899662bc05a597cbc8af51dd0c1dbaa05d521b95cc2ee94_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d76ee581c268ee313f9815c181bbbaa91f976c2da68a7a5dfd304e62f4e4a003_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d76ee581c268ee313f9815c181bbbaa91f976c2da68a7a5dfd304e62f4e4a003_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d76ee581c268ee313f9815c181bbbaa91f976c2da68a7a5dfd304e62f4e4a003_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:213608462f3f06ee113095a0b0be07ab8b1e8c194824a11f56c67392729e906d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:213608462f3f06ee113095a0b0be07ab8b1e8c194824a11f56c67392729e906d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:213608462f3f06ee113095a0b0be07ab8b1e8c194824a11f56c67392729e906d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5f1fd024087262006ea5a3a03b1eaae1590be13fede1f318987921df0c2c3800_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5f1fd024087262006ea5a3a03b1eaae1590be13fede1f318987921df0c2c3800_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5f1fd024087262006ea5a3a03b1eaae1590be13fede1f318987921df0c2c3800_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a5d235485bcf72b816bafa06ed24b596b2b72f543e17e845ac8b79dc16f88a86_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a5d235485bcf72b816bafa06ed24b596b2b72f543e17e845ac8b79dc16f88a86_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a5d235485bcf72b816bafa06ed24b596b2b72f543e17e845ac8b79dc16f88a86_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ac8a2e047872045fba2fc0ea483a700de6c6398ae2cd184bfbdb021969d6eb6d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ac8a2e047872045fba2fc0ea483a700de6c6398ae2cd184bfbdb021969d6eb6d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ac8a2e047872045fba2fc0ea483a700de6c6398ae2cd184bfbdb021969d6eb6d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:58dc4f0cae516c3613bcb01833e42399b2db12bf7f82c68701baace24fc77b12_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:58dc4f0cae516c3613bcb01833e42399b2db12bf7f82c68701baace24fc77b12_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:58dc4f0cae516c3613bcb01833e42399b2db12bf7f82c68701baace24fc77b12_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5c793d527449dfb1b10921bc56e8a31ad3d0f8e05dfd19a1782a67025b89879d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5c793d527449dfb1b10921bc56e8a31ad3d0f8e05dfd19a1782a67025b89879d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5c793d527449dfb1b10921bc56e8a31ad3d0f8e05dfd19a1782a67025b89879d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5ce2fa8d80f65f80b35fdce9568eb02d1a30252222f8593f60d3d2ab85ca9a7d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5ce2fa8d80f65f80b35fdce9568eb02d1a30252222f8593f60d3d2ab85ca9a7d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5ce2fa8d80f65f80b35fdce9568eb02d1a30252222f8593f60d3d2ab85ca9a7d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ec31e82b039af04deb6b8f9c13810a61281a3cedd616aaeb03315bd3abdb2d6d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ec31e82b039af04deb6b8f9c13810a61281a3cedd616aaeb03315bd3abdb2d6d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ec31e82b039af04deb6b8f9c13810a61281a3cedd616aaeb03315bd3abdb2d6d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14d78d97d80007bbfb90b2db94a3d0aab2c5f73e1785fb27ce570cfc5e31c964_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14d78d97d80007bbfb90b2db94a3d0aab2c5f73e1785fb27ce570cfc5e31c964_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14d78d97d80007bbfb90b2db94a3d0aab2c5f73e1785fb27ce570cfc5e31c964_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5ed57df32a4594d7acd4e4411b009c6bcfc54b2e90a337f809b8a6a53e858480_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5ed57df32a4594d7acd4e4411b009c6bcfc54b2e90a337f809b8a6a53e858480_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5ed57df32a4594d7acd4e4411b009c6bcfc54b2e90a337f809b8a6a53e858480_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:69275336a4bb1cd9093233541e6f1e29ccecbb8096673ad0b1880d81ae454ef0_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:69275336a4bb1cd9093233541e6f1e29ccecbb8096673ad0b1880d81ae454ef0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:69275336a4bb1cd9093233541e6f1e29ccecbb8096673ad0b1880d81ae454ef0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b889a52cecf44d33e496bb09da6073217d856dfbe6fe78149669ec2af3dd4f63_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b889a52cecf44d33e496bb09da6073217d856dfbe6fe78149669ec2af3dd4f63_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b889a52cecf44d33e496bb09da6073217d856dfbe6fe78149669ec2af3dd4f63_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:39348b1628d4c75591d22648681ae23c441338241b48d2ed748df691a56dcd36_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:39348b1628d4c75591d22648681ae23c441338241b48d2ed748df691a56dcd36_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:39348b1628d4c75591d22648681ae23c441338241b48d2ed748df691a56dcd36_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6964ff070c67d6f71068014ba253466e6ede36b043cd0f8e3908a32d91953f87_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6964ff070c67d6f71068014ba253466e6ede36b043cd0f8e3908a32d91953f87_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6964ff070c67d6f71068014ba253466e6ede36b043cd0f8e3908a32d91953f87_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a274ec689248b4fe3431501c0045736e3b24df4afafcf86ea6d0704e22586c27_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a274ec689248b4fe3431501c0045736e3b24df4afafcf86ea6d0704e22586c27_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a274ec689248b4fe3431501c0045736e3b24df4afafcf86ea6d0704e22586c27_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ad6f9a3b78b0e98bab747ece64657e69f301337f4966e3f40d3fe0588d1a530b_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ad6f9a3b78b0e98bab747ece64657e69f301337f4966e3f40d3fe0588d1a530b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ad6f9a3b78b0e98bab747ece64657e69f301337f4966e3f40d3fe0588d1a530b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c28651ad376814116ca3592e5df4853dc0cb04402d825a2d12812ea6df06a4b4_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c28651ad376814116ca3592e5df4853dc0cb04402d825a2d12812ea6df06a4b4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c28651ad376814116ca3592e5df4853dc0cb04402d825a2d12812ea6df06a4b4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6fa533909fe009e146d0522a95259e7f80399cea0ced183c308e146bc51fd9bf_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6fa533909fe009e146d0522a95259e7f80399cea0ced183c308e146bc51fd9bf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6fa533909fe009e146d0522a95259e7f80399cea0ced183c308e146bc51fd9bf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:30c988074c30420793cecbd4d3912868197661b61f00d01bb8fb86f4aae2aeab_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:30c988074c30420793cecbd4d3912868197661b61f00d01bb8fb86f4aae2aeab_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:30c988074c30420793cecbd4d3912868197661b61f00d01bb8fb86f4aae2aeab_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3dd6b992e2620c2d08de3ac99c687a9b1562d1a46bc9159a14e34abae9d40f36_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3dd6b992e2620c2d08de3ac99c687a9b1562d1a46bc9159a14e34abae9d40f36_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3dd6b992e2620c2d08de3ac99c687a9b1562d1a46bc9159a14e34abae9d40f36_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1200e38684ea24ad9e98352ad84e3c3791be192f08f22c77197987e548c02939_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1200e38684ea24ad9e98352ad84e3c3791be192f08f22c77197987e548c02939_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1200e38684ea24ad9e98352ad84e3c3791be192f08f22c77197987e548c02939_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2fa632f63034c5e2ba411ecd6a6655da1f1b5cd65e05dd1c2063893c77fdfb9f_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2fa632f63034c5e2ba411ecd6a6655da1f1b5cd65e05dd1c2063893c77fdfb9f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2fa632f63034c5e2ba411ecd6a6655da1f1b5cd65e05dd1c2063893c77fdfb9f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6f9a533d4e52e87336542eaeea992cd22d2979888f7c96d1537fe89a7a186a8c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6f9a533d4e52e87336542eaeea992cd22d2979888f7c96d1537fe89a7a186a8c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6f9a533d4e52e87336542eaeea992cd22d2979888f7c96d1537fe89a7a186a8c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:784e009ef59f00cf7e127d811f2cbb30f8c4b5c489c9d51985c8385400ce97fa_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:784e009ef59f00cf7e127d811f2cbb30f8c4b5c489c9d51985c8385400ce97fa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:784e009ef59f00cf7e127d811f2cbb30f8c4b5c489c9d51985c8385400ce97fa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:3576099906e843ef0a4639ab2563ea90c9c875d6be59b1bb687f59cdcff0acb3_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:3576099906e843ef0a4639ab2563ea90c9c875d6be59b1bb687f59cdcff0acb3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:3576099906e843ef0a4639ab2563ea90c9c875d6be59b1bb687f59cdcff0acb3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6d0bedcf0cfc56da79f55effbb2315fa7da2a126347bf0fa3b21fe96b9c3f037_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6d0bedcf0cfc56da79f55effbb2315fa7da2a126347bf0fa3b21fe96b9c3f037_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6d0bedcf0cfc56da79f55effbb2315fa7da2a126347bf0fa3b21fe96b9c3f037_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7aab0df04151b6970f04174e2b257a77615be9eb724121ff29b59347f8edc8b7_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7aab0df04151b6970f04174e2b257a77615be9eb724121ff29b59347f8edc8b7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7aab0df04151b6970f04174e2b257a77615be9eb724121ff29b59347f8edc8b7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b9a4f7fc7ef59029d19640802db410d32d52a35bf7c8a5ad229ce1e0b559614b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b9a4f7fc7ef59029d19640802db410d32d52a35bf7c8a5ad229ce1e0b559614b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b9a4f7fc7ef59029d19640802db410d32d52a35bf7c8a5ad229ce1e0b559614b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-69873",
"cwe": {
"id": "CWE-1333",
"name": "Inefficient Regular Expression Complexity"
},
"discovery_date": "2026-02-11T19:01:32.953264+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3198e3a7911d65997d84ae2c4a4756213bd6169408f8e5b4d4fcfc1312ec221f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:75b581b7faaa791148cfc9a5e5b4c87faf3a809d2baa0fbcec38bac757007b49_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:af1751213d6286401c0e1d177bb2952715b50a255dd0072452cfcd1a239c9be9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fdc295c04d946e1294cbc811e5ee20827cce284c7a5358c9c6c926f5afb5fc7b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1fbf0bae66e3d3feafd7a5d800ffdc203ad1171d41da344c7bc899fa9df0c439_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a83b03a6cc820386376a5e0b5ac0bc43147338cd0f77ba6b20284b93cde06b63_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ab5dc4b258e7a47d4a05f2f4975324ecdb53481bf591d41dad10543be93ac59c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f6fa7b17816eb0b9d73c00dbf4715a26458d784e65858ebba255b032a5a2b3f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:565239690ed2974560e390d87055eb74f793a4d2abe8dcfcf0d40c4b1d3e4334_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5769b6120ec44707f7b98ec0ba5e90dc8dee0cf14a2795a0785435cb01711fa1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9640a22ea7f43b46c281d8271b89480a9df2b5c9ef500b3b9600c5373ebdade6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9e682bfd352c260c9127e3f2affa6dd16af28b3abb8ee7303753eb0ade31c1e8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a84a096bab105b8e51bdc5f2d93c011a8a6a32e0ccf5b3a5ee2cbb2abeeb2aa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ef77e97f9b16035db985cc79029fc5c3bcd6004ecaee9fec9c05e354ac1e599_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5f3011e69a519014b7801d2acf0897f95635dbe17492a09216673ebd4a1c791b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:eaa84214ab82626dee31c0f652f6d4d980065a920932eb8e69f2e078c8fc16b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2684c0efc9838adc240b08c8b263d829bec71acd381dcb4147d8c45eb1d08d08_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:31b01092a5183808a2a97430743d04941f034388254cc7007e74c4ce3083df25_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5699e966b38060569e298ccd084fe89bd719302ca70e2ceeb4bb9b6ca5be8991_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d052315ad81d7689a02be445c9a1df8d296fc3c32a33e3975dcc4297fffa2bfa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:4b16fcfd326efb0618351bc9ddb2c3206b18e189c188e5c9fcf27f3ca8f3afa7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:511bd02437b2ab8480a54dfe2ed3e8c11c3d9d2b332212cb455c8540678665da_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6d971be6c49127312d1568f9619c9f4684254c64b77a047f6e24e1caa83e9416_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7df6d4e5830f60779a607ad0ce8716034f168d5d9c6b563bf098dbdf3b2fae05_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:274d4e7ca8dc6003a3d18d931e63a4a0b4d5f80582351fadccef4195de8b847a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:2bd57947814981b16996f8d12e40d5a5670dad3eae9fffbd57e700c39c1b1155_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7339fa5d4a95cd617046d6dc06a2e97b78c2448353f2ee464095e787a3a2fcca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cd93cbcc8568e8bc3965cfdf4c989a91782a08c38c6affb64a0a3121fabb7075_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:04e57127605538ba40496972299b81737cc2e5197a2ec97fba0b34d74fc9ab5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4c9055e26a32fd7f824d0e0c5dc605c6e59ee22369812ab8331f7572e5154ac5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e8d4c571e3c88206979f8e3c28aaec2fb961b028df0d499ea236c494c0c4096_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ffef56a2b3d651b521f8cfd8024babe6fdd9e8987df4b37fd3d1945d1dff1a64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1dbb201ad9ba579d5fec8a6cd23834d0c1ad9c4d44927b1c90ae448458ecccfe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:2057e81c225d137b781788c9df16ecc5bab9a103a029a47196b9e2c53d4171bb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d66f70ef41f4cb5cabd1e1c36cf32923cd0f228687925ef8c1b08348dff12ea7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e61c5aaa06056181b140e49b24b25835c806df7a51efd7597d3d29c8504dfe3e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2dade7bac074ae0b6d6b8a47004a3c534c6b1a484a822c45001f5d4083742aa2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:40132843fd968f729205f908824489fd67b9b0e5bfba1717840f661147af6adc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53c8d86e293208c966c8e7e4fd3435c9d8806e97ebb31c3e963f26456fc38600_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a310f85c49c19cd35070957d0621694e30215432b5d01e035ed3e8242f82c283_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:29247ef394a58b75aabdd5cc168e578fc2347c8e0c1d779b7b355848a97df2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:795a0b596a024d3793c0d211f8e2acf771ae79d4c5d47decef1facba2d5a318b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b5277a1b6205eb2ef3c75d691272da6f070b2d10fb1f27558f9241941471cc8d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:d2acb9e2a03e0c2873f562605b1e9c9d32215d1d9d265ce18bd262c7c4263f20_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:874eab1c9150b030a11a0742589008c00cd6f8af8fe188ffbbe28ee6b90f7bf6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:9ee41a2f3a833a077416d0bdd181d767145830fde45cc6fa5c31196ef749b1e4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a2dfbd0198e34753e82c002abf31d92585dff3b8093d77fd38d8369cb4c44ba9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b4f9122a9571ebe6e0da7465f498ae3e74cf7c77dd6062a675105f4c437e29df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:054e6260810a05bbcb889e80cf6a4f3668409bcfaf6302148c1230b443fcd8a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3d0ceefebed5e66f56692e62fde1a1b435cfaf596932058d0f2768d7141b6bc9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:499f3d65ea6972937bfed0d482a782ebbf807c4c0cc369e81d53dfa72c591657_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c08cf8ce6baf72aee6019b7318106e3a02e635f4b385a71a2e58387e706a2cbe_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:97af951210f4ac7395effe942732418e9999e7b8e54c9db5317eadee25491b3d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a80d32903c82085a1904b088453a13c88202d53c26626a0ad3663c784f36230e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a913a01a437d7a6d0ec6cd6eddccf25f064e161b07ed3f9fb0510b485130df08_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbe31a367bd21946e4dc641324c5091a85bf3ae3befb4f40bdd59b00c23bd67f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0d7dd7c2f034bca5dcb69cbf5d8e1989e10076fb4187e9c144201b2afec28a2c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:11286a96806113bfbc34db1b1e230fb678f11135da1809bf7162cee01bfcd267_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6fc448b6852cb86de3661f170f364c99940a004d1f85f9e0d546f24aba812fad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:82b0dd3db731b7a84ac6b7ff11c2407ab0020e30ef04cea06b25a007be5cae31_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1aac0c8d30f9ceb91a9ef3cd76fe90c338568b6408656687fe168a8c9a48d628_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7062eb071701245aabc8f0839c966e7b4b5fb1673a0f5713b44d82cd726f3ef9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:79de159f6b1033732145619c507f29b09fa50f2709fffaa5a10f6554c6818651_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c56ca8e906e3b544e0dbdeca92c33ad8a7b0a846378e3b6c9ecb050bf60f2d7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:11c374a767b0cdcb1eee64e69900ca970dbd67f814a76ce9648f578862db2dfd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:1ae113ba4a4f5c2e2d9a2abf69d37ea047da7e879486ddf25303ab709648bc79_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:64ba60275b58312a1a2472ddc46894c40e746014eef5ea4379f71c0b6d7c96a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a0a1e7e812c0f1280e24cf4feff8dabaf299f110a8e8e695dd2e3dfb98c1c698_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29de1fa9e82a64eb363bfa664dfac943e9531a5cc46ca5c2e2c41b93d8b7fee2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:2eee252e29fc035c3d8b5b91ea2e08a63d96b9f11c6d29961cb738cf1ca73d19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bc0fd93c51986738cb1f49fa4a31f066ea2ccccfd45c36a2ae7066244cf1e351_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:ce46c15516097e435174ffdd74a4a89f1c9d44b256f0ab5ea84b846ca2f339d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bbb9f7761a83c0face258f4c056fc8276f1e84e37e533ceee3cd1ac11367ed1d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:d23edb6ed5bae7f0f2be4e09cc70e031579e06bb2d42cb1c507727c319deb38e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ed2a405c06a57740f0f44a8c3cd9b7e3aedd0bfa372d85e06852082f4ce87ae0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f360847ce5b67a5ca834ace7da710150d47786dc10eea85494e467cd4d6ef908_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1d3073d76a6486e752c91e90ff6030c0c0993e9b09ca8f9efa44e5decfd52d97_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4c49749a0ead346171f842c37c832cb6c2457f6812fb487728d561aa85d262e9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f1f47f29cbc61ddc25a846d4c7d9caa18b91cfcf0e089989883a28ad86b1f2b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fc01321fe5597aa44e732fdb7e99670d525a47dc7a0e0a37546f4b28fd697b60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3b5506219e72fab36ad67c982bd7f9bd2d462070214a71b4fd115ced29aab710_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:465009fe0147ff5370183ee02173f430d0b9cfae5d579aec78bedbd3cb9d5dad_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:607051d5881ef1f78d6a62e3ebdeb761f83988788f7898d869482c22773dbe9b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f12bc532130dc5fa8c8392d3885bde80ca93ba9700844bf9fe54f4878ac53f46_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:33e52f2ae99d85b6fc05d53efb17d0a72540a782a33fa91e766fe2e47a878a9a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6d03501991d6fc5efd43a6c73cb0e3c8630db1f690bf07253c7e7d17a3de07c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:97598836bf560759a9ff39d9675e5c7f18a03e14500982e442ea93514cbf3677_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f24128b82f5c31b4eaf4f7198e4b8c0c702588f0568221b07df121175066372b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:671d23e3d686856a4d47efc6c410ace8deffff06134c979c042fde8e9de487a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9b9e3e354b0218bc54258ca7a8f7117cfe164c2311965769847e83e7f6c15d78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d59d91a2af93c1c7b2dd66e5cb98cd8ccc29c3c64b2cf016dea1d2828a6e06a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ff08f965b67efb7ff451665a77a7bc0f247cde4ca9038d5558393686bc037c39_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5e4971e899f775e21b6e1a91f00f633c9467d31bdbf4b71038be98520600a625_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ae63547bd2f56fb1f1efe75e17413e43cf503fc7089dff3fecb68d2fc50bef97_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:80154aeefda9559b46845fb40f50aa723f75f29485cfb4846995d08b0c0bceb6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:fe5558e0b36855d11e4a57511f878702f87a3d907f79bcca226e99a0c8052628_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0ee0d97e5b746a6df7d95ee4ef32075b52a235cd285039e2460f6ad084b1f5e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d80a021dbf04d702b2bc9736f036c0436191ab4ab3510749ccd03c533e9b5aeb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6898ceb180df4a46da74c974cdd105e3bcbc5ddd1575e3cabe53a43dc676258e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d4c950b548bc3ed89ba8e5e216115bda1600c67d5c35fc9979fb4155415a7b42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:39af594e6f2fd164192c69bab214557cad92989f21e059cf66f00e455c7f816d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f94694f0d2db1759fa507fdde4594e6b4025a61e3c3f8f2e6caad509a77f6709_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5033eb3bcb9c08972c36d6e19b8d192d85822373e76eb3b54cc9168d86ea62b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:a9fb56ddfaafe28542fd8a824923257122500903fc18626f90d84b7e9b2da856_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:0f4d2bd2755eb5467e25d30ef813275b15ec77c1433d406250af5294b8b49f55_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8a2d63e97b83cac2d12e809ea63398ba1c188dd996a00189664c5dd009551860_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:10847c520f582706d956c48a95e6e2fac51cce89aa8a3d4fee316fb1ec97e140_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:73d3bc342e17226fc6e47dfaf448d09e394ea53ec199bef1ba42abf3e0be8c5c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:11f214e396caf556ca08273015712fc739d1df22b550812d079ef51af642d311_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b8a8e237f5827d7935e0dd8dafe0f59157cdada056580d74feb4ac1b9e05b683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:26422066656afd16e5e36afeb7e4b5a92cb6888d550ab0a0071da9a198f290d5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3a2ee96fcf0963d55d4c1b6ffb874be6c3552ea0b9917b410976bd59e4a58efb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:2f41d30f61ee12bd34b94ba6d37a517eacb2dc4a51c938f588a87c1f4333b924_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:b49b52eea375dce5ee2b1fa3aca1facd6ed65b94e44ab235753eebfd917fdf58_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91e0a641719fea07fe1185250e91b13f8ece46fe371bb603308306fa9bbfc5d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a0839939275e2b68712d77224d5a7612b10a1bf0152a6f57050f179a1c492f70_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:bd2d266a384c88aeff5ef7174ecb532b24aa2a9d6d17a2e5c01ec384102571d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:fcbec489ae513f599fd533e30672085aacb0f937b7d3ecb8f97a39b24d0e3143_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a37378e201c50cfd94eddd0ca6163650e8af46e7c3a4f97d821aff530ea5374_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:22eb07d776eed9b364e0f8843dd2eed75c4295cd9c5d3567cb76b5e5ce20b725_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:73622f6358a99c5b2666edc3f8b680b4cc3906e2f198c67709973dfcd7cbb0df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b18d10d989d149b9bf1e94be6b115ec3445541d5d0cee0358b0fdaf634f93378_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d1772e78e5b5aed465c12a05548f9eff106f7a1e00d3d913830f8dee427fa4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e9ca0475950b50db7e62be4c43d82cb25734b00fb081359208323067c511c19e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f403594cab45dfc4de5a1fb56f8c9cb8d67ee8b8da68ef64487ef45ff6578236_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fab18be096158a97131184f91230ca5ad7a66946ad4ad527c224f279a4d413f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3e79c9035ffce3cb2f835487bd144c0976dc407890016d1fb86d1f1dc3453ed1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:70c684711eaef0d1b4f996d745c936f98707584a54b5d9920b8c25af4adec597_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8371e3f60ff9846b4249201911cad68360c81e944f753a6eff72003a17c2512a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ebae85f444356b6e695da3e3d2846bccdb8ef037b8cdc77f94128574531851b5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:0c0ffcda769ef04c9b46206aafeed9d6afe4f82ebd46751aab4b47ee6584fab4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:408f3dd8943ad4ba2ae37bc2708b698e60a150e98e1c0876e46d088832ed8d24_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5cddf09377c1fda878639186f3844bab8833fe3890f3266c79dea36faa4f11e9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bc7f21410949e77fe85c5a7330548b893706c2471d7d4e8d5c6c26a873132263_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:283596834104ae59f2780b8f0d61d90ea6128c4b09d57da03e05414203ee9245_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:53eb49907793916b8c24463ab096e15d14265a19da7a735a38bf5ec2b9625a79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6ec2c12950d227467d95fb84bbb1f9237cf8ea00b0a414371123dc524e94c71d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9fa52422e5bb14cd6eed3ae6d2a3c0ab07f801e6f92493ec59217025239a5121_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:089a4975c6964f0c0a435586733b9fa5c3c9c8a5e139580f016f7f69ab83da27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:950bee80200f2d9bdcb3f07446eb6aaebe4b31642990272178441b6f9e56a761_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ba71968598ba3fcc8dd2d9e3a861484f74804828ebbe5b7251da6706b4cbaae0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d5513c03787f261759b02454de8248faab74c402a7c8d9e948f469181dbb786d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56b40826166445e18229752bbcf65a4cf498e30c4f763110099e9adf1accb209_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:62a48fb1fc6545c57e524b1e1e3dc43b9749c024578e5266defc819d46d264e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:aa2333d5515daba8a887e66ea88370041a21a6f3c483bbc4e2bd888723c25285_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:d61549e87a7d32c426699db0e1e7f716a575427c65493f9af953a74581ce41f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:328589e1b67b3322968ac4f8b57193b936fbcac1317136e2818f8792e76a7d0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:362523f56123e0d1b18e7b3028db4d883de2c886e5796e569bffc64118577ca0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:5b18e39a6782f2bac42b00c42d88a05f19d1740d49082289aaac11aa07a48f35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:86961033ea238cdf3d061f8aa811f4559001c4e047e98165b00a8f9018b74c2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4056b49b2c42986f94456c5c3a5df02d04f8a08fc4cba8b957c040e4590fe581_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:94b1cf74b70f1ea57d939327a45cc2202783f1ca1d098ff27ac8aeefaec8f2aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b7acf9a4f00a5134eb1810f0ea70fdacfcf56549ced88a80b36abeda4435d925_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d43c576b25a46f4b13aa9968a17c93078c96acbe364e2fc13e12cbeeb334e796_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:020cd17bf8debf39db376f9f514901b1bb882de052631a01814812dd0a913f53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f857a7dde34e1082edf0e26f92be3ead9148a3c581595a5a945704697d9a9e8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ca86e79869a7ab48486107e3637aa3953201ea36b6b8559ae8b2a04041606c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7f0561027732ff639f602c3a24d89894302fd43879370658fffd01a57a99a1fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:077fa69807819b9cf9c057e592c8e75c8108ea09cb2da43d7c378dd76ae68c51_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1493ba223106394c3d89d993ed18f37af46c86aefa50d2a3da144d1ca49d10cc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3d6a4223a99f958f0fa1c4afa6f1aaa7a584a996fd95140c1bc151eddf215c57_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:917aade90b9dbdb7c59ac5c85dff49ec74b29a27aa330352c24680a6987a9a7f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0539cd95b403a48c3ba7a04e3e27da96798e7e342bb6696f65599c693a4b4297_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0a3991f02157723641d576f54823b42d424e612837f7871ceec21e40633235c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:60cda39573f604f52c427956ff45e8517e498783efee60cb8c7804ffed26a465_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a564cbff84b987d316d891c033ba1ce2299d0ebb655452671498b3de789b6f02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:23e8f2481d7c5f71053408be6bb5831e6a852ee4c9428f2e72403b6fd721068a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:38cceaff79e567296a50b816cd81cf60c695315474c62e0b380d9d0ed253eebb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6301be72ffce6f973f70fc6977632499d2930cfcf23ef6e477af59f3b283e3e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e70213ca82db398d11de723f2dd463c196059fed0639ccec30709332648efe78_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2bc4240c6a9f5abe64db9b36884b14d0a763e93a6474096e23a353cab562c400_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4a524f1fcf7c5710ceec19c651216c326ce15290848e4736d504f3247a20e1eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e2dd70d80b53776a74125790edbd091dab84b8da27545e129f9ac99d7d5d4657_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ead5377c32eb77ed07c2285ce30eccd930ee6348d19977ec8c7f8050d9b0ff04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:27a4c883fefa0bdb0033fc23d93875f3eccdda559d2813fa131a8ad3b24b9356_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67182434ce84ce97c5374f5ab962a79f67777bf02f82ae92be8f7eb5d0c2b85a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:8731368ad974fd8d1e5c954284fce9346912eb4210b01e01e6fc95893320f591_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:bc7dd594fb0d5018aa4dc0d26653f73d1859d978e07f0a1939189c5d2d654895_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:20874645efadc9cd5b6a176a6d76cc1f6ee5175404f7da5e10fea3bc98498ede_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5854e872994fcf1c4c534fb1b64f7f24ecffc120b177dc8079056b6a420ae698_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89802f2938cd3444ab90393b1046d61cbd3d05280432ea2390732a0d0520990d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f6a6951136c7faa7b9bcd0f6c892ec9658a2fa8701e0dec5e45225c3bae52bc9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0b54c713dd339589a9b1fc5e109a7b65117139bd27de833ced58f9716fce95cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0eae1a64fecdc43b68370d99fb14c369c5f0116d37bda62cba7196c0ea002116_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6b167e1a3755b0a2362ec86878e5614ee29226fcc956b2e193666a7bfc47d44b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b97afe9ff8250ec6647976373edddd171f0b362ce576087d8dcac7c4ea4054bf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3d7227cef380afdefd5f5a05001129a389029547c6f5ea8dba4fc46e20793f23_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002f5d99c5fc748401bed6ef7d0aebf2fb58d6850e7d1de4df622c84e020e87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e8d8d468ce7f75b0653d4b3e41dc63bc2fd7e231d32bd2296d08155eb258349e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ec0e7dd227d354544a2e67dd236b93970d393c87c1d6093f8191b9141c40ad01_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7807ea7a4377bbc2df491ec5bb74d324eaa66649fba9f40ba46957fe1a758081_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7a977b59ab4f908549ad66c89473f9dbb84e31eefbe6a8dfc92f5598d3f882bd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e10922bda03c19bfcb9e6b85eeb3bb0e5ad0ed717375c19e2a31c94940ef74ee_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e9101408b3219a72c3e43b88129a6bc6918df42b116ad18efce8c7a1b32e50bc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0618e1978b5b4ac2a90f578af3b8b1c471ef922a3d01d58d413215aae8c5a509_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:164e9edcf185697cf77fef80a7b26eaf42efeae25aeb04a91a7e2afe8299828a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:366eb47b3cb6c42670ceba8966f0ab119694536fb2baac881685e75e6615dc85_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6afb37d303abf20e6e100a4e472d782d6bf063ae6d131852a4ef9cdac53f7dd6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:28b92b175c80d10b33844a1466fe71cb48f48431513dd0c634f2ced57e0fa5b6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2cab2a6c6f64eafdc588cc11a5537e1a2ccdd0cb37eb84507c985cdb79855e25_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c8322ff72825fe9dcc1c4446c8c3e4dd73619c15542d7f483642789e0463fee4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d3ef2745733b13faa31084c3cc345368c89f43b80b2a76e5b10fd7bfc008bcc9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:6ca65a281af1b92df6872e052381ccf15cb51c4adb0ba9afca4c3d3041e9d9e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a387760a9151eb37055ae66aa4821ee114125536324c3404a1b4c7044beebcfb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b6f9dbf0e6927d43f45ac8efcad6913ce67b663747d509666cf0ce87455b0379_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:f7828b8fc7d451c4b252b52150b2278d310e456e4b06de990bce9d123d923b9c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:215cb8bf8d6ed22118bebdc28ed8766acfe0d8bcc2c5e8311d3b4dbf8a664d48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7077e9ed025326ff3ebc0277b0d716efd46bfcff079442d777dd572c35842ba9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7987b5ef6ba2b7e5a9fd3be756c5cab95cd2464af7c9e8459d00e527609513cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8e5fa9f4eadf03465802101457da9e3a618572e47bf8ebd2859e9b1c50310991_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0d11910863bd5a411090ddf070c1be9d58c6f8cfe94eaed1c3ebc9cbe26c3cf6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6ad8362a4cb63bb7bae0e49db53ff65fc60a16f01a414e9f2ab540606a284b08_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7f889df4c103d4fb66fdb537989e34f139c953344fda28b60920feafeb1964f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cadf5ebac4b179bbc456ebc6743a061cb44437675a0b69f825670a753ff3fb0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6d5855d82cc1db4c9b87e58fdcd0133f56d26e44942787c74d0cd27e212ddfba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fe02ef18800c00ea33cc42fd3e7bb5d5ab2855499250279c785ae222e69f537_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9bec401a9b520ec096af6673657d6265501df64d94da332e818eaab70ce54722_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ac7aa75334ba6e157584d2fc588d682c9c841ddb1cad9d03ef0df96f7274041a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0077c7ef1053ca67c87920402ca1cbf21bf54626ba4046031528822a176e0875_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1d103663fd08d4a67877ff23ec32b2d16e290f2cfa268fa89c59c3f296c3b080_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:78baab63d2e3ad8f17734423f5b10cd137d944af647104bd40401f433a9ea996_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:7ebf3a7acad88ffd14b4ae54a1a8fac1eb1d22b6f102216df4586e544d2fe1f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:07ced40602810c0a35ffbed0e120a396076ff01e1d254ba9488a8714d766319b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:080a99a5e9663712b898e49ea608d1195c8e113753e23e403954fc0852e2b8da_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:125008a0bd8a64e396b32583f34c77e15e45e212e7e623ca20f418bd89cb618d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9b8c9e0dba83ba79ff28bda01050caca261f0e723e8f222cfce4a840db29e300_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08c33ef6a9b30a565ddad8d93b0529ea8a7c29a6e0f403cb0f49face063ae162_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5928577bdfc2683410ba93dba0ec9106d1ab29bce79f56a832c06e00ef82fb48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9f0fa62bbcb4f5b18ee1ab7831d634e2faf5e945e94fcc61a204d7a4a5d39d24_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f448d0ef7d1bd805abc57fb34fd9acdae51656851126b9abd3038703592ba4a8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:21000531fed1065562e8e0d275bcf48eaaad2d35f54e81e13a03e9dbe22fce2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:41a99736bd8c61ac43d9cd84f3f21d4d174851c81e2a4039263b81d0cb3520e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:95c36149f02710b63a6c05bd3249027dea0cb332ce600226b6a7aebf4ff73e38_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:988d7aab9c210f5e09de3488b38758cac859c4619f8e8d715176c60b95993ee1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1dbaa49ed53404150877894965d638ec0558f4e17bb2b0d70933d1e93c26b713_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2bfbea264fdf5062c9454ad7efeeb799d1568071ebac6195c8138c171dacde67_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:a7a07a455ee7e89c4702fb1f15c7888945acec38d7ff1cf731129b098050a591_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b965fdf100922a0b263f372f4757fec562f0b48a8032d2c7090d9c8f19b5aca0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:54bb0200c75df26bf82e42db71faef1dc309be87095afb5de60e39d2853acd62_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:63d7e09d2367614dd7b83c41b35b538a6e3d98fb49c03a103f31355202528319_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:9557a3d19aec734063ea30485f71fc2f279b7ea77ef1b2d1cbd7e98ebf7e2938_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:de22ad5dc832ca597947d9eebd182f01721908bb26f8367e077134bc442bca68_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2568dfbc55a8a64fab947b40e160757402d1598a563bb1ea7a42103d2e6c049a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5044508d683bfb7c1fcb538293e01a54e21360f85dd3d6b6d9150be3571e4604_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7f9d5ae402c429ceb81c952f23b0898f4f768b048e87f4c7c193f970d83248a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cbde0cfe56b953fbee3a2fed6ea3cd13e6cdb0dd0fa74414b488295feecdf5bc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2ba313bef314b9e69e1b2a545ab54b0fbfec2d5a6c8b558dccf18abaa7d7e33e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9848ebd13facf8daf9ca0f32295a280ca5d4dff1d48b9f3e8c0b249b616278aa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ae1bc048acdaaf5dab22505faec4c6b0c582b97023409da8ceb84d983494a0b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f8a862ce45dd686fb79c68036e611e15ce84922dfc64f847abcf6b65aa55742a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:11d975797a78fdaca7e28cc15699aaee700b3ac8185bd5d019ecc2a51980ef10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:40debe8017daf2ff3c5b17e89a4ab7e96cb717ae7bddcec305fb1eab8bbce0bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aa195335b903dcf873590deea8e425735760fee97ab33c5b648bfea1aacfa894_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d71c752e32a996fda35a49d7c7ab959689a91197b0e229481891a03c151d48f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:666c36444702f862ad1df16b8dc76f3a8f7b4eba8d63473a4cacfcd34c7ca914_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:836090b24936b955f5b60d236ae328e50ac91ba3cc367249cb5d7762cb15ebc6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:837118a81cc9bdc984af5e9a3f4fedeae4489ba4aa98cd6513dbdaece6acea61_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8bcaefae8c33ff10f758558796e4e90193b1ce2ad3ece24a21ab93a7e685dfb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3fccc681700104f6edd949e78d406f8c10375739f4ce8c5c23c9e85b69b1f201_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac846a2c18b90026c941cc2fcd91197ca909f985f0cfc14e91fa8c0cf2b10b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:96f715b9440bfb17ea68aa161b833ac33265b372e174123bc10dac3eba00a872_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a7750c02c168c6243c3cd666816d5a4be224e3799d9f7d626cf7e64f07cf06f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:32286da133273dd699de38a8ea62c46b66fd0f0271788ba6b205ce7e34fd5ff6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:34faf675b9e5361a23ee97d02ae1257feb38fda6e287b3b2c67e0b2e4e3ab06c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:997ea290d800e3599f44e72cea8bdb65876dba2483d486938e2d024b1b9a4fae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b329d7566ac8f0b7f45be16a1b364e249036c2c8f703af70c9965240f682f808_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:309782f6dc79d9760dde0265959260871b592a5586bf4073e9561e813f316816_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:529879780fd60bb296f0d2656d7d5805459827820b0b07e839909032ec9fbc17_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9a12ba31f5a9e9e4b8114ed30bf9a067cd5b92430c35905224899a819c627741_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ee31620709847e19ee56a6187986df168cc55a41e86bee1488291ff6a0415d31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:16f45167a5407ccf892d7518ca3c7a9912d5d0cc3f07446cfd3a1de175e5321a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3ec816ffcd991bf5082f28a7edad858d9b02cd65f8e23ca2e320c41a33a0cd79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:50e0dcc3cf9d804afd0a8a3f633f36283817569fa1f5b7cad47db6cfc61c4a48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:af6e2eef8ff2eadcff4cd975245ba0cdc56f04931b248cde6d581d2d17582fd6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29b6202fa854ec12e85774564ed5da58d314916d5843aa6032428c3cbf97123f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8c019754ed9656d55c293ce39412f910b0f3ac833615aaa03e961183c4831fd3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a985f0116d10743bdde5e34fb181c4639ff0941caa66a3590713ea5d2586115c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b01b10b5836dae32a5b9938ba42fd4db2ae33a6b311da4e0c54ce0e48668ddf1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:64a243eb83f743985213e3c255f7ae58909fd3a4ab69bce80b30361bc9cd9225_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:995d3fcffd3f156dcd8831241e80223d35b6a150d9d72e89bf639b6ef6f2b81a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:aa7c8a340787569438c3c7515d62384f9a5ecdc53e400cc6768bc92c940efda5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:ee434038f9c8039bb2e2729584617a8d1b2554cb1e981f24a746badcc63c9022_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:772cccd41fa1d467cc54dec80bb7de08fc746507148f6220360c89f3f731c31f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:80c44734612ee4b1c13c995b1583a317e4742755ddd9ae515d6b9c61ecb5f152_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ae27d39fe63e4d5859648c7cc80b0fdf8ab8072bb8ecb34d21790552274a7abc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:cc9a958fbda1e4df8e235a0ae4c62d23e2e02dfcf25c3c18c3dfc8bcc787b7f3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:223602e0d30df9f086cec5c4f63562fd46f46726c44e186a5fec80f57689bc24_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7099a6800e9cd28758ace736f2c602a223f61dc00fd45def548e6d9a4bd23539_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:af138219459f8f23471300a38c65d1d0c580ab93b30c63798d51e8891a948afd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d7da61ad815088b8c671d5dde3b5878fff0083776e1618c3a11594e6f08c26b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:18eace0b9a62e03ca9e882c582a3ca9362a14488044b9b30076447ce3731206b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2dc26c9c7dd35b78f4ed2c520337631bc45fb10076d94e52d9a632dd66982765_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ad7c164753be2cf26a2c69aacb95f5d91e5b1120dac43cb2ec505794fd98fb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5b23ce65b543c607e5547f2bb71866255794752a920b7f644fb203086cabae72_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:385e0ff7ff74b73dac4393c5ed5d700cb3a1289d501917dd44a6adee10f492b9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4393f322b7404940430e70469c0ede12e724564e87c3359946e349cea2304a11_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5ba8673706092251814d05e8dc3d6de7e74faf5829c57dae0e3634cb6e80aec5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7cce8b979af738044110eae0d3f16db2e70178b32b340b7f98c339c6c1c80791_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:070167681620cee73ddfffac875e999f5a32c5ba48fca753ba907671c70e3ba3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3ae7edcafadd5fc3a2ce15754828efe17dd81a7fe95759f5d10fb843d8f0cff0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:4465d88b33622cf161e2df43aafe3fbedbd4e63f833a729df6ec5d6ffbb23b1a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f0dccb2d388210d13763e44e7aaf06712b1c463b73698566b32665030a881dec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:60a1f3345766ea95b39394925fcae2358dd8cc819a0f7b187363bff9f3bd1bad_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ea484b41505f1e5b8ddade45cf6f89e7b22ad4b81d740e9db3b4263672611398_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0a527723fa338e5204f37b50f7c3ea7f46055a91f391aa12f5ff91dfc621b45b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6fd265148a4fd19ed6f39345ae982687a6ccfadefb2dc96af15737550c46891a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1df097f85a3b46c3624fc2b59b6755ec1dd1bb6843ce84fceca2c40b8af74eda_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fb4965e61b337cbbc13b082ccfc8ba17f7c98e3a9946a2429967203a71ab5ffa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:19233828b527446a7c210823b43ab95d309ed58c124ce07bf2cc70f809a6abc4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:953d7116656841f449d6b295f0753a0d39a2474b3b6a4b6d6240d53e357ff86b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad08029d8e31a6c80b9d25947ea267b78ddc0e7f3a97dc1dbc075dc4a02283ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:e163cc3aff166d01ced5f33c6f5c9145a330cd35a7f82538017338ff9ac43f19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:039ccc1b8843a4dae1d65e616c23066e2e921f5f4693f52a6c6a9e0091ee298f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6c5f2e308f308f3892acb46179df4b6bd460b234a416f4414194005cf915ef5b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ed23039296c3dbd7ddce99ee1a538b7b83e32e827932e3d00b929d0f9de13a91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:efccb4622508c44f67b3693732b8da8bf28bf80097723497289cc3cd3180d19f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:77dfdc4b6e35954e750b90627d720a0f7a3cb6fe224459c09f5de359c589f939_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c4ad92a5a5a030bd90ad8be8df3914f70dad8fa8e2c984144791685c7150132_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:924c6a190d3e2ccf26e3486fe09b892629736bbad223bf608cb02cc4ca2b5991_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f75d1ef206cef5035c7a4e2d0f8e73330eee059919cc4283cf0ae8711a3e7865_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3daca8e471b071e56c8f9551af5d9afd8c2eb1e29cf87e09dc48214cc885e262_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4a3b3272a261a24b3fa681898aa7d0c55e8a8f67f719200e05e580b0606c16e4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:683faf9d19ecd98b5cc92545e3628a1049b13156136f86626896572e7401a356_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e294500f174a12001306f888e6bdf9e10d3d30bf8554bccd5c82f1227de196b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:08d7cbc7bf9e4d19e36b4fd5d27040329982b353032c525179227c3e15d30f32_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:58b18bfb4498e2a7890ee5979598decd1b9692168ee10ece35178e9c2191f430_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5eaf2d7d197bc327adb488bf3514d2ce6886900164bb8a7e3d8c92061baeb783_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9728bac89d23922ef66913d370ccaf943465509f8a068494d517984ff490f707_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6257b90eaa900f50cee0d5cf84c105158f70d9ad4a9829d5208cc261de3ab5e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:7b851c7bfbaaa9227d15850922fc76f76bc517f60be3c984e23d339fc2091eeb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d6142179c8354154a885955351e093aea68de58f0cbae8ec631da2d3d8cba63a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d939f022cd84850c27b617d17d71edd7dcb549908b74ff92d5115dcb5149df28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:530f79ee436e2ba7bf71f7cbc3b62c3be81665f5207555dec663565772158b99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9aad9fae53a218cf8bd83d50b3df6163a9f0ef6fe742a9527d0cc267fc8164a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c43b8d25569a9a26f77e1c1b6be0fff4467a9dbb8117ff562c2e650a2a62aeba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f0b3d8e6b527fee7bb63906136288b117ae31a38ad93aef266b7e0d84dff4f5a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26fc6ee878e8b9b76a61d203bfd0e01a61175ae9d6e350b4c8a01afc8e388080_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:93b66467306d137b06f29b307a72f45eb3a9149a15cdce0bbefd93a9034de3a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ada0c79488c2d4b388d12f9e4238054ec9e038bde604659fc70b1c368ad36964_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eaf2dff09f9cdbb55d3486888f5e18db19f535767aca754ea0ead9129bc6ca0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4a738c52c3e5bcf3c1d94b679aaea8e91b3cb3a3f981be534d8ee1274d8455c1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66d6f7a10465049938e81ddc1e4c13b2b375b2c92b39af99b2c7fb8bfe2d5e3c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:75e8df980f8d21fae7af1185852e235db098190d2e3098c7cc9086236a60eeba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e819fb1752cc974f7ec462dd49c52f9575c7b0db53f8cda50121ce1a391ef0a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5c0a5ac804bc8bc5f5e368bab64945e8e6b506358e4511387869f9bf458ba3f3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:9f541ec9efd0d0553a8648c8048c7b91854c3d8419e07c909e621d2ff5276c60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:cc987d4c88966417b6c45bc66dd878cd885b4805c9e2885fcbaca1734e7bbcb3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e88d308e0ea7524be29e017096eb77ca6df3c8b3ea58a8a6a16dd7fc2fd5949c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:231178be9e1d4d547dc7705f82f8e529672f47786de781ca53424543d9b1e073_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3dc25f71c79a131cdb79f72e3c6bd2a3c987728e52d3261c5935f15b1466150f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b05e21c1862a49132611c23c1c0b589c5ee29b98ef5711244a7c32438f55f7fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f1a5782a8202fa153b78b53324954109911991dffa9d7997229da1c6ceff7d45_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:17bcf0374c1cdded8c518835d832bac6b8ca75e05efeb0a6528e0ee49643bb35_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2873f8aca5b0ead479497c023010d6cf324fa893522eaa924f10695a63c1045d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ce52fcb8c19848e8fc81e8cfca9c47e1a257339eb96e6a5e4d214066dad9afe6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1f93b71bd8b9bd62776c67cd5c41b93f94b4b60b58a06625e7d57548518f3669_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5599c06a31ac2bdd1a8f190f5095a1614788b2aedab9fc4f454cdbdcff9bca9f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e79429feca8812a6d1bb6316906b670ccbb89c506d0f47a0ec8568cd9975a479_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32526be8ad65ea6e3f70126e66ec2494364930f90aeaae32f1ea3611ac7e167e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:9575d057a034bdd890854a08559cc08013ac76dd0aaf2ef11e26a5734be590e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d6f6a6f074d7794ed9d7015ea7937582f0ad1d07b35d983dfc07236fa3323bde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:7246b6b2f38d276340ab7d46baf8e67166639d6bcdb75aa901ddc09999fedd92_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:87a0e8e9d89cbb753a2507abcb8b0b1b3258a7a88f5d632f174e6097789cc7c6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:96069c3067b68f1e2942d7758c89426eefd21722db2d0b08ff5f1db39f2b12aa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c2401f994e1783a28eab6f7289a25a6dfb9e6edbf6b424dd0ee9320469cc3a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3eaeaa507833c96c48161f8fc13d4ade13b4ad85f397a41574326e7ef81239a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e84c44ad88440bde18b3f65817a1ffd69ce15d48f8772dd82f5984d68c73928_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6914c074989cf18597497721c5b4006874a7e9a12fff27c513f8e6ab049be83c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4b2274d948f48f8cc0df96f3bccd2d610034ac4495c977bdda82c440b65092c6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:72ba74f4ad3c5c803af1c9388ed1c7186295b74429f7466304339f22deecd40f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d47a6d11b74143b03ababf249a83e8ca576752a2ad58482a2dda2986d79e7098_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d71b697e5c67952876677ad7d89394139d322dd6320943c1bc32fef9c501c326_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:3cf00020f76f7dd6428f49aee9060f70f2d5d73a7579cf8400ba22f8a3c16364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8a9fc2fc1351bcf4a939eb506e5ac91788d65c5f1826c46d3b41e15e8ac7b3ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e16e35579e3696474f357bcd4bb3c77bdfdb1603b971c3267d08f8fd119da62a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f3623315e94aa6a0748d390674e9f2f8632bcadc5b8ccccd75bc45019cb5a9ce_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:bd3081cfa4a3a02061a6908b469dd9a0b987b5fd1dc73aa67bb2dc05ccd2c5d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c84b8c416b3b543d4406aa42eefdc1c02c12f2bdb1b7d56a3e5c0d9c549dec44_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ef6ee4f9fb6e0ebeca08a2a2dfd69cc6b5baeb5bdee0b3158f575b14398f3ad4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ffb6610a0f2627dfd68731bde61d78df97e4ef5ba769dbfb9fe723dfff0a62cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:9329715c3820b10b14bd23f2f3e89ea1172886a3c61333d8b099019701f80619_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:cb9ffb3b3c64cc43b15f52a40235df199172800aa837ee2fa136c785312126a7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:834b63c9cd783e684ce59e99d4b060af5f2d6b6027bc62793e511bd5ae91afc6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c362a8609bd2a9b6ca073545e2ffc732949b1791929dacd899faea3c4176e984_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f050a78d1622d2a10a4549fa7d2340eacdfc80e4c1a628078a4a13006df99e35_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f32061109e6d1b72145ead1598d0a2065ccecb2ae424e743dd613b03992ba030_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0650df0f1f51958baf5fecd36385b4ad6afdccfc77ff0bdb90fb140a7e6a72af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4c95f82bafd9f1a3207635da63f752252d94cf5d13405748bf9f1dc6d4e5f9bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:70ec142f9336133ffb3e4caebd30e579d59bcc3d52a3fd4c4642884103cd5134_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:11a23b0b5190d560d8a7e45c7ac015f71c18fac0f1672f2db84c55ec7d55f9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e04e8d139638d3b8444961f636909cbf640ab494b88a738cebb3c6a7805e19e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:503da2bcb8b582dd98c685b81bd031aafd71e1bbfc8962b3c8b0ea9110e9f69c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:e1e3d49db220a1e3f4f540ec89e06b8a4bb7dc72cefa4b96cb278001154cb21c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:12908e94266b5a90846f50b7fe8688d66c359fb3fc3e9c317450ddb65b455076_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:587f806a8e6500d4dcced927409c0b582a658fee0f51c31c79736f8c31c3dea7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8c53297adf899ca1152c61b10149db660a9146fe067476c82114287f564ac191_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e530b7dae37afa62a6c9def8c54b573975018b94b5a56fc88e218792b85237e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4cb9d96442ea8b54307369d340a8cca987471b191b21c9463027c9bddd754074_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:791d876a5d256f592916c167dc0919fd16e1251317356838146a5fde8fd8a6e1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a9a8d43364851f839ae1bc62a807a983421cf5b41a7488f8da7e68b7261af056_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e1571e62821f55bcfb611afb286ff61773a16ac15a67da5bf210b5d141a6b3ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:21e4959e7a52ffdfd8df79a73177f02714f8689270c9a4aab4f390be59524042_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:51a465dd014fe567fc52613a127c932e386d2a6e5f1faf4fe1cbb1e6becf7e4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:64f077c897c6ee0c9db36c7cc4f9913d1ed66afb822975974c40d98fc21bead0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ed3e46a857f509e0c8a08c750cea6e1de65bb6a1f86933165b36ca5e45171377_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4b47b7c763f063e8afe3014f0f902d55ec6d1fbe832c2fc2f0585121f68c618b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:affe71c5753db62c3117e7d4d8d3a79f3e076b740fe8895b5337211ac6809eb3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:664fcca5d05f7993a6ca81942ea48894df00d46728bae7580f534891e47fa72c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b37fe0e3a3212b0e82bb27cdf4b84f4423e4886d2a3fff5ffe46be761e98aec8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a2a838ee2839658272f41aba9d5e1b41fbb05039c1aee8a63eff7d14d7a1f0fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ffbee6c294475f3dbe6b73884fcb411b1e5303f9b549b7adfd24708b776eb306_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:43fd6e0b0d869a25c61ac074076a78a7f8f389a0c5247af03e7ce51392e90108_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:9f05231471d861b8e8a788a6f448aeeee16693fceea9521fd87e4f6a6b6d6c9d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:049dbb920b57cff7ffb88073192c4c843fef754775862e4d57d2373637e45c85_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3b801c6c05a17b0b1c763f0a87d4908ba4980ad09aa8f12dce6f3e11b8ca637b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5afc27dc982aa722303ec6aa2b10cf727f2d1b409a5a77e0f599569559275b76_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6354ab3fa4a9e9cfa2c51da14109a1a67e98a3b43c346203ba40036ef5c3665a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:22f52c4591a8ccddda25dc4a1eebcc92010f49832ffc28cf935b0873021b2f96_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ab74018d4cba5a5f1ed65e9de515209321ff6be359ae0958f2a1b73d799805b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:65b2efd1ededf1a89f9e6a3e12ee8c7085a1282b2520b2906cab1d80520c00d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:98d6f4f8d76d6dc810ca3d927fcf93740efe1a56fa6100c1ed1e80b84d1be21f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b07ab0a485d53b9ed37a1a1b244c94a70630972020176fa7206d5c9dc40d9962_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b4501412341595aa8eefec6973195073fbf3d961cd813e21e02f3cc14150e223_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c03291d932607165444321fb2fa980104e60ac414920c1c05c499a898b2afedb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e1caaa1ddc51954943c6b44448ef50d7113fcd1f8aae4a84fcb24749de315e60_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1268948f6dae5346a6a8052db8644297c1b98e1732d64b24073d959de18aa22d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:458cf14369629b17e735598d3e6c24eed47bdd8bfe054034b5a60f4f40b6ec4e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6d51ed70ff145e62ae5d22d42b7cdb071e06053d2d456bc5411da7265c29c96d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c11d63f511b868c53303849b22d71273e844679808aaf604c87b373491a99db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:043460ad9ec9a4b05671ebfac16b6b2eeb39e3ebe5f43e3867f3767b7b2f993d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:62420bf7fc2b91f60b32851f2c099ac5fda8083e6274d2a5523ccd0ece3b6a80_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:77301f40eca2b49f92f3c89a93fc6766306d39013350d635f0bfeff4b98ae012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:b86db4181d9fe036b77d0473dda243523003c19d0fa5888a54f3f19c104a7e52_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6bb49580fa2f15130fd93f51e34f31f963a4c9b8b9cd898ed573ba88ea24a60d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6caecd5a01bd49eff8acad2449074c505d07e521208af296b0cd9f0822f54911_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ca38c682197a97a075635209b6091a60ff412df3461950a24d1d881f830fb3d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dd9a440a68817b45e6d2d04b3c31feddb82304ac1d246c20c0e33355631d9624_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a251f2b5d7f716fecb5119acdbbfdbb9b535f2c6d8fd51ee0c57cef72cfa1964_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b0188af5f7dcf5f286e4ec4f331062ec77f341391c612aac52e017df26f89a89_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b3f13d71ce9dddbce566d9a5bb5783d3e5417b8fa3cae427f7f74997e4a8c8ed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d6384ac004f36838bc5b35ff63c4d1edcb3223c0a3907d4f099c5d85ab51b014_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:db20ce7a947978ea2646d479eab935796e8cfe482ddce01f3675066b221e2e3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:eaa77c0a842cf32f826c2ca19abbe4020997810c35e079c0c88a0a9361323893_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:59988d13b37880c4b79bf8622161c6e975136bdbfb59c8fe73ee8e39bc0f7fe2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:f6dd660a76715b8eef53fa459376986a60d9f2e7cd3f176b0ec5c6e8ce19cfea_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:05fb046ec30c464d04a70831316de4af2c29a226be1e7f73036c90899e6bd193_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1da080de78222a6c01704597983765a751b1b4544a81168fdbc952ab31f11a54_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:45c9e9816f3b14886661b4c82dd75f87e242f4ad3e0c1c5f264d1a1839e8cff3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2ab57f0587e4ff1adee3ac4ca2c3383955448c0b26849eb24c77aa3f4cb5e959_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:66b581d789ec455fc8bd8e01e980c7fb183bb0f6ccc09ff525ffdfa4aafd9a52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:721aa2904e0c2d5c4d0e3134fb695b6613e74809e0faf3faa949c93b68ed168f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a84aa018bfe05a74226938ca4e34b58dde33019aa093e01a7a60a8d6a4c913ca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1a255a287f3100cade2efe8d8b75ca7f031b9606f6d8ea31581a59e0ca38fde1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3778fc40b92ab82012aacfa7589247e6ff79edb9aa918caf6ba6c5fa3159ae61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:60433084081071dbf7cd337a3769f60ab109201e2ac323be2471c62178d87703_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96b873289284cbff34ea1c9f852dce31e5a72669f204d742288e266cc3a19d21_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0e2cca7da188aebd3f4445715b88a3f4727456cdfee2147e7521059722162fa2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:23043c95c32122eaef725c3e2f65ea824e4f83242614d2609e9367cd6707e454_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:68a9dd5597bb207e899a4716a7642cc28260e059ead26fc84d1e48d4e6159683_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c1a6b704c85cfb829b9a3421cbde16b5011d2c506143322e8f2563d6a5191fe2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1f6f4d1a8a3c89486253cd025f8d0e5aa34c0ef221487aed5e4e968e8d810285_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9955ec574da8c2821d783edbf833af9c4b4d4a2abcffd603b85d706333c68111_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dfcef3e2b6dfabf0abd72dd9743c91ca4c5c4bbe5bfe7488c2a85c2cbf467661_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ec5717ba7c764e22cf72a5792423078ccb9c3a3bb06b92a33eb6014f03f82fef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:371a5fe6ba1f62960a89e6b1050a2d324c2c91b733704fed2fb0356ff2cd9524_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5eb44886f42c57f0e736d6259b55ba561beb6324ca58537e253581f6570b22cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:854407987817269c3069c1d1e4ebd7441465f971e28d391eddd456371162b449_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e7184c5af00f0dc4551f17ef5539952c25c37aa32d596514e463464c92ad146c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:039a4cc5025db0cacd9e5dec922d9cd51194cf0ce903904210000245c5e7c048_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6ccfe8e12098c660310fa2af574a71b7b27b23050f6b6c524e9c1787c7127110_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a5f3adb97a88b5910f2b5375e05fe3411652541687262714d50105f05ca31c34_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:de16bed38709aacd8a1c25b3e68a995631d38c12d9d28924360fffcc17adb0cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4cc2ec3ed32c991240703b0a40c6602db1320fdbd328e887b517a11474149030_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52e3ca4eb01859dcd5c4346d73339889f494576b19577fee88cb1800c84f8fc1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:949a7355b5e946e1d5c760e14244073db9df660fd8b28a3c6d06420dddccc298_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aca1f2e8b0aeb6eae4a77bf712b8c255dd50526c76e843f9960871cbd4abb6f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c075a7526723ebf1b921ceb895e63a6d5f3df60707afd79c4fcf1c9bb6f33e3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a952d0aa30010721e7a2cb903e30260a02f4a9dd9d83eb7ff02d2847f1e76e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7a7b182e9ec23abab1daeee26897eecb99e1785569a62888db4b54d6e897568e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9025051729370f663bc9231aa612b0bb51b35bc6da68f8b504dcc01c760a1fee_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0232982c7a3431d641fde0e3b3b8921f855cb872d470e5b9f69edc9b573c2714_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1e05df129e355b9a76f8bbb8aa65e9b4263fb9e888639fd2fb61f79d6d212c04_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:89451c63f28e8e515b4529c8a834f6e8e558179ed3d4f973df539a509933f942_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ace5b486176727834f9e1ca6ce46b4d0ab0bc6ddf651f4142626b543a02c61d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:007e6fe2b8d7a384cfe07309e8a523bd1b7d3cea896f3b7f29908a8d41c62f16_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3fbc6e29fc388b15dc77aa93d2623ba9a23db114399f3b07da429707a03eb8fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:42f1e088777be6853d6845aa25cee3f46df776aba71ed1209285ea853dcafb95_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:73f6897c667e3fa46703b50ec857958738442bb7d8b95fae051f761f42a01605_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:3f69c1b708c411bfdd1a2f5387e6084f2fa28e1c4bfcfe136db5b66377918bf9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:46ba8317ce0d48d6d0e8902fa4b6deea668d6f3c9c6c15c2a3aa6238cc06e52b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5e919ab71bf57a160c89b6e5964525a708a10c7cfdd87aaf911e57e6353daf23_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c706a7354b0006b9e9c7c351954f179d6c50cc2b872833bbb59214ae7148ae3e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7439625194105ec8e55d4f7b3acd13a5f2ca70da75f9c82cad5f5693b604bf28_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ffcf4fc9bf77edd7944824b25136db6027d21faef80bef9d7b126b9fb6c0574_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8540ec8af82488dd6edb249e811036b1e639a74f892af1ffac1ab5d59ceb0abf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9b497b933ce2f828025dcf4390c7d53debb2418394317da9a8c52ba82a6f2fc0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:37fa7e2453893831aa0ea8bfe068e692ca4f1ffd6f69afca37a6a4e7ad401c49_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:63db7c4a436ffd18fb03a7cda09cd47844691a8025f2ab04492ff405a85ed144_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9a30469bc5882ab2711af24dc3b3cbcbd0532f49bfa9dead772070c5fd1280e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ef2e5a237cc5d69647af1b904a902e4e216ae8480a54587357fb135b738db120_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6be6d5b27b6e178e0806938850699d1e760c4d456ae517a658b47cf5a1401a2e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9389ab668e31d432d3b2d44fe11f68df7f9d926179d0fbec8a6d1b30f489857e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ab20bef5ffe91fc06a7dad3508294cfb9a72745da8cc0342e59f515db447e264_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c5c16e51700e2c16c6fd496225946c033875f4fa4c0174ea625958bd62a7ac51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:37c574ecbe02ca7bc99355b6bbd952c392cbb2abb430db4b752257306c37bcbb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:db6cfccfb142d8f7addac06e4aec0d6686361bc15b459d169b0df831b1d00160_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e813ed4ae0135da60fc1e7e572f6a46495e03764c96ec3c095a4e61a8bdd338_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2766e79b9a9a3fae66e1d331ad2fcc2141a4108e816cb1f91557bcf2e045882c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bfcf47037dce9565700224c63e19aa2ca8935d72e355c08cc8754cbb84b41d00_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d4588b2594a2fcb58e676ea0e8d11372e0bea9deb53824b47a4d8f3c63e774bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2bb5a02fa2032146aed8fcae80961e9a6e37e1c8a13a368ea07d6b124f303519_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5998439ba17cc0cdbe1bf48e888862182d6e10400fd9df74dfab53d161f0582a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7e0233017e706ead44793f1fff610a4625a22a834de67511cd66efb208a24a47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:97bdb1cc0033381c61bc1c9abeb5f3ecaac1adc70e91b203fbcbfca9a9ae6c39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f4605b13a1cd445835bfa2bf8d2f094533e4b731ede1d00e6e15a83ca924bea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:20955243143106da7d9e730ece6e49bc84a18427ddce20cd90fb5ce712e5477e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6c27e11d2ba7f408c9ca5dc0bd898bf395b3f773931b04c558759493e0aece8f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:7f08d881878f5d69360edd1be3e1e5190a66df75a087120abb37b2c0a78b4473_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:755632416caf3e2fa4e8c24958855e78c74b12d5e3f2dcae93152ce06274d428_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:847a5098475d0ab53e351d52148f5a2211dcc8090e03e17dd7b161b7332465d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:93c4ad9c017eba69c7105c1f60cba46f201b39da79f5ded60ce13a98d7608e7d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b559c70d997c0ce2c57e2cc3f1d3160f5ec2367c53c8d1fe1d9418b142c5c577_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2674a13e799262a6ba79ba3e43c2560304a1201374272e8622aa1a5e3df33d66_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6bafd363141b2012cd318a353cfff9c109c6ccc90d227587f2d0e08316309602_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ad9865c56a3ac1997b3aa16166966f73a24b49a1a8c71edec2eeb795016b849c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c2d53d7716676842974f1dda29eba47d03b525614857591426a01b4186ad2edb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2098ea118ff218c9004be57932760642db74b9387d11fd5376593ebb3b2f13c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac90d3f60f0a9de597df5344adc3d6b1478b96d47fad0ea71a00597e8576b12_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:81c29521d2aa0a7d8a0eed047e5948d145c9e4a72fd0697fa9aa613033e7faf9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d9208e402a04781e9dffbab5c989e91804b14b6d8a5f5f29a79cc54f85782e24_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:71602c5c8069030db0fa7373e496c7bc23bba707756f57a082d7eea44f61c9cb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:72d17c4acb7d58df68ccc1ccd8d7334f35df3091d8bd8e25a949e3c7f528de1d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8817af94a399c898fea21c34bdd60dd2c927ba3613436f79aab4906ecfc92cfc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f9d6ccdb270a01e408d70d01d692955ba92282ec5e577fd695f6c51289edce2a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:005773da78ed8522b96f69d9e53c961811e79340b54d49dffdce92c59a0cea2e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:502e2c5f47b1b95e0ce1e3922306ee37c604845d1d1accd92181342b473d3b3e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6c68854cff5a2b94527d6230740551ccc74d1161e7a1bd82d8119065e9e764d3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6ff88655c6a7e78def695735bde806319fe65b5fb68ee0c3ec2a82c6d80a9b00_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:179c818cc5f2021988e1b71e4edaed742e62d398da747cb548896697617254a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a75ee91ea3ee181623a22f9e54b00c5d4b2e6cf3f222a912c8aff5a29dde1376_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:eeffe28791e4306c642f156e83c6035bebdff5d1232174d56ccb09b805f9271c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:fec4f6e102887cd0d47167eecfee667e3161dd21a13383e96ef3b36f8e319076_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:167bea17ac181347213db54ace41bd0191b77ad20a3a355e56c90fefcfef0c1f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:734b7d0af02c1b79781846ffd3c617b27728ae053941b112d544c73e0bf3a3b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a7cc1cc44f13ea307fb79522996cc56264a0e036bd5ab9134b24e4a0f6639843_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ca75fc486998027f4903a313c7bd742711e2b7bd11e55b1e0c557582ca3d1dbd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5d23f5103a7bb7c71ab5b79c2149be46e4ce746f3556508933593a94f15ba945_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b2dcf4c5a2b14b677212eaecf6ec3fbba8bef7e21d51a437449456979b5fb551_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b692ee1154fd6b6a8fae68467ae87ad89c8a528d50599db14f614c7f08831d81_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fe7bd87ddcdf1ec088e780a9e3421286cc0e4aefcccabf17d1c50e4a4656b2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1775e9ce012c333caee47c4df8f9187d85d8b47f6300e3a7ddf6d83af462986e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5403330e0c28b3af4b3fda34ea84b3e6edced89649cd00bf6ff7f8352d2f7708_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7e13f7a4f2a67e74b36e39b5e582b54a8979c270158789c658974993ad351262_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ad1b944c7135118573159adb6eb359face5ab141e8328420eaca3999fabd8575_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22ed10b10973b3a91b30a7269a88013439964eca8e6954fd515442d543bb74af_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:74dfd09f047da2dcdbdaf8b16a3aba913df216cae2f26898c4f9fe423ff6e330_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d7f0f0b52c3c3c7feed13d3ab9d70fdfdb89af06210b90650123b362444a292_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:88732e8c96326c07670db570f1b1549412775fd07a66b0816f227d1d4320a27c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3e0bc6b1b9cfd488a3cf5fd19d5a6d2839d37bd609c08e6a5a7a9da869ab3cbb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7efa402118210c406818a1791109dae10962706df8c04b290561d0c784f8a57d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:8872db8f65a31459cc63eaec8f03d40ff2b21e95871e59e3bff97b6b0bc9b9d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bc298ee8cd84ce0a44f51ba31cefe4052b67cbf9ea559fac77de3ca7a02762fe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:1715daa2ffc4a6ea78b5de1a1ffe556d27e3e9aa1cca1d6ec9e53217f27b7ffc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:32d4fbd0cbd715ed35ef290d459834423dcf6203374a2a480fc5513b3764873f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d22fe92972f9d9303f541977a3d753750554e6675545ad7e511b723c3869c4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a51b74a21651e21c9d8d8538c2cbf9272d09696abe8244cd2b1290777ad452b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2a82548bcb003f718c669be20b0abf13183fccb5d7d4e34a17e9be6ee08dc2cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2bb613f365004e6cca2c81baa7a59ff75a08efff24294779f54a51296a4f1afe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2e010df4822fc8ce8b452dd6d9381d38b1dced3c0e429a9d88e02ac61384c825_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a8ff1c3b2fa1dd0d849d5cd35526a5ef2135bfd6c551ecade04e4744ac595453_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:86e68bbe22d576839fa35f704596b2f643c09e3cd755fae8effe90935f65ab10_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d48fa90ded7d3c77d535abf9eb8f56d32e1567a3c292686a7f76c6ac39b5c6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f781a380867adf7f20c38114cc8d7c751cc84faba5fbcbfc67b721793f017339_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f9d1a4c9d0a5404e8493a84f94fc1715d6226b22b672f0e378157405f5a7204e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0696026a1a59a9227aaac743602e83017e0281e6726d94d46c20c69e61bb6ee3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:18ead28e318b6a165c6988639f9361dfdb3b7936c026f6043b66996e806be30c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:64802d951a8cc8294fa9194e5778fd8ba178cc2dff80234d85234121013ee58b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e6adba899b629ba8eea41574e66d8ed2eaac9169aae5fcb789aff787f0724b73_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:06d3718842b1f074dd7b6477dd8e738e91ad243e06e466cd9cf8b08d7b7fa024_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:220e8b87b16dc9219b324fe7b97208869a17d1039e620bc91cdb5aec19d4a0c2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d85785005a4cf5e4bc26adabdddffe345fa8827a0db2240d01cf64a49747675_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fb190187adc311919da380eef951373ed4f907a07606af0797e96cd7d253f20b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1d5caff7082d26409e72c3d18b018f01178321f3922a0868af8058f839261d3b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a0968a8bb5df2b0b41bf55b06f11397a4d0c0ec290d22bde93fcf631923091a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5882d9e24bf330ab1bd022877c1f3b711a41b329c46c64652105a1b0a1c24cbe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:a7f9b163518a7508adb281ab052ca9e1c233c9ee5efe37efad238eb0febad187_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:059a0c17ca865b86ef3b3c19cf641d3dd43b007de861583f5c160083dc52a012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7fd099e945dc79ff47d6aef25ab62b66920ae6e7338ef2da01ec5865970bb62b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:2461d40854f69f775c2643a67eb8676729f4fde44b8ad6f106b86b8a66342f67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:c69c4ec8cd052eeca122726323294481522580372cc3c948fbeace53beb74765_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:05f0aaebb8307b693452309341fef6e3bfe6912a34c1a9d7ced1be398d81351f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:0a46ca252418f181a86af41b48cbabda464d51f9d9f44792efea11e54ed2167d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8e9b9f7048b849a45ea2edbfcdbc1601d8a11cb4260d5c1d89d85b5ed462e7ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:cc9d2ebecaf2c78d99104d0a3ff23cf7748e42f13d00215783cac971193b1f69_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:25e957fc0f6723e791625c55d1b251f6b7a894e15d74e7af29e004add4e3a6bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:42a64c335c5af6c607f435c9a09411e789ba8b66d4df1201d532f27df5b9dc04_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7c98311b8e0f89f03a4250cbcc60ff62ffe65c4ee1bd8c34c31b623442f348e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:abdd622e2447490b74f285cf653b9f6900b904aa6750b34bf9a39f09dc6337de_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6a3350010ffc87ac68f2c8eff3ccd707bef4d9295be9aa7d5633e83b3fdcec1d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9ce9629c6a48384d0dd7d325fd61cf62b8c290db57b2917a8ed671f7e3d4fa9d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a71526c9cd2f4c5f9a397348f1ebc08590caad252cf3bce6e5d07ee6c77274c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9cce3c5b53509924dd37d4d3a250925226372f26b45bb52a9dcb46526b1f3d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:137c1f39ca66f98cd37c8a9deb3279d0acd18c24d70a88b6e8d9033a1926fc0a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a38f0412ab643c849826b9600b42aa8975f4d77546ed3b36e92e7b2dce237e4a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:de2eb4f5453b3a0463c333a1770034a9016eadddbe8a07c2666c3d58367ce3f9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e463a6ace53d6f8eeb652db6a69ecda86245cf3a87cf10ec7735738375d17c9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:348c8fad1c84cc45b10e7add9d5bb5c37057b699d6466e18c3bec3d593e1adde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:37bcb5a159c17e1241a4e5add6d5276512ce99418b2f779c1e2a976a099de7a3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5653e3a360eb8e725d483a152ef0510d5e1f7142666cc5c6e27f62965f6cd08c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:57ea23e19a26640f9e8bebcef70419d22c23ff334878e89d4b77a894acc2ce7b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0d0633b8cb1de498ee1441b5e28b4ac6aba808f6ad37d3c2bac9f01c94ff33ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:702219e963a769b7dbe97a0f9ea6a20dfd1415097dd6f38cf31cea657b1e4936_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:aa9dc51ef8366806a19116f700448b4c0ea9dc1de7fc9f2b8191872de744e591_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:dc192484377ead9c1805632aa8a8252186c4f5f0649bc30ce521b67f521c66a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:02a58199e4b61c2d8854772359ea02b3abe946e3e67d1cea7ff753c49b0ad3e7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:35e90ec749853c76f098be940be10e29e25401c6a1064a27843f09cac052378f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5fdb8a778fc61b0900436f22aacadd59f7da453af25b9b2eb9c22aca76bc9b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4554e982ba99a234ce6c3717e3447b817fc1c35a384e8fae9766dbb4f22b868_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:3d5ff34a3f9281202e3c0c9593b481d9b16a8321020caca71fa4e3b4d6527579_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:423f3c92919536202042249d0e3911b30e777ad4616ae8f6ca9968c87e14c33d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bcc604910483ac005899662bc05a597cbc8af51dd0c1dbaa05d521b95cc2ee94_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d76ee581c268ee313f9815c181bbbaa91f976c2da68a7a5dfd304e62f4e4a003_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:213608462f3f06ee113095a0b0be07ab8b1e8c194824a11f56c67392729e906d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5f1fd024087262006ea5a3a03b1eaae1590be13fede1f318987921df0c2c3800_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a5d235485bcf72b816bafa06ed24b596b2b72f543e17e845ac8b79dc16f88a86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ac8a2e047872045fba2fc0ea483a700de6c6398ae2cd184bfbdb021969d6eb6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:58dc4f0cae516c3613bcb01833e42399b2db12bf7f82c68701baace24fc77b12_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5c793d527449dfb1b10921bc56e8a31ad3d0f8e05dfd19a1782a67025b89879d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5ce2fa8d80f65f80b35fdce9568eb02d1a30252222f8593f60d3d2ab85ca9a7d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ec31e82b039af04deb6b8f9c13810a61281a3cedd616aaeb03315bd3abdb2d6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14d78d97d80007bbfb90b2db94a3d0aab2c5f73e1785fb27ce570cfc5e31c964_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5ed57df32a4594d7acd4e4411b009c6bcfc54b2e90a337f809b8a6a53e858480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:69275336a4bb1cd9093233541e6f1e29ccecbb8096673ad0b1880d81ae454ef0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b889a52cecf44d33e496bb09da6073217d856dfbe6fe78149669ec2af3dd4f63_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:39348b1628d4c75591d22648681ae23c441338241b48d2ed748df691a56dcd36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6964ff070c67d6f71068014ba253466e6ede36b043cd0f8e3908a32d91953f87_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a274ec689248b4fe3431501c0045736e3b24df4afafcf86ea6d0704e22586c27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ad6f9a3b78b0e98bab747ece64657e69f301337f4966e3f40d3fe0588d1a530b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c28651ad376814116ca3592e5df4853dc0cb04402d825a2d12812ea6df06a4b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6fa533909fe009e146d0522a95259e7f80399cea0ced183c308e146bc51fd9bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:30c988074c30420793cecbd4d3912868197661b61f00d01bb8fb86f4aae2aeab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3dd6b992e2620c2d08de3ac99c687a9b1562d1a46bc9159a14e34abae9d40f36_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1200e38684ea24ad9e98352ad84e3c3791be192f08f22c77197987e548c02939_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2fa632f63034c5e2ba411ecd6a6655da1f1b5cd65e05dd1c2063893c77fdfb9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6f9a533d4e52e87336542eaeea992cd22d2979888f7c96d1537fe89a7a186a8c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:784e009ef59f00cf7e127d811f2cbb30f8c4b5c489c9d51985c8385400ce97fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:3576099906e843ef0a4639ab2563ea90c9c875d6be59b1bb687f59cdcff0acb3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6d0bedcf0cfc56da79f55effbb2315fa7da2a126347bf0fa3b21fe96b9c3f037_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7aab0df04151b6970f04174e2b257a77615be9eb724121ff29b59347f8edc8b7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b9a4f7fc7ef59029d19640802db410d32d52a35bf7c8a5ad229ce1e0b559614b_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2439070"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in ajv. When the $data option is enabled, the value of the pattern keyword is passed directly to the JavaScript RegExp() constructor without sufficient validation. An attacker able to supply a malicious regular expression pattern can trigger a ReDoS (Regular Expression Denial of Service), causing the application to become unresponsive and resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "ajv: ReDoS via $data reference",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, the $data option must be enabled and the attacker needs to be able to send a payload with a specially crafted regular expression to the application processing the input. A 31-character payload causes approximately 44 seconds of execution, with each additional character doubling the execution time. Therefore, even a small payload can cause an application to become unresponsive and eventually result in a denial of service. Due to this reason, this flaw has been rated with an important severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013f0b271dc70347bae313209781261c76127a19b3a2f8bd074d170a84e49047_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:19c6031d8609f10b2b075201c0ccbe6f26e6efd03f567b485b6b327a4f6a7fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:304cad693bfac84415c3f6311edf8234f412a4bec7635178c963e2f3fda74d44_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ee8bb516566d6a9dafaa65ae52177421adece839dd4db80426d3d2ba30a1ec10_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3198e3a7911d65997d84ae2c4a4756213bd6169408f8e5b4d4fcfc1312ec221f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:75b581b7faaa791148cfc9a5e5b4c87faf3a809d2baa0fbcec38bac757007b49_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:af1751213d6286401c0e1d177bb2952715b50a255dd0072452cfcd1a239c9be9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fdc295c04d946e1294cbc811e5ee20827cce284c7a5358c9c6c926f5afb5fc7b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1fbf0bae66e3d3feafd7a5d800ffdc203ad1171d41da344c7bc899fa9df0c439_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a83b03a6cc820386376a5e0b5ac0bc43147338cd0f77ba6b20284b93cde06b63_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ab5dc4b258e7a47d4a05f2f4975324ecdb53481bf591d41dad10543be93ac59c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f6fa7b17816eb0b9d73c00dbf4715a26458d784e65858ebba255b032a5a2b3f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:565239690ed2974560e390d87055eb74f793a4d2abe8dcfcf0d40c4b1d3e4334_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5769b6120ec44707f7b98ec0ba5e90dc8dee0cf14a2795a0785435cb01711fa1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9640a22ea7f43b46c281d8271b89480a9df2b5c9ef500b3b9600c5373ebdade6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9e682bfd352c260c9127e3f2affa6dd16af28b3abb8ee7303753eb0ade31c1e8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a84a096bab105b8e51bdc5f2d93c011a8a6a32e0ccf5b3a5ee2cbb2abeeb2aa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ef77e97f9b16035db985cc79029fc5c3bcd6004ecaee9fec9c05e354ac1e599_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5f3011e69a519014b7801d2acf0897f95635dbe17492a09216673ebd4a1c791b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:eaa84214ab82626dee31c0f652f6d4d980065a920932eb8e69f2e078c8fc16b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2684c0efc9838adc240b08c8b263d829bec71acd381dcb4147d8c45eb1d08d08_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:31b01092a5183808a2a97430743d04941f034388254cc7007e74c4ce3083df25_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5699e966b38060569e298ccd084fe89bd719302ca70e2ceeb4bb9b6ca5be8991_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d052315ad81d7689a02be445c9a1df8d296fc3c32a33e3975dcc4297fffa2bfa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:4b16fcfd326efb0618351bc9ddb2c3206b18e189c188e5c9fcf27f3ca8f3afa7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:511bd02437b2ab8480a54dfe2ed3e8c11c3d9d2b332212cb455c8540678665da_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6d971be6c49127312d1568f9619c9f4684254c64b77a047f6e24e1caa83e9416_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7df6d4e5830f60779a607ad0ce8716034f168d5d9c6b563bf098dbdf3b2fae05_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:274d4e7ca8dc6003a3d18d931e63a4a0b4d5f80582351fadccef4195de8b847a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:2bd57947814981b16996f8d12e40d5a5670dad3eae9fffbd57e700c39c1b1155_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7339fa5d4a95cd617046d6dc06a2e97b78c2448353f2ee464095e787a3a2fcca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cd93cbcc8568e8bc3965cfdf4c989a91782a08c38c6affb64a0a3121fabb7075_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:04e57127605538ba40496972299b81737cc2e5197a2ec97fba0b34d74fc9ab5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4c9055e26a32fd7f824d0e0c5dc605c6e59ee22369812ab8331f7572e5154ac5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e8d4c571e3c88206979f8e3c28aaec2fb961b028df0d499ea236c494c0c4096_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ffef56a2b3d651b521f8cfd8024babe6fdd9e8987df4b37fd3d1945d1dff1a64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1dbb201ad9ba579d5fec8a6cd23834d0c1ad9c4d44927b1c90ae448458ecccfe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:2057e81c225d137b781788c9df16ecc5bab9a103a029a47196b9e2c53d4171bb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d66f70ef41f4cb5cabd1e1c36cf32923cd0f228687925ef8c1b08348dff12ea7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e61c5aaa06056181b140e49b24b25835c806df7a51efd7597d3d29c8504dfe3e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2dade7bac074ae0b6d6b8a47004a3c534c6b1a484a822c45001f5d4083742aa2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:40132843fd968f729205f908824489fd67b9b0e5bfba1717840f661147af6adc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53c8d86e293208c966c8e7e4fd3435c9d8806e97ebb31c3e963f26456fc38600_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a310f85c49c19cd35070957d0621694e30215432b5d01e035ed3e8242f82c283_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:29247ef394a58b75aabdd5cc168e578fc2347c8e0c1d779b7b355848a97df2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:795a0b596a024d3793c0d211f8e2acf771ae79d4c5d47decef1facba2d5a318b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b5277a1b6205eb2ef3c75d691272da6f070b2d10fb1f27558f9241941471cc8d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:d2acb9e2a03e0c2873f562605b1e9c9d32215d1d9d265ce18bd262c7c4263f20_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:874eab1c9150b030a11a0742589008c00cd6f8af8fe188ffbbe28ee6b90f7bf6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:9ee41a2f3a833a077416d0bdd181d767145830fde45cc6fa5c31196ef749b1e4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a2dfbd0198e34753e82c002abf31d92585dff3b8093d77fd38d8369cb4c44ba9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b4f9122a9571ebe6e0da7465f498ae3e74cf7c77dd6062a675105f4c437e29df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:054e6260810a05bbcb889e80cf6a4f3668409bcfaf6302148c1230b443fcd8a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3d0ceefebed5e66f56692e62fde1a1b435cfaf596932058d0f2768d7141b6bc9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:499f3d65ea6972937bfed0d482a782ebbf807c4c0cc369e81d53dfa72c591657_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c08cf8ce6baf72aee6019b7318106e3a02e635f4b385a71a2e58387e706a2cbe_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:97af951210f4ac7395effe942732418e9999e7b8e54c9db5317eadee25491b3d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a80d32903c82085a1904b088453a13c88202d53c26626a0ad3663c784f36230e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a913a01a437d7a6d0ec6cd6eddccf25f064e161b07ed3f9fb0510b485130df08_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbe31a367bd21946e4dc641324c5091a85bf3ae3befb4f40bdd59b00c23bd67f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0d7dd7c2f034bca5dcb69cbf5d8e1989e10076fb4187e9c144201b2afec28a2c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:11286a96806113bfbc34db1b1e230fb678f11135da1809bf7162cee01bfcd267_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6fc448b6852cb86de3661f170f364c99940a004d1f85f9e0d546f24aba812fad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:82b0dd3db731b7a84ac6b7ff11c2407ab0020e30ef04cea06b25a007be5cae31_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1aac0c8d30f9ceb91a9ef3cd76fe90c338568b6408656687fe168a8c9a48d628_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7062eb071701245aabc8f0839c966e7b4b5fb1673a0f5713b44d82cd726f3ef9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:79de159f6b1033732145619c507f29b09fa50f2709fffaa5a10f6554c6818651_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c56ca8e906e3b544e0dbdeca92c33ad8a7b0a846378e3b6c9ecb050bf60f2d7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:11c374a767b0cdcb1eee64e69900ca970dbd67f814a76ce9648f578862db2dfd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:1ae113ba4a4f5c2e2d9a2abf69d37ea047da7e879486ddf25303ab709648bc79_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:64ba60275b58312a1a2472ddc46894c40e746014eef5ea4379f71c0b6d7c96a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a0a1e7e812c0f1280e24cf4feff8dabaf299f110a8e8e695dd2e3dfb98c1c698_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29de1fa9e82a64eb363bfa664dfac943e9531a5cc46ca5c2e2c41b93d8b7fee2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:2eee252e29fc035c3d8b5b91ea2e08a63d96b9f11c6d29961cb738cf1ca73d19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bc0fd93c51986738cb1f49fa4a31f066ea2ccccfd45c36a2ae7066244cf1e351_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:ce46c15516097e435174ffdd74a4a89f1c9d44b256f0ab5ea84b846ca2f339d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bbb9f7761a83c0face258f4c056fc8276f1e84e37e533ceee3cd1ac11367ed1d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:d23edb6ed5bae7f0f2be4e09cc70e031579e06bb2d42cb1c507727c319deb38e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ed2a405c06a57740f0f44a8c3cd9b7e3aedd0bfa372d85e06852082f4ce87ae0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f360847ce5b67a5ca834ace7da710150d47786dc10eea85494e467cd4d6ef908_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1d3073d76a6486e752c91e90ff6030c0c0993e9b09ca8f9efa44e5decfd52d97_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4c49749a0ead346171f842c37c832cb6c2457f6812fb487728d561aa85d262e9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f1f47f29cbc61ddc25a846d4c7d9caa18b91cfcf0e089989883a28ad86b1f2b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fc01321fe5597aa44e732fdb7e99670d525a47dc7a0e0a37546f4b28fd697b60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3b5506219e72fab36ad67c982bd7f9bd2d462070214a71b4fd115ced29aab710_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:465009fe0147ff5370183ee02173f430d0b9cfae5d579aec78bedbd3cb9d5dad_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:607051d5881ef1f78d6a62e3ebdeb761f83988788f7898d869482c22773dbe9b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f12bc532130dc5fa8c8392d3885bde80ca93ba9700844bf9fe54f4878ac53f46_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:33e52f2ae99d85b6fc05d53efb17d0a72540a782a33fa91e766fe2e47a878a9a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6d03501991d6fc5efd43a6c73cb0e3c8630db1f690bf07253c7e7d17a3de07c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:97598836bf560759a9ff39d9675e5c7f18a03e14500982e442ea93514cbf3677_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f24128b82f5c31b4eaf4f7198e4b8c0c702588f0568221b07df121175066372b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:671d23e3d686856a4d47efc6c410ace8deffff06134c979c042fde8e9de487a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9b9e3e354b0218bc54258ca7a8f7117cfe164c2311965769847e83e7f6c15d78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d59d91a2af93c1c7b2dd66e5cb98cd8ccc29c3c64b2cf016dea1d2828a6e06a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ff08f965b67efb7ff451665a77a7bc0f247cde4ca9038d5558393686bc037c39_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5e4971e899f775e21b6e1a91f00f633c9467d31bdbf4b71038be98520600a625_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ae63547bd2f56fb1f1efe75e17413e43cf503fc7089dff3fecb68d2fc50bef97_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:80154aeefda9559b46845fb40f50aa723f75f29485cfb4846995d08b0c0bceb6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:fe5558e0b36855d11e4a57511f878702f87a3d907f79bcca226e99a0c8052628_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0ee0d97e5b746a6df7d95ee4ef32075b52a235cd285039e2460f6ad084b1f5e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d80a021dbf04d702b2bc9736f036c0436191ab4ab3510749ccd03c533e9b5aeb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6898ceb180df4a46da74c974cdd105e3bcbc5ddd1575e3cabe53a43dc676258e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d4c950b548bc3ed89ba8e5e216115bda1600c67d5c35fc9979fb4155415a7b42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:39af594e6f2fd164192c69bab214557cad92989f21e059cf66f00e455c7f816d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f94694f0d2db1759fa507fdde4594e6b4025a61e3c3f8f2e6caad509a77f6709_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5033eb3bcb9c08972c36d6e19b8d192d85822373e76eb3b54cc9168d86ea62b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:a9fb56ddfaafe28542fd8a824923257122500903fc18626f90d84b7e9b2da856_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:0f4d2bd2755eb5467e25d30ef813275b15ec77c1433d406250af5294b8b49f55_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8a2d63e97b83cac2d12e809ea63398ba1c188dd996a00189664c5dd009551860_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:10847c520f582706d956c48a95e6e2fac51cce89aa8a3d4fee316fb1ec97e140_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:73d3bc342e17226fc6e47dfaf448d09e394ea53ec199bef1ba42abf3e0be8c5c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:11f214e396caf556ca08273015712fc739d1df22b550812d079ef51af642d311_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b8a8e237f5827d7935e0dd8dafe0f59157cdada056580d74feb4ac1b9e05b683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:26422066656afd16e5e36afeb7e4b5a92cb6888d550ab0a0071da9a198f290d5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3a2ee96fcf0963d55d4c1b6ffb874be6c3552ea0b9917b410976bd59e4a58efb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:2f41d30f61ee12bd34b94ba6d37a517eacb2dc4a51c938f588a87c1f4333b924_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:b49b52eea375dce5ee2b1fa3aca1facd6ed65b94e44ab235753eebfd917fdf58_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91e0a641719fea07fe1185250e91b13f8ece46fe371bb603308306fa9bbfc5d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a0839939275e2b68712d77224d5a7612b10a1bf0152a6f57050f179a1c492f70_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:bd2d266a384c88aeff5ef7174ecb532b24aa2a9d6d17a2e5c01ec384102571d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:fcbec489ae513f599fd533e30672085aacb0f937b7d3ecb8f97a39b24d0e3143_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a37378e201c50cfd94eddd0ca6163650e8af46e7c3a4f97d821aff530ea5374_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:22eb07d776eed9b364e0f8843dd2eed75c4295cd9c5d3567cb76b5e5ce20b725_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:73622f6358a99c5b2666edc3f8b680b4cc3906e2f198c67709973dfcd7cbb0df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b18d10d989d149b9bf1e94be6b115ec3445541d5d0cee0358b0fdaf634f93378_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d1772e78e5b5aed465c12a05548f9eff106f7a1e00d3d913830f8dee427fa4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e9ca0475950b50db7e62be4c43d82cb25734b00fb081359208323067c511c19e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f403594cab45dfc4de5a1fb56f8c9cb8d67ee8b8da68ef64487ef45ff6578236_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fab18be096158a97131184f91230ca5ad7a66946ad4ad527c224f279a4d413f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3e79c9035ffce3cb2f835487bd144c0976dc407890016d1fb86d1f1dc3453ed1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:70c684711eaef0d1b4f996d745c936f98707584a54b5d9920b8c25af4adec597_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8371e3f60ff9846b4249201911cad68360c81e944f753a6eff72003a17c2512a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ebae85f444356b6e695da3e3d2846bccdb8ef037b8cdc77f94128574531851b5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:0c0ffcda769ef04c9b46206aafeed9d6afe4f82ebd46751aab4b47ee6584fab4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:408f3dd8943ad4ba2ae37bc2708b698e60a150e98e1c0876e46d088832ed8d24_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5cddf09377c1fda878639186f3844bab8833fe3890f3266c79dea36faa4f11e9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bc7f21410949e77fe85c5a7330548b893706c2471d7d4e8d5c6c26a873132263_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:283596834104ae59f2780b8f0d61d90ea6128c4b09d57da03e05414203ee9245_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:53eb49907793916b8c24463ab096e15d14265a19da7a735a38bf5ec2b9625a79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6ec2c12950d227467d95fb84bbb1f9237cf8ea00b0a414371123dc524e94c71d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9fa52422e5bb14cd6eed3ae6d2a3c0ab07f801e6f92493ec59217025239a5121_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:089a4975c6964f0c0a435586733b9fa5c3c9c8a5e139580f016f7f69ab83da27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:950bee80200f2d9bdcb3f07446eb6aaebe4b31642990272178441b6f9e56a761_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ba71968598ba3fcc8dd2d9e3a861484f74804828ebbe5b7251da6706b4cbaae0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d5513c03787f261759b02454de8248faab74c402a7c8d9e948f469181dbb786d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56b40826166445e18229752bbcf65a4cf498e30c4f763110099e9adf1accb209_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:62a48fb1fc6545c57e524b1e1e3dc43b9749c024578e5266defc819d46d264e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:aa2333d5515daba8a887e66ea88370041a21a6f3c483bbc4e2bd888723c25285_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:d61549e87a7d32c426699db0e1e7f716a575427c65493f9af953a74581ce41f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:328589e1b67b3322968ac4f8b57193b936fbcac1317136e2818f8792e76a7d0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:362523f56123e0d1b18e7b3028db4d883de2c886e5796e569bffc64118577ca0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:5b18e39a6782f2bac42b00c42d88a05f19d1740d49082289aaac11aa07a48f35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:86961033ea238cdf3d061f8aa811f4559001c4e047e98165b00a8f9018b74c2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4056b49b2c42986f94456c5c3a5df02d04f8a08fc4cba8b957c040e4590fe581_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:94b1cf74b70f1ea57d939327a45cc2202783f1ca1d098ff27ac8aeefaec8f2aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b7acf9a4f00a5134eb1810f0ea70fdacfcf56549ced88a80b36abeda4435d925_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d43c576b25a46f4b13aa9968a17c93078c96acbe364e2fc13e12cbeeb334e796_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:020cd17bf8debf39db376f9f514901b1bb882de052631a01814812dd0a913f53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f857a7dde34e1082edf0e26f92be3ead9148a3c581595a5a945704697d9a9e8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ca86e79869a7ab48486107e3637aa3953201ea36b6b8559ae8b2a04041606c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7f0561027732ff639f602c3a24d89894302fd43879370658fffd01a57a99a1fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:077fa69807819b9cf9c057e592c8e75c8108ea09cb2da43d7c378dd76ae68c51_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1493ba223106394c3d89d993ed18f37af46c86aefa50d2a3da144d1ca49d10cc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3d6a4223a99f958f0fa1c4afa6f1aaa7a584a996fd95140c1bc151eddf215c57_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:917aade90b9dbdb7c59ac5c85dff49ec74b29a27aa330352c24680a6987a9a7f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0539cd95b403a48c3ba7a04e3e27da96798e7e342bb6696f65599c693a4b4297_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0a3991f02157723641d576f54823b42d424e612837f7871ceec21e40633235c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:60cda39573f604f52c427956ff45e8517e498783efee60cb8c7804ffed26a465_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a564cbff84b987d316d891c033ba1ce2299d0ebb655452671498b3de789b6f02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:23e8f2481d7c5f71053408be6bb5831e6a852ee4c9428f2e72403b6fd721068a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:38cceaff79e567296a50b816cd81cf60c695315474c62e0b380d9d0ed253eebb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6301be72ffce6f973f70fc6977632499d2930cfcf23ef6e477af59f3b283e3e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e70213ca82db398d11de723f2dd463c196059fed0639ccec30709332648efe78_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2bc4240c6a9f5abe64db9b36884b14d0a763e93a6474096e23a353cab562c400_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4a524f1fcf7c5710ceec19c651216c326ce15290848e4736d504f3247a20e1eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e2dd70d80b53776a74125790edbd091dab84b8da27545e129f9ac99d7d5d4657_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ead5377c32eb77ed07c2285ce30eccd930ee6348d19977ec8c7f8050d9b0ff04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:27a4c883fefa0bdb0033fc23d93875f3eccdda559d2813fa131a8ad3b24b9356_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67182434ce84ce97c5374f5ab962a79f67777bf02f82ae92be8f7eb5d0c2b85a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:8731368ad974fd8d1e5c954284fce9346912eb4210b01e01e6fc95893320f591_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:bc7dd594fb0d5018aa4dc0d26653f73d1859d978e07f0a1939189c5d2d654895_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:20874645efadc9cd5b6a176a6d76cc1f6ee5175404f7da5e10fea3bc98498ede_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5854e872994fcf1c4c534fb1b64f7f24ecffc120b177dc8079056b6a420ae698_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89802f2938cd3444ab90393b1046d61cbd3d05280432ea2390732a0d0520990d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f6a6951136c7faa7b9bcd0f6c892ec9658a2fa8701e0dec5e45225c3bae52bc9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0b54c713dd339589a9b1fc5e109a7b65117139bd27de833ced58f9716fce95cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0eae1a64fecdc43b68370d99fb14c369c5f0116d37bda62cba7196c0ea002116_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6b167e1a3755b0a2362ec86878e5614ee29226fcc956b2e193666a7bfc47d44b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b97afe9ff8250ec6647976373edddd171f0b362ce576087d8dcac7c4ea4054bf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3d7227cef380afdefd5f5a05001129a389029547c6f5ea8dba4fc46e20793f23_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002f5d99c5fc748401bed6ef7d0aebf2fb58d6850e7d1de4df622c84e020e87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e8d8d468ce7f75b0653d4b3e41dc63bc2fd7e231d32bd2296d08155eb258349e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ec0e7dd227d354544a2e67dd236b93970d393c87c1d6093f8191b9141c40ad01_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7807ea7a4377bbc2df491ec5bb74d324eaa66649fba9f40ba46957fe1a758081_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7a977b59ab4f908549ad66c89473f9dbb84e31eefbe6a8dfc92f5598d3f882bd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e10922bda03c19bfcb9e6b85eeb3bb0e5ad0ed717375c19e2a31c94940ef74ee_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e9101408b3219a72c3e43b88129a6bc6918df42b116ad18efce8c7a1b32e50bc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0618e1978b5b4ac2a90f578af3b8b1c471ef922a3d01d58d413215aae8c5a509_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:164e9edcf185697cf77fef80a7b26eaf42efeae25aeb04a91a7e2afe8299828a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:366eb47b3cb6c42670ceba8966f0ab119694536fb2baac881685e75e6615dc85_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6afb37d303abf20e6e100a4e472d782d6bf063ae6d131852a4ef9cdac53f7dd6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:28b92b175c80d10b33844a1466fe71cb48f48431513dd0c634f2ced57e0fa5b6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2cab2a6c6f64eafdc588cc11a5537e1a2ccdd0cb37eb84507c985cdb79855e25_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c8322ff72825fe9dcc1c4446c8c3e4dd73619c15542d7f483642789e0463fee4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d3ef2745733b13faa31084c3cc345368c89f43b80b2a76e5b10fd7bfc008bcc9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:6ca65a281af1b92df6872e052381ccf15cb51c4adb0ba9afca4c3d3041e9d9e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a387760a9151eb37055ae66aa4821ee114125536324c3404a1b4c7044beebcfb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b6f9dbf0e6927d43f45ac8efcad6913ce67b663747d509666cf0ce87455b0379_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:f7828b8fc7d451c4b252b52150b2278d310e456e4b06de990bce9d123d923b9c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:215cb8bf8d6ed22118bebdc28ed8766acfe0d8bcc2c5e8311d3b4dbf8a664d48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7077e9ed025326ff3ebc0277b0d716efd46bfcff079442d777dd572c35842ba9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7987b5ef6ba2b7e5a9fd3be756c5cab95cd2464af7c9e8459d00e527609513cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8e5fa9f4eadf03465802101457da9e3a618572e47bf8ebd2859e9b1c50310991_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0d11910863bd5a411090ddf070c1be9d58c6f8cfe94eaed1c3ebc9cbe26c3cf6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6ad8362a4cb63bb7bae0e49db53ff65fc60a16f01a414e9f2ab540606a284b08_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7f889df4c103d4fb66fdb537989e34f139c953344fda28b60920feafeb1964f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cadf5ebac4b179bbc456ebc6743a061cb44437675a0b69f825670a753ff3fb0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6d5855d82cc1db4c9b87e58fdcd0133f56d26e44942787c74d0cd27e212ddfba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fe02ef18800c00ea33cc42fd3e7bb5d5ab2855499250279c785ae222e69f537_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9bec401a9b520ec096af6673657d6265501df64d94da332e818eaab70ce54722_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ac7aa75334ba6e157584d2fc588d682c9c841ddb1cad9d03ef0df96f7274041a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0077c7ef1053ca67c87920402ca1cbf21bf54626ba4046031528822a176e0875_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1d103663fd08d4a67877ff23ec32b2d16e290f2cfa268fa89c59c3f296c3b080_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:78baab63d2e3ad8f17734423f5b10cd137d944af647104bd40401f433a9ea996_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:7ebf3a7acad88ffd14b4ae54a1a8fac1eb1d22b6f102216df4586e544d2fe1f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:07ced40602810c0a35ffbed0e120a396076ff01e1d254ba9488a8714d766319b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:080a99a5e9663712b898e49ea608d1195c8e113753e23e403954fc0852e2b8da_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:125008a0bd8a64e396b32583f34c77e15e45e212e7e623ca20f418bd89cb618d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9b8c9e0dba83ba79ff28bda01050caca261f0e723e8f222cfce4a840db29e300_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08c33ef6a9b30a565ddad8d93b0529ea8a7c29a6e0f403cb0f49face063ae162_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5928577bdfc2683410ba93dba0ec9106d1ab29bce79f56a832c06e00ef82fb48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9f0fa62bbcb4f5b18ee1ab7831d634e2faf5e945e94fcc61a204d7a4a5d39d24_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f448d0ef7d1bd805abc57fb34fd9acdae51656851126b9abd3038703592ba4a8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:21000531fed1065562e8e0d275bcf48eaaad2d35f54e81e13a03e9dbe22fce2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:41a99736bd8c61ac43d9cd84f3f21d4d174851c81e2a4039263b81d0cb3520e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:95c36149f02710b63a6c05bd3249027dea0cb332ce600226b6a7aebf4ff73e38_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:988d7aab9c210f5e09de3488b38758cac859c4619f8e8d715176c60b95993ee1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1dbaa49ed53404150877894965d638ec0558f4e17bb2b0d70933d1e93c26b713_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2bfbea264fdf5062c9454ad7efeeb799d1568071ebac6195c8138c171dacde67_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:a7a07a455ee7e89c4702fb1f15c7888945acec38d7ff1cf731129b098050a591_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b965fdf100922a0b263f372f4757fec562f0b48a8032d2c7090d9c8f19b5aca0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:54bb0200c75df26bf82e42db71faef1dc309be87095afb5de60e39d2853acd62_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:63d7e09d2367614dd7b83c41b35b538a6e3d98fb49c03a103f31355202528319_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:9557a3d19aec734063ea30485f71fc2f279b7ea77ef1b2d1cbd7e98ebf7e2938_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:de22ad5dc832ca597947d9eebd182f01721908bb26f8367e077134bc442bca68_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2568dfbc55a8a64fab947b40e160757402d1598a563bb1ea7a42103d2e6c049a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5044508d683bfb7c1fcb538293e01a54e21360f85dd3d6b6d9150be3571e4604_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7f9d5ae402c429ceb81c952f23b0898f4f768b048e87f4c7c193f970d83248a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cbde0cfe56b953fbee3a2fed6ea3cd13e6cdb0dd0fa74414b488295feecdf5bc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2ba313bef314b9e69e1b2a545ab54b0fbfec2d5a6c8b558dccf18abaa7d7e33e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9848ebd13facf8daf9ca0f32295a280ca5d4dff1d48b9f3e8c0b249b616278aa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ae1bc048acdaaf5dab22505faec4c6b0c582b97023409da8ceb84d983494a0b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f8a862ce45dd686fb79c68036e611e15ce84922dfc64f847abcf6b65aa55742a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:11d975797a78fdaca7e28cc15699aaee700b3ac8185bd5d019ecc2a51980ef10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:40debe8017daf2ff3c5b17e89a4ab7e96cb717ae7bddcec305fb1eab8bbce0bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aa195335b903dcf873590deea8e425735760fee97ab33c5b648bfea1aacfa894_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d71c752e32a996fda35a49d7c7ab959689a91197b0e229481891a03c151d48f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:666c36444702f862ad1df16b8dc76f3a8f7b4eba8d63473a4cacfcd34c7ca914_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:836090b24936b955f5b60d236ae328e50ac91ba3cc367249cb5d7762cb15ebc6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:837118a81cc9bdc984af5e9a3f4fedeae4489ba4aa98cd6513dbdaece6acea61_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8bcaefae8c33ff10f758558796e4e90193b1ce2ad3ece24a21ab93a7e685dfb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3fccc681700104f6edd949e78d406f8c10375739f4ce8c5c23c9e85b69b1f201_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac846a2c18b90026c941cc2fcd91197ca909f985f0cfc14e91fa8c0cf2b10b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:96f715b9440bfb17ea68aa161b833ac33265b372e174123bc10dac3eba00a872_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a7750c02c168c6243c3cd666816d5a4be224e3799d9f7d626cf7e64f07cf06f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:32286da133273dd699de38a8ea62c46b66fd0f0271788ba6b205ce7e34fd5ff6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:34faf675b9e5361a23ee97d02ae1257feb38fda6e287b3b2c67e0b2e4e3ab06c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:997ea290d800e3599f44e72cea8bdb65876dba2483d486938e2d024b1b9a4fae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b329d7566ac8f0b7f45be16a1b364e249036c2c8f703af70c9965240f682f808_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:309782f6dc79d9760dde0265959260871b592a5586bf4073e9561e813f316816_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:529879780fd60bb296f0d2656d7d5805459827820b0b07e839909032ec9fbc17_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9a12ba31f5a9e9e4b8114ed30bf9a067cd5b92430c35905224899a819c627741_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ee31620709847e19ee56a6187986df168cc55a41e86bee1488291ff6a0415d31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:16f45167a5407ccf892d7518ca3c7a9912d5d0cc3f07446cfd3a1de175e5321a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3ec816ffcd991bf5082f28a7edad858d9b02cd65f8e23ca2e320c41a33a0cd79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:50e0dcc3cf9d804afd0a8a3f633f36283817569fa1f5b7cad47db6cfc61c4a48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:af6e2eef8ff2eadcff4cd975245ba0cdc56f04931b248cde6d581d2d17582fd6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29b6202fa854ec12e85774564ed5da58d314916d5843aa6032428c3cbf97123f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8c019754ed9656d55c293ce39412f910b0f3ac833615aaa03e961183c4831fd3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a985f0116d10743bdde5e34fb181c4639ff0941caa66a3590713ea5d2586115c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b01b10b5836dae32a5b9938ba42fd4db2ae33a6b311da4e0c54ce0e48668ddf1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:64a243eb83f743985213e3c255f7ae58909fd3a4ab69bce80b30361bc9cd9225_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:995d3fcffd3f156dcd8831241e80223d35b6a150d9d72e89bf639b6ef6f2b81a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:aa7c8a340787569438c3c7515d62384f9a5ecdc53e400cc6768bc92c940efda5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:ee434038f9c8039bb2e2729584617a8d1b2554cb1e981f24a746badcc63c9022_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:772cccd41fa1d467cc54dec80bb7de08fc746507148f6220360c89f3f731c31f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:80c44734612ee4b1c13c995b1583a317e4742755ddd9ae515d6b9c61ecb5f152_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ae27d39fe63e4d5859648c7cc80b0fdf8ab8072bb8ecb34d21790552274a7abc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:cc9a958fbda1e4df8e235a0ae4c62d23e2e02dfcf25c3c18c3dfc8bcc787b7f3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:223602e0d30df9f086cec5c4f63562fd46f46726c44e186a5fec80f57689bc24_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7099a6800e9cd28758ace736f2c602a223f61dc00fd45def548e6d9a4bd23539_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:af138219459f8f23471300a38c65d1d0c580ab93b30c63798d51e8891a948afd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d7da61ad815088b8c671d5dde3b5878fff0083776e1618c3a11594e6f08c26b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:18eace0b9a62e03ca9e882c582a3ca9362a14488044b9b30076447ce3731206b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2dc26c9c7dd35b78f4ed2c520337631bc45fb10076d94e52d9a632dd66982765_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ad7c164753be2cf26a2c69aacb95f5d91e5b1120dac43cb2ec505794fd98fb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5b23ce65b543c607e5547f2bb71866255794752a920b7f644fb203086cabae72_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:385e0ff7ff74b73dac4393c5ed5d700cb3a1289d501917dd44a6adee10f492b9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4393f322b7404940430e70469c0ede12e724564e87c3359946e349cea2304a11_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5ba8673706092251814d05e8dc3d6de7e74faf5829c57dae0e3634cb6e80aec5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7cce8b979af738044110eae0d3f16db2e70178b32b340b7f98c339c6c1c80791_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:070167681620cee73ddfffac875e999f5a32c5ba48fca753ba907671c70e3ba3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3ae7edcafadd5fc3a2ce15754828efe17dd81a7fe95759f5d10fb843d8f0cff0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:4465d88b33622cf161e2df43aafe3fbedbd4e63f833a729df6ec5d6ffbb23b1a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f0dccb2d388210d13763e44e7aaf06712b1c463b73698566b32665030a881dec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:60a1f3345766ea95b39394925fcae2358dd8cc819a0f7b187363bff9f3bd1bad_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ea484b41505f1e5b8ddade45cf6f89e7b22ad4b81d740e9db3b4263672611398_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0a527723fa338e5204f37b50f7c3ea7f46055a91f391aa12f5ff91dfc621b45b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6fd265148a4fd19ed6f39345ae982687a6ccfadefb2dc96af15737550c46891a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1df097f85a3b46c3624fc2b59b6755ec1dd1bb6843ce84fceca2c40b8af74eda_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fb4965e61b337cbbc13b082ccfc8ba17f7c98e3a9946a2429967203a71ab5ffa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:19233828b527446a7c210823b43ab95d309ed58c124ce07bf2cc70f809a6abc4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:953d7116656841f449d6b295f0753a0d39a2474b3b6a4b6d6240d53e357ff86b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad08029d8e31a6c80b9d25947ea267b78ddc0e7f3a97dc1dbc075dc4a02283ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:e163cc3aff166d01ced5f33c6f5c9145a330cd35a7f82538017338ff9ac43f19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:039ccc1b8843a4dae1d65e616c23066e2e921f5f4693f52a6c6a9e0091ee298f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6c5f2e308f308f3892acb46179df4b6bd460b234a416f4414194005cf915ef5b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ed23039296c3dbd7ddce99ee1a538b7b83e32e827932e3d00b929d0f9de13a91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:efccb4622508c44f67b3693732b8da8bf28bf80097723497289cc3cd3180d19f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:77dfdc4b6e35954e750b90627d720a0f7a3cb6fe224459c09f5de359c589f939_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c4ad92a5a5a030bd90ad8be8df3914f70dad8fa8e2c984144791685c7150132_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:924c6a190d3e2ccf26e3486fe09b892629736bbad223bf608cb02cc4ca2b5991_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f75d1ef206cef5035c7a4e2d0f8e73330eee059919cc4283cf0ae8711a3e7865_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3daca8e471b071e56c8f9551af5d9afd8c2eb1e29cf87e09dc48214cc885e262_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4a3b3272a261a24b3fa681898aa7d0c55e8a8f67f719200e05e580b0606c16e4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:683faf9d19ecd98b5cc92545e3628a1049b13156136f86626896572e7401a356_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e294500f174a12001306f888e6bdf9e10d3d30bf8554bccd5c82f1227de196b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:08d7cbc7bf9e4d19e36b4fd5d27040329982b353032c525179227c3e15d30f32_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:58b18bfb4498e2a7890ee5979598decd1b9692168ee10ece35178e9c2191f430_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5eaf2d7d197bc327adb488bf3514d2ce6886900164bb8a7e3d8c92061baeb783_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9728bac89d23922ef66913d370ccaf943465509f8a068494d517984ff490f707_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6257b90eaa900f50cee0d5cf84c105158f70d9ad4a9829d5208cc261de3ab5e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:7b851c7bfbaaa9227d15850922fc76f76bc517f60be3c984e23d339fc2091eeb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d6142179c8354154a885955351e093aea68de58f0cbae8ec631da2d3d8cba63a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d939f022cd84850c27b617d17d71edd7dcb549908b74ff92d5115dcb5149df28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:530f79ee436e2ba7bf71f7cbc3b62c3be81665f5207555dec663565772158b99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9aad9fae53a218cf8bd83d50b3df6163a9f0ef6fe742a9527d0cc267fc8164a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c43b8d25569a9a26f77e1c1b6be0fff4467a9dbb8117ff562c2e650a2a62aeba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f0b3d8e6b527fee7bb63906136288b117ae31a38ad93aef266b7e0d84dff4f5a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26fc6ee878e8b9b76a61d203bfd0e01a61175ae9d6e350b4c8a01afc8e388080_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:93b66467306d137b06f29b307a72f45eb3a9149a15cdce0bbefd93a9034de3a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ada0c79488c2d4b388d12f9e4238054ec9e038bde604659fc70b1c368ad36964_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eaf2dff09f9cdbb55d3486888f5e18db19f535767aca754ea0ead9129bc6ca0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4a738c52c3e5bcf3c1d94b679aaea8e91b3cb3a3f981be534d8ee1274d8455c1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66d6f7a10465049938e81ddc1e4c13b2b375b2c92b39af99b2c7fb8bfe2d5e3c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:75e8df980f8d21fae7af1185852e235db098190d2e3098c7cc9086236a60eeba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e819fb1752cc974f7ec462dd49c52f9575c7b0db53f8cda50121ce1a391ef0a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5c0a5ac804bc8bc5f5e368bab64945e8e6b506358e4511387869f9bf458ba3f3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:9f541ec9efd0d0553a8648c8048c7b91854c3d8419e07c909e621d2ff5276c60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:cc987d4c88966417b6c45bc66dd878cd885b4805c9e2885fcbaca1734e7bbcb3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e88d308e0ea7524be29e017096eb77ca6df3c8b3ea58a8a6a16dd7fc2fd5949c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:231178be9e1d4d547dc7705f82f8e529672f47786de781ca53424543d9b1e073_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3dc25f71c79a131cdb79f72e3c6bd2a3c987728e52d3261c5935f15b1466150f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b05e21c1862a49132611c23c1c0b589c5ee29b98ef5711244a7c32438f55f7fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f1a5782a8202fa153b78b53324954109911991dffa9d7997229da1c6ceff7d45_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:17bcf0374c1cdded8c518835d832bac6b8ca75e05efeb0a6528e0ee49643bb35_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2873f8aca5b0ead479497c023010d6cf324fa893522eaa924f10695a63c1045d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ce52fcb8c19848e8fc81e8cfca9c47e1a257339eb96e6a5e4d214066dad9afe6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1f93b71bd8b9bd62776c67cd5c41b93f94b4b60b58a06625e7d57548518f3669_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5599c06a31ac2bdd1a8f190f5095a1614788b2aedab9fc4f454cdbdcff9bca9f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e79429feca8812a6d1bb6316906b670ccbb89c506d0f47a0ec8568cd9975a479_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32526be8ad65ea6e3f70126e66ec2494364930f90aeaae32f1ea3611ac7e167e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:9575d057a034bdd890854a08559cc08013ac76dd0aaf2ef11e26a5734be590e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d6f6a6f074d7794ed9d7015ea7937582f0ad1d07b35d983dfc07236fa3323bde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:7246b6b2f38d276340ab7d46baf8e67166639d6bcdb75aa901ddc09999fedd92_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:87a0e8e9d89cbb753a2507abcb8b0b1b3258a7a88f5d632f174e6097789cc7c6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:96069c3067b68f1e2942d7758c89426eefd21722db2d0b08ff5f1db39f2b12aa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c2401f994e1783a28eab6f7289a25a6dfb9e6edbf6b424dd0ee9320469cc3a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3eaeaa507833c96c48161f8fc13d4ade13b4ad85f397a41574326e7ef81239a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e84c44ad88440bde18b3f65817a1ffd69ce15d48f8772dd82f5984d68c73928_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6914c074989cf18597497721c5b4006874a7e9a12fff27c513f8e6ab049be83c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4b2274d948f48f8cc0df96f3bccd2d610034ac4495c977bdda82c440b65092c6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:72ba74f4ad3c5c803af1c9388ed1c7186295b74429f7466304339f22deecd40f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d47a6d11b74143b03ababf249a83e8ca576752a2ad58482a2dda2986d79e7098_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d71b697e5c67952876677ad7d89394139d322dd6320943c1bc32fef9c501c326_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:3cf00020f76f7dd6428f49aee9060f70f2d5d73a7579cf8400ba22f8a3c16364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8a9fc2fc1351bcf4a939eb506e5ac91788d65c5f1826c46d3b41e15e8ac7b3ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e16e35579e3696474f357bcd4bb3c77bdfdb1603b971c3267d08f8fd119da62a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f3623315e94aa6a0748d390674e9f2f8632bcadc5b8ccccd75bc45019cb5a9ce_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:bd3081cfa4a3a02061a6908b469dd9a0b987b5fd1dc73aa67bb2dc05ccd2c5d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c84b8c416b3b543d4406aa42eefdc1c02c12f2bdb1b7d56a3e5c0d9c549dec44_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ef6ee4f9fb6e0ebeca08a2a2dfd69cc6b5baeb5bdee0b3158f575b14398f3ad4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ffb6610a0f2627dfd68731bde61d78df97e4ef5ba769dbfb9fe723dfff0a62cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:9329715c3820b10b14bd23f2f3e89ea1172886a3c61333d8b099019701f80619_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:cb9ffb3b3c64cc43b15f52a40235df199172800aa837ee2fa136c785312126a7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:834b63c9cd783e684ce59e99d4b060af5f2d6b6027bc62793e511bd5ae91afc6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c362a8609bd2a9b6ca073545e2ffc732949b1791929dacd899faea3c4176e984_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f050a78d1622d2a10a4549fa7d2340eacdfc80e4c1a628078a4a13006df99e35_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f32061109e6d1b72145ead1598d0a2065ccecb2ae424e743dd613b03992ba030_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0650df0f1f51958baf5fecd36385b4ad6afdccfc77ff0bdb90fb140a7e6a72af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4c95f82bafd9f1a3207635da63f752252d94cf5d13405748bf9f1dc6d4e5f9bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:70ec142f9336133ffb3e4caebd30e579d59bcc3d52a3fd4c4642884103cd5134_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:11a23b0b5190d560d8a7e45c7ac015f71c18fac0f1672f2db84c55ec7d55f9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e04e8d139638d3b8444961f636909cbf640ab494b88a738cebb3c6a7805e19e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:503da2bcb8b582dd98c685b81bd031aafd71e1bbfc8962b3c8b0ea9110e9f69c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:e1e3d49db220a1e3f4f540ec89e06b8a4bb7dc72cefa4b96cb278001154cb21c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:12908e94266b5a90846f50b7fe8688d66c359fb3fc3e9c317450ddb65b455076_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:587f806a8e6500d4dcced927409c0b582a658fee0f51c31c79736f8c31c3dea7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8c53297adf899ca1152c61b10149db660a9146fe067476c82114287f564ac191_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e530b7dae37afa62a6c9def8c54b573975018b94b5a56fc88e218792b85237e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4cb9d96442ea8b54307369d340a8cca987471b191b21c9463027c9bddd754074_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:791d876a5d256f592916c167dc0919fd16e1251317356838146a5fde8fd8a6e1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a9a8d43364851f839ae1bc62a807a983421cf5b41a7488f8da7e68b7261af056_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e1571e62821f55bcfb611afb286ff61773a16ac15a67da5bf210b5d141a6b3ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:21e4959e7a52ffdfd8df79a73177f02714f8689270c9a4aab4f390be59524042_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:51a465dd014fe567fc52613a127c932e386d2a6e5f1faf4fe1cbb1e6becf7e4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:64f077c897c6ee0c9db36c7cc4f9913d1ed66afb822975974c40d98fc21bead0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ed3e46a857f509e0c8a08c750cea6e1de65bb6a1f86933165b36ca5e45171377_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4b47b7c763f063e8afe3014f0f902d55ec6d1fbe832c2fc2f0585121f68c618b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:affe71c5753db62c3117e7d4d8d3a79f3e076b740fe8895b5337211ac6809eb3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:664fcca5d05f7993a6ca81942ea48894df00d46728bae7580f534891e47fa72c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b37fe0e3a3212b0e82bb27cdf4b84f4423e4886d2a3fff5ffe46be761e98aec8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a2a838ee2839658272f41aba9d5e1b41fbb05039c1aee8a63eff7d14d7a1f0fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ffbee6c294475f3dbe6b73884fcb411b1e5303f9b549b7adfd24708b776eb306_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:43fd6e0b0d869a25c61ac074076a78a7f8f389a0c5247af03e7ce51392e90108_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:9f05231471d861b8e8a788a6f448aeeee16693fceea9521fd87e4f6a6b6d6c9d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:049dbb920b57cff7ffb88073192c4c843fef754775862e4d57d2373637e45c85_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3b801c6c05a17b0b1c763f0a87d4908ba4980ad09aa8f12dce6f3e11b8ca637b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5afc27dc982aa722303ec6aa2b10cf727f2d1b409a5a77e0f599569559275b76_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6354ab3fa4a9e9cfa2c51da14109a1a67e98a3b43c346203ba40036ef5c3665a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:22f52c4591a8ccddda25dc4a1eebcc92010f49832ffc28cf935b0873021b2f96_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ab74018d4cba5a5f1ed65e9de515209321ff6be359ae0958f2a1b73d799805b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:65b2efd1ededf1a89f9e6a3e12ee8c7085a1282b2520b2906cab1d80520c00d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:98d6f4f8d76d6dc810ca3d927fcf93740efe1a56fa6100c1ed1e80b84d1be21f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b07ab0a485d53b9ed37a1a1b244c94a70630972020176fa7206d5c9dc40d9962_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b4501412341595aa8eefec6973195073fbf3d961cd813e21e02f3cc14150e223_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c03291d932607165444321fb2fa980104e60ac414920c1c05c499a898b2afedb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e1caaa1ddc51954943c6b44448ef50d7113fcd1f8aae4a84fcb24749de315e60_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1268948f6dae5346a6a8052db8644297c1b98e1732d64b24073d959de18aa22d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:458cf14369629b17e735598d3e6c24eed47bdd8bfe054034b5a60f4f40b6ec4e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6d51ed70ff145e62ae5d22d42b7cdb071e06053d2d456bc5411da7265c29c96d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c11d63f511b868c53303849b22d71273e844679808aaf604c87b373491a99db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:043460ad9ec9a4b05671ebfac16b6b2eeb39e3ebe5f43e3867f3767b7b2f993d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:62420bf7fc2b91f60b32851f2c099ac5fda8083e6274d2a5523ccd0ece3b6a80_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:77301f40eca2b49f92f3c89a93fc6766306d39013350d635f0bfeff4b98ae012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:b86db4181d9fe036b77d0473dda243523003c19d0fa5888a54f3f19c104a7e52_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6bb49580fa2f15130fd93f51e34f31f963a4c9b8b9cd898ed573ba88ea24a60d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6caecd5a01bd49eff8acad2449074c505d07e521208af296b0cd9f0822f54911_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ca38c682197a97a075635209b6091a60ff412df3461950a24d1d881f830fb3d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dd9a440a68817b45e6d2d04b3c31feddb82304ac1d246c20c0e33355631d9624_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a251f2b5d7f716fecb5119acdbbfdbb9b535f2c6d8fd51ee0c57cef72cfa1964_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b0188af5f7dcf5f286e4ec4f331062ec77f341391c612aac52e017df26f89a89_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b3f13d71ce9dddbce566d9a5bb5783d3e5417b8fa3cae427f7f74997e4a8c8ed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d6384ac004f36838bc5b35ff63c4d1edcb3223c0a3907d4f099c5d85ab51b014_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:db20ce7a947978ea2646d479eab935796e8cfe482ddce01f3675066b221e2e3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:eaa77c0a842cf32f826c2ca19abbe4020997810c35e079c0c88a0a9361323893_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:59988d13b37880c4b79bf8622161c6e975136bdbfb59c8fe73ee8e39bc0f7fe2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:f6dd660a76715b8eef53fa459376986a60d9f2e7cd3f176b0ec5c6e8ce19cfea_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:05fb046ec30c464d04a70831316de4af2c29a226be1e7f73036c90899e6bd193_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1da080de78222a6c01704597983765a751b1b4544a81168fdbc952ab31f11a54_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:45c9e9816f3b14886661b4c82dd75f87e242f4ad3e0c1c5f264d1a1839e8cff3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2ab57f0587e4ff1adee3ac4ca2c3383955448c0b26849eb24c77aa3f4cb5e959_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:66b581d789ec455fc8bd8e01e980c7fb183bb0f6ccc09ff525ffdfa4aafd9a52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:721aa2904e0c2d5c4d0e3134fb695b6613e74809e0faf3faa949c93b68ed168f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a84aa018bfe05a74226938ca4e34b58dde33019aa093e01a7a60a8d6a4c913ca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1a255a287f3100cade2efe8d8b75ca7f031b9606f6d8ea31581a59e0ca38fde1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3778fc40b92ab82012aacfa7589247e6ff79edb9aa918caf6ba6c5fa3159ae61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:60433084081071dbf7cd337a3769f60ab109201e2ac323be2471c62178d87703_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96b873289284cbff34ea1c9f852dce31e5a72669f204d742288e266cc3a19d21_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0e2cca7da188aebd3f4445715b88a3f4727456cdfee2147e7521059722162fa2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:23043c95c32122eaef725c3e2f65ea824e4f83242614d2609e9367cd6707e454_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:68a9dd5597bb207e899a4716a7642cc28260e059ead26fc84d1e48d4e6159683_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c1a6b704c85cfb829b9a3421cbde16b5011d2c506143322e8f2563d6a5191fe2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1f6f4d1a8a3c89486253cd025f8d0e5aa34c0ef221487aed5e4e968e8d810285_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9955ec574da8c2821d783edbf833af9c4b4d4a2abcffd603b85d706333c68111_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dfcef3e2b6dfabf0abd72dd9743c91ca4c5c4bbe5bfe7488c2a85c2cbf467661_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ec5717ba7c764e22cf72a5792423078ccb9c3a3bb06b92a33eb6014f03f82fef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:371a5fe6ba1f62960a89e6b1050a2d324c2c91b733704fed2fb0356ff2cd9524_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5eb44886f42c57f0e736d6259b55ba561beb6324ca58537e253581f6570b22cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:854407987817269c3069c1d1e4ebd7441465f971e28d391eddd456371162b449_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e7184c5af00f0dc4551f17ef5539952c25c37aa32d596514e463464c92ad146c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:039a4cc5025db0cacd9e5dec922d9cd51194cf0ce903904210000245c5e7c048_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6ccfe8e12098c660310fa2af574a71b7b27b23050f6b6c524e9c1787c7127110_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a5f3adb97a88b5910f2b5375e05fe3411652541687262714d50105f05ca31c34_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:de16bed38709aacd8a1c25b3e68a995631d38c12d9d28924360fffcc17adb0cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4cc2ec3ed32c991240703b0a40c6602db1320fdbd328e887b517a11474149030_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52e3ca4eb01859dcd5c4346d73339889f494576b19577fee88cb1800c84f8fc1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:949a7355b5e946e1d5c760e14244073db9df660fd8b28a3c6d06420dddccc298_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aca1f2e8b0aeb6eae4a77bf712b8c255dd50526c76e843f9960871cbd4abb6f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c075a7526723ebf1b921ceb895e63a6d5f3df60707afd79c4fcf1c9bb6f33e3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a952d0aa30010721e7a2cb903e30260a02f4a9dd9d83eb7ff02d2847f1e76e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7a7b182e9ec23abab1daeee26897eecb99e1785569a62888db4b54d6e897568e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9025051729370f663bc9231aa612b0bb51b35bc6da68f8b504dcc01c760a1fee_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0232982c7a3431d641fde0e3b3b8921f855cb872d470e5b9f69edc9b573c2714_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1e05df129e355b9a76f8bbb8aa65e9b4263fb9e888639fd2fb61f79d6d212c04_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:89451c63f28e8e515b4529c8a834f6e8e558179ed3d4f973df539a509933f942_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ace5b486176727834f9e1ca6ce46b4d0ab0bc6ddf651f4142626b543a02c61d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:007e6fe2b8d7a384cfe07309e8a523bd1b7d3cea896f3b7f29908a8d41c62f16_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3fbc6e29fc388b15dc77aa93d2623ba9a23db114399f3b07da429707a03eb8fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:42f1e088777be6853d6845aa25cee3f46df776aba71ed1209285ea853dcafb95_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:73f6897c667e3fa46703b50ec857958738442bb7d8b95fae051f761f42a01605_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:3f69c1b708c411bfdd1a2f5387e6084f2fa28e1c4bfcfe136db5b66377918bf9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:46ba8317ce0d48d6d0e8902fa4b6deea668d6f3c9c6c15c2a3aa6238cc06e52b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5e919ab71bf57a160c89b6e5964525a708a10c7cfdd87aaf911e57e6353daf23_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c706a7354b0006b9e9c7c351954f179d6c50cc2b872833bbb59214ae7148ae3e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7439625194105ec8e55d4f7b3acd13a5f2ca70da75f9c82cad5f5693b604bf28_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ffcf4fc9bf77edd7944824b25136db6027d21faef80bef9d7b126b9fb6c0574_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8540ec8af82488dd6edb249e811036b1e639a74f892af1ffac1ab5d59ceb0abf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9b497b933ce2f828025dcf4390c7d53debb2418394317da9a8c52ba82a6f2fc0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:37fa7e2453893831aa0ea8bfe068e692ca4f1ffd6f69afca37a6a4e7ad401c49_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:63db7c4a436ffd18fb03a7cda09cd47844691a8025f2ab04492ff405a85ed144_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9a30469bc5882ab2711af24dc3b3cbcbd0532f49bfa9dead772070c5fd1280e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ef2e5a237cc5d69647af1b904a902e4e216ae8480a54587357fb135b738db120_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6be6d5b27b6e178e0806938850699d1e760c4d456ae517a658b47cf5a1401a2e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9389ab668e31d432d3b2d44fe11f68df7f9d926179d0fbec8a6d1b30f489857e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ab20bef5ffe91fc06a7dad3508294cfb9a72745da8cc0342e59f515db447e264_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c5c16e51700e2c16c6fd496225946c033875f4fa4c0174ea625958bd62a7ac51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:37c574ecbe02ca7bc99355b6bbd952c392cbb2abb430db4b752257306c37bcbb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:db6cfccfb142d8f7addac06e4aec0d6686361bc15b459d169b0df831b1d00160_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e813ed4ae0135da60fc1e7e572f6a46495e03764c96ec3c095a4e61a8bdd338_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2766e79b9a9a3fae66e1d331ad2fcc2141a4108e816cb1f91557bcf2e045882c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bfcf47037dce9565700224c63e19aa2ca8935d72e355c08cc8754cbb84b41d00_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d4588b2594a2fcb58e676ea0e8d11372e0bea9deb53824b47a4d8f3c63e774bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2bb5a02fa2032146aed8fcae80961e9a6e37e1c8a13a368ea07d6b124f303519_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5998439ba17cc0cdbe1bf48e888862182d6e10400fd9df74dfab53d161f0582a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7e0233017e706ead44793f1fff610a4625a22a834de67511cd66efb208a24a47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:97bdb1cc0033381c61bc1c9abeb5f3ecaac1adc70e91b203fbcbfca9a9ae6c39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f4605b13a1cd445835bfa2bf8d2f094533e4b731ede1d00e6e15a83ca924bea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:20955243143106da7d9e730ece6e49bc84a18427ddce20cd90fb5ce712e5477e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6c27e11d2ba7f408c9ca5dc0bd898bf395b3f773931b04c558759493e0aece8f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:7f08d881878f5d69360edd1be3e1e5190a66df75a087120abb37b2c0a78b4473_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:755632416caf3e2fa4e8c24958855e78c74b12d5e3f2dcae93152ce06274d428_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:847a5098475d0ab53e351d52148f5a2211dcc8090e03e17dd7b161b7332465d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:93c4ad9c017eba69c7105c1f60cba46f201b39da79f5ded60ce13a98d7608e7d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b559c70d997c0ce2c57e2cc3f1d3160f5ec2367c53c8d1fe1d9418b142c5c577_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2674a13e799262a6ba79ba3e43c2560304a1201374272e8622aa1a5e3df33d66_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6bafd363141b2012cd318a353cfff9c109c6ccc90d227587f2d0e08316309602_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ad9865c56a3ac1997b3aa16166966f73a24b49a1a8c71edec2eeb795016b849c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c2d53d7716676842974f1dda29eba47d03b525614857591426a01b4186ad2edb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2098ea118ff218c9004be57932760642db74b9387d11fd5376593ebb3b2f13c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac90d3f60f0a9de597df5344adc3d6b1478b96d47fad0ea71a00597e8576b12_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:81c29521d2aa0a7d8a0eed047e5948d145c9e4a72fd0697fa9aa613033e7faf9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d9208e402a04781e9dffbab5c989e91804b14b6d8a5f5f29a79cc54f85782e24_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:71602c5c8069030db0fa7373e496c7bc23bba707756f57a082d7eea44f61c9cb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:72d17c4acb7d58df68ccc1ccd8d7334f35df3091d8bd8e25a949e3c7f528de1d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8817af94a399c898fea21c34bdd60dd2c927ba3613436f79aab4906ecfc92cfc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f9d6ccdb270a01e408d70d01d692955ba92282ec5e577fd695f6c51289edce2a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:005773da78ed8522b96f69d9e53c961811e79340b54d49dffdce92c59a0cea2e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:502e2c5f47b1b95e0ce1e3922306ee37c604845d1d1accd92181342b473d3b3e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6c68854cff5a2b94527d6230740551ccc74d1161e7a1bd82d8119065e9e764d3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6ff88655c6a7e78def695735bde806319fe65b5fb68ee0c3ec2a82c6d80a9b00_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:179c818cc5f2021988e1b71e4edaed742e62d398da747cb548896697617254a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a75ee91ea3ee181623a22f9e54b00c5d4b2e6cf3f222a912c8aff5a29dde1376_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:eeffe28791e4306c642f156e83c6035bebdff5d1232174d56ccb09b805f9271c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:fec4f6e102887cd0d47167eecfee667e3161dd21a13383e96ef3b36f8e319076_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:167bea17ac181347213db54ace41bd0191b77ad20a3a355e56c90fefcfef0c1f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:734b7d0af02c1b79781846ffd3c617b27728ae053941b112d544c73e0bf3a3b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a7cc1cc44f13ea307fb79522996cc56264a0e036bd5ab9134b24e4a0f6639843_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ca75fc486998027f4903a313c7bd742711e2b7bd11e55b1e0c557582ca3d1dbd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5d23f5103a7bb7c71ab5b79c2149be46e4ce746f3556508933593a94f15ba945_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b2dcf4c5a2b14b677212eaecf6ec3fbba8bef7e21d51a437449456979b5fb551_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b692ee1154fd6b6a8fae68467ae87ad89c8a528d50599db14f614c7f08831d81_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fe7bd87ddcdf1ec088e780a9e3421286cc0e4aefcccabf17d1c50e4a4656b2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1775e9ce012c333caee47c4df8f9187d85d8b47f6300e3a7ddf6d83af462986e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5403330e0c28b3af4b3fda34ea84b3e6edced89649cd00bf6ff7f8352d2f7708_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7e13f7a4f2a67e74b36e39b5e582b54a8979c270158789c658974993ad351262_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ad1b944c7135118573159adb6eb359face5ab141e8328420eaca3999fabd8575_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22ed10b10973b3a91b30a7269a88013439964eca8e6954fd515442d543bb74af_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:74dfd09f047da2dcdbdaf8b16a3aba913df216cae2f26898c4f9fe423ff6e330_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d7f0f0b52c3c3c7feed13d3ab9d70fdfdb89af06210b90650123b362444a292_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:88732e8c96326c07670db570f1b1549412775fd07a66b0816f227d1d4320a27c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3e0bc6b1b9cfd488a3cf5fd19d5a6d2839d37bd609c08e6a5a7a9da869ab3cbb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7efa402118210c406818a1791109dae10962706df8c04b290561d0c784f8a57d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:8872db8f65a31459cc63eaec8f03d40ff2b21e95871e59e3bff97b6b0bc9b9d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bc298ee8cd84ce0a44f51ba31cefe4052b67cbf9ea559fac77de3ca7a02762fe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:1715daa2ffc4a6ea78b5de1a1ffe556d27e3e9aa1cca1d6ec9e53217f27b7ffc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:32d4fbd0cbd715ed35ef290d459834423dcf6203374a2a480fc5513b3764873f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d22fe92972f9d9303f541977a3d753750554e6675545ad7e511b723c3869c4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a51b74a21651e21c9d8d8538c2cbf9272d09696abe8244cd2b1290777ad452b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2a82548bcb003f718c669be20b0abf13183fccb5d7d4e34a17e9be6ee08dc2cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2bb613f365004e6cca2c81baa7a59ff75a08efff24294779f54a51296a4f1afe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2e010df4822fc8ce8b452dd6d9381d38b1dced3c0e429a9d88e02ac61384c825_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a8ff1c3b2fa1dd0d849d5cd35526a5ef2135bfd6c551ecade04e4744ac595453_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:86e68bbe22d576839fa35f704596b2f643c09e3cd755fae8effe90935f65ab10_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d48fa90ded7d3c77d535abf9eb8f56d32e1567a3c292686a7f76c6ac39b5c6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f781a380867adf7f20c38114cc8d7c751cc84faba5fbcbfc67b721793f017339_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f9d1a4c9d0a5404e8493a84f94fc1715d6226b22b672f0e378157405f5a7204e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0696026a1a59a9227aaac743602e83017e0281e6726d94d46c20c69e61bb6ee3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:18ead28e318b6a165c6988639f9361dfdb3b7936c026f6043b66996e806be30c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:64802d951a8cc8294fa9194e5778fd8ba178cc2dff80234d85234121013ee58b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e6adba899b629ba8eea41574e66d8ed2eaac9169aae5fcb789aff787f0724b73_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:06d3718842b1f074dd7b6477dd8e738e91ad243e06e466cd9cf8b08d7b7fa024_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:220e8b87b16dc9219b324fe7b97208869a17d1039e620bc91cdb5aec19d4a0c2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d85785005a4cf5e4bc26adabdddffe345fa8827a0db2240d01cf64a49747675_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fb190187adc311919da380eef951373ed4f907a07606af0797e96cd7d253f20b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1d5caff7082d26409e72c3d18b018f01178321f3922a0868af8058f839261d3b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a0968a8bb5df2b0b41bf55b06f11397a4d0c0ec290d22bde93fcf631923091a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5882d9e24bf330ab1bd022877c1f3b711a41b329c46c64652105a1b0a1c24cbe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:a7f9b163518a7508adb281ab052ca9e1c233c9ee5efe37efad238eb0febad187_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:059a0c17ca865b86ef3b3c19cf641d3dd43b007de861583f5c160083dc52a012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7fd099e945dc79ff47d6aef25ab62b66920ae6e7338ef2da01ec5865970bb62b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:2461d40854f69f775c2643a67eb8676729f4fde44b8ad6f106b86b8a66342f67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:c69c4ec8cd052eeca122726323294481522580372cc3c948fbeace53beb74765_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:05f0aaebb8307b693452309341fef6e3bfe6912a34c1a9d7ced1be398d81351f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:0a46ca252418f181a86af41b48cbabda464d51f9d9f44792efea11e54ed2167d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8e9b9f7048b849a45ea2edbfcdbc1601d8a11cb4260d5c1d89d85b5ed462e7ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:cc9d2ebecaf2c78d99104d0a3ff23cf7748e42f13d00215783cac971193b1f69_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:25e957fc0f6723e791625c55d1b251f6b7a894e15d74e7af29e004add4e3a6bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:42a64c335c5af6c607f435c9a09411e789ba8b66d4df1201d532f27df5b9dc04_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7c98311b8e0f89f03a4250cbcc60ff62ffe65c4ee1bd8c34c31b623442f348e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:abdd622e2447490b74f285cf653b9f6900b904aa6750b34bf9a39f09dc6337de_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6a3350010ffc87ac68f2c8eff3ccd707bef4d9295be9aa7d5633e83b3fdcec1d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9ce9629c6a48384d0dd7d325fd61cf62b8c290db57b2917a8ed671f7e3d4fa9d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a71526c9cd2f4c5f9a397348f1ebc08590caad252cf3bce6e5d07ee6c77274c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9cce3c5b53509924dd37d4d3a250925226372f26b45bb52a9dcb46526b1f3d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:137c1f39ca66f98cd37c8a9deb3279d0acd18c24d70a88b6e8d9033a1926fc0a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a38f0412ab643c849826b9600b42aa8975f4d77546ed3b36e92e7b2dce237e4a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:de2eb4f5453b3a0463c333a1770034a9016eadddbe8a07c2666c3d58367ce3f9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e463a6ace53d6f8eeb652db6a69ecda86245cf3a87cf10ec7735738375d17c9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:348c8fad1c84cc45b10e7add9d5bb5c37057b699d6466e18c3bec3d593e1adde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:37bcb5a159c17e1241a4e5add6d5276512ce99418b2f779c1e2a976a099de7a3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5653e3a360eb8e725d483a152ef0510d5e1f7142666cc5c6e27f62965f6cd08c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:57ea23e19a26640f9e8bebcef70419d22c23ff334878e89d4b77a894acc2ce7b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0d0633b8cb1de498ee1441b5e28b4ac6aba808f6ad37d3c2bac9f01c94ff33ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:702219e963a769b7dbe97a0f9ea6a20dfd1415097dd6f38cf31cea657b1e4936_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:aa9dc51ef8366806a19116f700448b4c0ea9dc1de7fc9f2b8191872de744e591_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:dc192484377ead9c1805632aa8a8252186c4f5f0649bc30ce521b67f521c66a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:02a58199e4b61c2d8854772359ea02b3abe946e3e67d1cea7ff753c49b0ad3e7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:35e90ec749853c76f098be940be10e29e25401c6a1064a27843f09cac052378f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5fdb8a778fc61b0900436f22aacadd59f7da453af25b9b2eb9c22aca76bc9b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4554e982ba99a234ce6c3717e3447b817fc1c35a384e8fae9766dbb4f22b868_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:3d5ff34a3f9281202e3c0c9593b481d9b16a8321020caca71fa4e3b4d6527579_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:423f3c92919536202042249d0e3911b30e777ad4616ae8f6ca9968c87e14c33d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bcc604910483ac005899662bc05a597cbc8af51dd0c1dbaa05d521b95cc2ee94_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d76ee581c268ee313f9815c181bbbaa91f976c2da68a7a5dfd304e62f4e4a003_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:213608462f3f06ee113095a0b0be07ab8b1e8c194824a11f56c67392729e906d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5f1fd024087262006ea5a3a03b1eaae1590be13fede1f318987921df0c2c3800_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a5d235485bcf72b816bafa06ed24b596b2b72f543e17e845ac8b79dc16f88a86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ac8a2e047872045fba2fc0ea483a700de6c6398ae2cd184bfbdb021969d6eb6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:58dc4f0cae516c3613bcb01833e42399b2db12bf7f82c68701baace24fc77b12_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5c793d527449dfb1b10921bc56e8a31ad3d0f8e05dfd19a1782a67025b89879d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5ce2fa8d80f65f80b35fdce9568eb02d1a30252222f8593f60d3d2ab85ca9a7d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ec31e82b039af04deb6b8f9c13810a61281a3cedd616aaeb03315bd3abdb2d6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14d78d97d80007bbfb90b2db94a3d0aab2c5f73e1785fb27ce570cfc5e31c964_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5ed57df32a4594d7acd4e4411b009c6bcfc54b2e90a337f809b8a6a53e858480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:69275336a4bb1cd9093233541e6f1e29ccecbb8096673ad0b1880d81ae454ef0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b889a52cecf44d33e496bb09da6073217d856dfbe6fe78149669ec2af3dd4f63_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:39348b1628d4c75591d22648681ae23c441338241b48d2ed748df691a56dcd36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6964ff070c67d6f71068014ba253466e6ede36b043cd0f8e3908a32d91953f87_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a274ec689248b4fe3431501c0045736e3b24df4afafcf86ea6d0704e22586c27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ad6f9a3b78b0e98bab747ece64657e69f301337f4966e3f40d3fe0588d1a530b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c28651ad376814116ca3592e5df4853dc0cb04402d825a2d12812ea6df06a4b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6fa533909fe009e146d0522a95259e7f80399cea0ced183c308e146bc51fd9bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:30c988074c30420793cecbd4d3912868197661b61f00d01bb8fb86f4aae2aeab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3dd6b992e2620c2d08de3ac99c687a9b1562d1a46bc9159a14e34abae9d40f36_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1200e38684ea24ad9e98352ad84e3c3791be192f08f22c77197987e548c02939_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2fa632f63034c5e2ba411ecd6a6655da1f1b5cd65e05dd1c2063893c77fdfb9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6f9a533d4e52e87336542eaeea992cd22d2979888f7c96d1537fe89a7a186a8c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:784e009ef59f00cf7e127d811f2cbb30f8c4b5c489c9d51985c8385400ce97fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:3576099906e843ef0a4639ab2563ea90c9c875d6be59b1bb687f59cdcff0acb3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6d0bedcf0cfc56da79f55effbb2315fa7da2a126347bf0fa3b21fe96b9c3f037_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7aab0df04151b6970f04174e2b257a77615be9eb724121ff29b59347f8edc8b7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b9a4f7fc7ef59029d19640802db410d32d52a35bf7c8a5ad229ce1e0b559614b_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-69873"
},
{
"category": "external",
"summary": "RHBZ#2439070",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2439070"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-69873",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-69873"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-69873",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-69873"
},
{
"category": "external",
"summary": "https://github.com/EthanKim88/ethan-cve-disclosures/blob/main/CVE-2025-69873-ajv-ReDoS.md",
"url": "https://github.com/EthanKim88/ethan-cve-disclosures/blob/main/CVE-2025-69873-ajv-ReDoS.md"
}
],
"release_date": "2026-02-11T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-29T08:06:12+00:00",
"details": "For OpenShift Container Platform 4.19 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:4e97f1a9f5f5e751c7795ab6638723b064447106845f3d75d35b03a1a6c9488c\n\n (For s390x architecture)\n The image digest is sha256:38ce542dda6ecfabbc74da4052af74b63a2e6e00ba3c58ccb2e8610ee4fa3ba1\n\n (For ppc64le architecture)\n The image digest is sha256:1dc485424fa4a6fbe7864c44d2b527351d53b9f7d7bd24d349e6b25325624bdb\n\n (For aarch64 architecture)\n The image digest is sha256:4f700acd8ac54c1ff151c27ea9042606fef35a7874204732503656bc88e19fda\n\nAll OpenShift Container Platform 4.19 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013f0b271dc70347bae313209781261c76127a19b3a2f8bd074d170a84e49047_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:19c6031d8609f10b2b075201c0ccbe6f26e6efd03f567b485b6b327a4f6a7fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:304cad693bfac84415c3f6311edf8234f412a4bec7635178c963e2f3fda74d44_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ee8bb516566d6a9dafaa65ae52177421adece839dd4db80426d3d2ba30a1ec10_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:10093"
},
{
"category": "workaround",
"details": "To mitigate this issue, disable the $data feature if your application does not require it. If $data must be used, implement strict validation of the input fields that are referenced by the pattern keyword to ensure they contain only expected and safe characters.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3198e3a7911d65997d84ae2c4a4756213bd6169408f8e5b4d4fcfc1312ec221f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:75b581b7faaa791148cfc9a5e5b4c87faf3a809d2baa0fbcec38bac757007b49_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:af1751213d6286401c0e1d177bb2952715b50a255dd0072452cfcd1a239c9be9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fdc295c04d946e1294cbc811e5ee20827cce284c7a5358c9c6c926f5afb5fc7b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1fbf0bae66e3d3feafd7a5d800ffdc203ad1171d41da344c7bc899fa9df0c439_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a83b03a6cc820386376a5e0b5ac0bc43147338cd0f77ba6b20284b93cde06b63_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ab5dc4b258e7a47d4a05f2f4975324ecdb53481bf591d41dad10543be93ac59c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f6fa7b17816eb0b9d73c00dbf4715a26458d784e65858ebba255b032a5a2b3f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:565239690ed2974560e390d87055eb74f793a4d2abe8dcfcf0d40c4b1d3e4334_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5769b6120ec44707f7b98ec0ba5e90dc8dee0cf14a2795a0785435cb01711fa1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9640a22ea7f43b46c281d8271b89480a9df2b5c9ef500b3b9600c5373ebdade6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9e682bfd352c260c9127e3f2affa6dd16af28b3abb8ee7303753eb0ade31c1e8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a84a096bab105b8e51bdc5f2d93c011a8a6a32e0ccf5b3a5ee2cbb2abeeb2aa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ef77e97f9b16035db985cc79029fc5c3bcd6004ecaee9fec9c05e354ac1e599_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5f3011e69a519014b7801d2acf0897f95635dbe17492a09216673ebd4a1c791b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:eaa84214ab82626dee31c0f652f6d4d980065a920932eb8e69f2e078c8fc16b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2684c0efc9838adc240b08c8b263d829bec71acd381dcb4147d8c45eb1d08d08_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:31b01092a5183808a2a97430743d04941f034388254cc7007e74c4ce3083df25_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5699e966b38060569e298ccd084fe89bd719302ca70e2ceeb4bb9b6ca5be8991_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d052315ad81d7689a02be445c9a1df8d296fc3c32a33e3975dcc4297fffa2bfa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:4b16fcfd326efb0618351bc9ddb2c3206b18e189c188e5c9fcf27f3ca8f3afa7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:511bd02437b2ab8480a54dfe2ed3e8c11c3d9d2b332212cb455c8540678665da_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6d971be6c49127312d1568f9619c9f4684254c64b77a047f6e24e1caa83e9416_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7df6d4e5830f60779a607ad0ce8716034f168d5d9c6b563bf098dbdf3b2fae05_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:274d4e7ca8dc6003a3d18d931e63a4a0b4d5f80582351fadccef4195de8b847a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:2bd57947814981b16996f8d12e40d5a5670dad3eae9fffbd57e700c39c1b1155_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7339fa5d4a95cd617046d6dc06a2e97b78c2448353f2ee464095e787a3a2fcca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cd93cbcc8568e8bc3965cfdf4c989a91782a08c38c6affb64a0a3121fabb7075_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:04e57127605538ba40496972299b81737cc2e5197a2ec97fba0b34d74fc9ab5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4c9055e26a32fd7f824d0e0c5dc605c6e59ee22369812ab8331f7572e5154ac5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e8d4c571e3c88206979f8e3c28aaec2fb961b028df0d499ea236c494c0c4096_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ffef56a2b3d651b521f8cfd8024babe6fdd9e8987df4b37fd3d1945d1dff1a64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1dbb201ad9ba579d5fec8a6cd23834d0c1ad9c4d44927b1c90ae448458ecccfe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:2057e81c225d137b781788c9df16ecc5bab9a103a029a47196b9e2c53d4171bb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d66f70ef41f4cb5cabd1e1c36cf32923cd0f228687925ef8c1b08348dff12ea7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e61c5aaa06056181b140e49b24b25835c806df7a51efd7597d3d29c8504dfe3e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2dade7bac074ae0b6d6b8a47004a3c534c6b1a484a822c45001f5d4083742aa2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:40132843fd968f729205f908824489fd67b9b0e5bfba1717840f661147af6adc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53c8d86e293208c966c8e7e4fd3435c9d8806e97ebb31c3e963f26456fc38600_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a310f85c49c19cd35070957d0621694e30215432b5d01e035ed3e8242f82c283_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:29247ef394a58b75aabdd5cc168e578fc2347c8e0c1d779b7b355848a97df2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:795a0b596a024d3793c0d211f8e2acf771ae79d4c5d47decef1facba2d5a318b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b5277a1b6205eb2ef3c75d691272da6f070b2d10fb1f27558f9241941471cc8d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:d2acb9e2a03e0c2873f562605b1e9c9d32215d1d9d265ce18bd262c7c4263f20_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:874eab1c9150b030a11a0742589008c00cd6f8af8fe188ffbbe28ee6b90f7bf6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:9ee41a2f3a833a077416d0bdd181d767145830fde45cc6fa5c31196ef749b1e4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a2dfbd0198e34753e82c002abf31d92585dff3b8093d77fd38d8369cb4c44ba9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b4f9122a9571ebe6e0da7465f498ae3e74cf7c77dd6062a675105f4c437e29df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:054e6260810a05bbcb889e80cf6a4f3668409bcfaf6302148c1230b443fcd8a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3d0ceefebed5e66f56692e62fde1a1b435cfaf596932058d0f2768d7141b6bc9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:499f3d65ea6972937bfed0d482a782ebbf807c4c0cc369e81d53dfa72c591657_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c08cf8ce6baf72aee6019b7318106e3a02e635f4b385a71a2e58387e706a2cbe_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:97af951210f4ac7395effe942732418e9999e7b8e54c9db5317eadee25491b3d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a80d32903c82085a1904b088453a13c88202d53c26626a0ad3663c784f36230e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a913a01a437d7a6d0ec6cd6eddccf25f064e161b07ed3f9fb0510b485130df08_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbe31a367bd21946e4dc641324c5091a85bf3ae3befb4f40bdd59b00c23bd67f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0d7dd7c2f034bca5dcb69cbf5d8e1989e10076fb4187e9c144201b2afec28a2c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:11286a96806113bfbc34db1b1e230fb678f11135da1809bf7162cee01bfcd267_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6fc448b6852cb86de3661f170f364c99940a004d1f85f9e0d546f24aba812fad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:82b0dd3db731b7a84ac6b7ff11c2407ab0020e30ef04cea06b25a007be5cae31_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1aac0c8d30f9ceb91a9ef3cd76fe90c338568b6408656687fe168a8c9a48d628_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7062eb071701245aabc8f0839c966e7b4b5fb1673a0f5713b44d82cd726f3ef9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:79de159f6b1033732145619c507f29b09fa50f2709fffaa5a10f6554c6818651_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c56ca8e906e3b544e0dbdeca92c33ad8a7b0a846378e3b6c9ecb050bf60f2d7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:11c374a767b0cdcb1eee64e69900ca970dbd67f814a76ce9648f578862db2dfd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:1ae113ba4a4f5c2e2d9a2abf69d37ea047da7e879486ddf25303ab709648bc79_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:64ba60275b58312a1a2472ddc46894c40e746014eef5ea4379f71c0b6d7c96a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a0a1e7e812c0f1280e24cf4feff8dabaf299f110a8e8e695dd2e3dfb98c1c698_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29de1fa9e82a64eb363bfa664dfac943e9531a5cc46ca5c2e2c41b93d8b7fee2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:2eee252e29fc035c3d8b5b91ea2e08a63d96b9f11c6d29961cb738cf1ca73d19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bc0fd93c51986738cb1f49fa4a31f066ea2ccccfd45c36a2ae7066244cf1e351_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:ce46c15516097e435174ffdd74a4a89f1c9d44b256f0ab5ea84b846ca2f339d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bbb9f7761a83c0face258f4c056fc8276f1e84e37e533ceee3cd1ac11367ed1d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:d23edb6ed5bae7f0f2be4e09cc70e031579e06bb2d42cb1c507727c319deb38e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ed2a405c06a57740f0f44a8c3cd9b7e3aedd0bfa372d85e06852082f4ce87ae0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f360847ce5b67a5ca834ace7da710150d47786dc10eea85494e467cd4d6ef908_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1d3073d76a6486e752c91e90ff6030c0c0993e9b09ca8f9efa44e5decfd52d97_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4c49749a0ead346171f842c37c832cb6c2457f6812fb487728d561aa85d262e9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f1f47f29cbc61ddc25a846d4c7d9caa18b91cfcf0e089989883a28ad86b1f2b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fc01321fe5597aa44e732fdb7e99670d525a47dc7a0e0a37546f4b28fd697b60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3b5506219e72fab36ad67c982bd7f9bd2d462070214a71b4fd115ced29aab710_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:465009fe0147ff5370183ee02173f430d0b9cfae5d579aec78bedbd3cb9d5dad_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:607051d5881ef1f78d6a62e3ebdeb761f83988788f7898d869482c22773dbe9b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f12bc532130dc5fa8c8392d3885bde80ca93ba9700844bf9fe54f4878ac53f46_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:33e52f2ae99d85b6fc05d53efb17d0a72540a782a33fa91e766fe2e47a878a9a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6d03501991d6fc5efd43a6c73cb0e3c8630db1f690bf07253c7e7d17a3de07c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:97598836bf560759a9ff39d9675e5c7f18a03e14500982e442ea93514cbf3677_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f24128b82f5c31b4eaf4f7198e4b8c0c702588f0568221b07df121175066372b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:671d23e3d686856a4d47efc6c410ace8deffff06134c979c042fde8e9de487a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9b9e3e354b0218bc54258ca7a8f7117cfe164c2311965769847e83e7f6c15d78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d59d91a2af93c1c7b2dd66e5cb98cd8ccc29c3c64b2cf016dea1d2828a6e06a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ff08f965b67efb7ff451665a77a7bc0f247cde4ca9038d5558393686bc037c39_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5e4971e899f775e21b6e1a91f00f633c9467d31bdbf4b71038be98520600a625_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ae63547bd2f56fb1f1efe75e17413e43cf503fc7089dff3fecb68d2fc50bef97_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:80154aeefda9559b46845fb40f50aa723f75f29485cfb4846995d08b0c0bceb6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:fe5558e0b36855d11e4a57511f878702f87a3d907f79bcca226e99a0c8052628_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0ee0d97e5b746a6df7d95ee4ef32075b52a235cd285039e2460f6ad084b1f5e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d80a021dbf04d702b2bc9736f036c0436191ab4ab3510749ccd03c533e9b5aeb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6898ceb180df4a46da74c974cdd105e3bcbc5ddd1575e3cabe53a43dc676258e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d4c950b548bc3ed89ba8e5e216115bda1600c67d5c35fc9979fb4155415a7b42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:39af594e6f2fd164192c69bab214557cad92989f21e059cf66f00e455c7f816d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f94694f0d2db1759fa507fdde4594e6b4025a61e3c3f8f2e6caad509a77f6709_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5033eb3bcb9c08972c36d6e19b8d192d85822373e76eb3b54cc9168d86ea62b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:a9fb56ddfaafe28542fd8a824923257122500903fc18626f90d84b7e9b2da856_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:0f4d2bd2755eb5467e25d30ef813275b15ec77c1433d406250af5294b8b49f55_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8a2d63e97b83cac2d12e809ea63398ba1c188dd996a00189664c5dd009551860_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:10847c520f582706d956c48a95e6e2fac51cce89aa8a3d4fee316fb1ec97e140_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:73d3bc342e17226fc6e47dfaf448d09e394ea53ec199bef1ba42abf3e0be8c5c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:11f214e396caf556ca08273015712fc739d1df22b550812d079ef51af642d311_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b8a8e237f5827d7935e0dd8dafe0f59157cdada056580d74feb4ac1b9e05b683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:26422066656afd16e5e36afeb7e4b5a92cb6888d550ab0a0071da9a198f290d5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3a2ee96fcf0963d55d4c1b6ffb874be6c3552ea0b9917b410976bd59e4a58efb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:2f41d30f61ee12bd34b94ba6d37a517eacb2dc4a51c938f588a87c1f4333b924_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:b49b52eea375dce5ee2b1fa3aca1facd6ed65b94e44ab235753eebfd917fdf58_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91e0a641719fea07fe1185250e91b13f8ece46fe371bb603308306fa9bbfc5d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a0839939275e2b68712d77224d5a7612b10a1bf0152a6f57050f179a1c492f70_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:bd2d266a384c88aeff5ef7174ecb532b24aa2a9d6d17a2e5c01ec384102571d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:fcbec489ae513f599fd533e30672085aacb0f937b7d3ecb8f97a39b24d0e3143_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a37378e201c50cfd94eddd0ca6163650e8af46e7c3a4f97d821aff530ea5374_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:22eb07d776eed9b364e0f8843dd2eed75c4295cd9c5d3567cb76b5e5ce20b725_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:73622f6358a99c5b2666edc3f8b680b4cc3906e2f198c67709973dfcd7cbb0df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b18d10d989d149b9bf1e94be6b115ec3445541d5d0cee0358b0fdaf634f93378_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d1772e78e5b5aed465c12a05548f9eff106f7a1e00d3d913830f8dee427fa4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e9ca0475950b50db7e62be4c43d82cb25734b00fb081359208323067c511c19e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f403594cab45dfc4de5a1fb56f8c9cb8d67ee8b8da68ef64487ef45ff6578236_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fab18be096158a97131184f91230ca5ad7a66946ad4ad527c224f279a4d413f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3e79c9035ffce3cb2f835487bd144c0976dc407890016d1fb86d1f1dc3453ed1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:70c684711eaef0d1b4f996d745c936f98707584a54b5d9920b8c25af4adec597_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8371e3f60ff9846b4249201911cad68360c81e944f753a6eff72003a17c2512a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ebae85f444356b6e695da3e3d2846bccdb8ef037b8cdc77f94128574531851b5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:0c0ffcda769ef04c9b46206aafeed9d6afe4f82ebd46751aab4b47ee6584fab4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:408f3dd8943ad4ba2ae37bc2708b698e60a150e98e1c0876e46d088832ed8d24_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5cddf09377c1fda878639186f3844bab8833fe3890f3266c79dea36faa4f11e9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bc7f21410949e77fe85c5a7330548b893706c2471d7d4e8d5c6c26a873132263_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:283596834104ae59f2780b8f0d61d90ea6128c4b09d57da03e05414203ee9245_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:53eb49907793916b8c24463ab096e15d14265a19da7a735a38bf5ec2b9625a79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6ec2c12950d227467d95fb84bbb1f9237cf8ea00b0a414371123dc524e94c71d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9fa52422e5bb14cd6eed3ae6d2a3c0ab07f801e6f92493ec59217025239a5121_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:089a4975c6964f0c0a435586733b9fa5c3c9c8a5e139580f016f7f69ab83da27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:950bee80200f2d9bdcb3f07446eb6aaebe4b31642990272178441b6f9e56a761_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ba71968598ba3fcc8dd2d9e3a861484f74804828ebbe5b7251da6706b4cbaae0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d5513c03787f261759b02454de8248faab74c402a7c8d9e948f469181dbb786d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56b40826166445e18229752bbcf65a4cf498e30c4f763110099e9adf1accb209_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:62a48fb1fc6545c57e524b1e1e3dc43b9749c024578e5266defc819d46d264e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:aa2333d5515daba8a887e66ea88370041a21a6f3c483bbc4e2bd888723c25285_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:d61549e87a7d32c426699db0e1e7f716a575427c65493f9af953a74581ce41f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:328589e1b67b3322968ac4f8b57193b936fbcac1317136e2818f8792e76a7d0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:362523f56123e0d1b18e7b3028db4d883de2c886e5796e569bffc64118577ca0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:5b18e39a6782f2bac42b00c42d88a05f19d1740d49082289aaac11aa07a48f35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:86961033ea238cdf3d061f8aa811f4559001c4e047e98165b00a8f9018b74c2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4056b49b2c42986f94456c5c3a5df02d04f8a08fc4cba8b957c040e4590fe581_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:94b1cf74b70f1ea57d939327a45cc2202783f1ca1d098ff27ac8aeefaec8f2aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b7acf9a4f00a5134eb1810f0ea70fdacfcf56549ced88a80b36abeda4435d925_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d43c576b25a46f4b13aa9968a17c93078c96acbe364e2fc13e12cbeeb334e796_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:020cd17bf8debf39db376f9f514901b1bb882de052631a01814812dd0a913f53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f857a7dde34e1082edf0e26f92be3ead9148a3c581595a5a945704697d9a9e8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ca86e79869a7ab48486107e3637aa3953201ea36b6b8559ae8b2a04041606c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7f0561027732ff639f602c3a24d89894302fd43879370658fffd01a57a99a1fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:077fa69807819b9cf9c057e592c8e75c8108ea09cb2da43d7c378dd76ae68c51_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1493ba223106394c3d89d993ed18f37af46c86aefa50d2a3da144d1ca49d10cc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3d6a4223a99f958f0fa1c4afa6f1aaa7a584a996fd95140c1bc151eddf215c57_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:917aade90b9dbdb7c59ac5c85dff49ec74b29a27aa330352c24680a6987a9a7f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0539cd95b403a48c3ba7a04e3e27da96798e7e342bb6696f65599c693a4b4297_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0a3991f02157723641d576f54823b42d424e612837f7871ceec21e40633235c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:60cda39573f604f52c427956ff45e8517e498783efee60cb8c7804ffed26a465_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a564cbff84b987d316d891c033ba1ce2299d0ebb655452671498b3de789b6f02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:23e8f2481d7c5f71053408be6bb5831e6a852ee4c9428f2e72403b6fd721068a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:38cceaff79e567296a50b816cd81cf60c695315474c62e0b380d9d0ed253eebb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6301be72ffce6f973f70fc6977632499d2930cfcf23ef6e477af59f3b283e3e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e70213ca82db398d11de723f2dd463c196059fed0639ccec30709332648efe78_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2bc4240c6a9f5abe64db9b36884b14d0a763e93a6474096e23a353cab562c400_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4a524f1fcf7c5710ceec19c651216c326ce15290848e4736d504f3247a20e1eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e2dd70d80b53776a74125790edbd091dab84b8da27545e129f9ac99d7d5d4657_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ead5377c32eb77ed07c2285ce30eccd930ee6348d19977ec8c7f8050d9b0ff04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:27a4c883fefa0bdb0033fc23d93875f3eccdda559d2813fa131a8ad3b24b9356_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67182434ce84ce97c5374f5ab962a79f67777bf02f82ae92be8f7eb5d0c2b85a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:8731368ad974fd8d1e5c954284fce9346912eb4210b01e01e6fc95893320f591_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:bc7dd594fb0d5018aa4dc0d26653f73d1859d978e07f0a1939189c5d2d654895_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:20874645efadc9cd5b6a176a6d76cc1f6ee5175404f7da5e10fea3bc98498ede_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5854e872994fcf1c4c534fb1b64f7f24ecffc120b177dc8079056b6a420ae698_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89802f2938cd3444ab90393b1046d61cbd3d05280432ea2390732a0d0520990d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f6a6951136c7faa7b9bcd0f6c892ec9658a2fa8701e0dec5e45225c3bae52bc9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0b54c713dd339589a9b1fc5e109a7b65117139bd27de833ced58f9716fce95cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0eae1a64fecdc43b68370d99fb14c369c5f0116d37bda62cba7196c0ea002116_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6b167e1a3755b0a2362ec86878e5614ee29226fcc956b2e193666a7bfc47d44b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b97afe9ff8250ec6647976373edddd171f0b362ce576087d8dcac7c4ea4054bf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3d7227cef380afdefd5f5a05001129a389029547c6f5ea8dba4fc46e20793f23_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002f5d99c5fc748401bed6ef7d0aebf2fb58d6850e7d1de4df622c84e020e87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e8d8d468ce7f75b0653d4b3e41dc63bc2fd7e231d32bd2296d08155eb258349e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ec0e7dd227d354544a2e67dd236b93970d393c87c1d6093f8191b9141c40ad01_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7807ea7a4377bbc2df491ec5bb74d324eaa66649fba9f40ba46957fe1a758081_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7a977b59ab4f908549ad66c89473f9dbb84e31eefbe6a8dfc92f5598d3f882bd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e10922bda03c19bfcb9e6b85eeb3bb0e5ad0ed717375c19e2a31c94940ef74ee_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e9101408b3219a72c3e43b88129a6bc6918df42b116ad18efce8c7a1b32e50bc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0618e1978b5b4ac2a90f578af3b8b1c471ef922a3d01d58d413215aae8c5a509_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:164e9edcf185697cf77fef80a7b26eaf42efeae25aeb04a91a7e2afe8299828a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:366eb47b3cb6c42670ceba8966f0ab119694536fb2baac881685e75e6615dc85_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6afb37d303abf20e6e100a4e472d782d6bf063ae6d131852a4ef9cdac53f7dd6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:28b92b175c80d10b33844a1466fe71cb48f48431513dd0c634f2ced57e0fa5b6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2cab2a6c6f64eafdc588cc11a5537e1a2ccdd0cb37eb84507c985cdb79855e25_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c8322ff72825fe9dcc1c4446c8c3e4dd73619c15542d7f483642789e0463fee4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d3ef2745733b13faa31084c3cc345368c89f43b80b2a76e5b10fd7bfc008bcc9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:6ca65a281af1b92df6872e052381ccf15cb51c4adb0ba9afca4c3d3041e9d9e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a387760a9151eb37055ae66aa4821ee114125536324c3404a1b4c7044beebcfb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b6f9dbf0e6927d43f45ac8efcad6913ce67b663747d509666cf0ce87455b0379_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:f7828b8fc7d451c4b252b52150b2278d310e456e4b06de990bce9d123d923b9c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:215cb8bf8d6ed22118bebdc28ed8766acfe0d8bcc2c5e8311d3b4dbf8a664d48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7077e9ed025326ff3ebc0277b0d716efd46bfcff079442d777dd572c35842ba9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7987b5ef6ba2b7e5a9fd3be756c5cab95cd2464af7c9e8459d00e527609513cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8e5fa9f4eadf03465802101457da9e3a618572e47bf8ebd2859e9b1c50310991_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0d11910863bd5a411090ddf070c1be9d58c6f8cfe94eaed1c3ebc9cbe26c3cf6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6ad8362a4cb63bb7bae0e49db53ff65fc60a16f01a414e9f2ab540606a284b08_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7f889df4c103d4fb66fdb537989e34f139c953344fda28b60920feafeb1964f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cadf5ebac4b179bbc456ebc6743a061cb44437675a0b69f825670a753ff3fb0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6d5855d82cc1db4c9b87e58fdcd0133f56d26e44942787c74d0cd27e212ddfba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fe02ef18800c00ea33cc42fd3e7bb5d5ab2855499250279c785ae222e69f537_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9bec401a9b520ec096af6673657d6265501df64d94da332e818eaab70ce54722_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ac7aa75334ba6e157584d2fc588d682c9c841ddb1cad9d03ef0df96f7274041a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0077c7ef1053ca67c87920402ca1cbf21bf54626ba4046031528822a176e0875_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1d103663fd08d4a67877ff23ec32b2d16e290f2cfa268fa89c59c3f296c3b080_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:78baab63d2e3ad8f17734423f5b10cd137d944af647104bd40401f433a9ea996_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:7ebf3a7acad88ffd14b4ae54a1a8fac1eb1d22b6f102216df4586e544d2fe1f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:07ced40602810c0a35ffbed0e120a396076ff01e1d254ba9488a8714d766319b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:080a99a5e9663712b898e49ea608d1195c8e113753e23e403954fc0852e2b8da_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:125008a0bd8a64e396b32583f34c77e15e45e212e7e623ca20f418bd89cb618d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9b8c9e0dba83ba79ff28bda01050caca261f0e723e8f222cfce4a840db29e300_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08c33ef6a9b30a565ddad8d93b0529ea8a7c29a6e0f403cb0f49face063ae162_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5928577bdfc2683410ba93dba0ec9106d1ab29bce79f56a832c06e00ef82fb48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9f0fa62bbcb4f5b18ee1ab7831d634e2faf5e945e94fcc61a204d7a4a5d39d24_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f448d0ef7d1bd805abc57fb34fd9acdae51656851126b9abd3038703592ba4a8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:21000531fed1065562e8e0d275bcf48eaaad2d35f54e81e13a03e9dbe22fce2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:41a99736bd8c61ac43d9cd84f3f21d4d174851c81e2a4039263b81d0cb3520e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:95c36149f02710b63a6c05bd3249027dea0cb332ce600226b6a7aebf4ff73e38_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:988d7aab9c210f5e09de3488b38758cac859c4619f8e8d715176c60b95993ee1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1dbaa49ed53404150877894965d638ec0558f4e17bb2b0d70933d1e93c26b713_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2bfbea264fdf5062c9454ad7efeeb799d1568071ebac6195c8138c171dacde67_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:a7a07a455ee7e89c4702fb1f15c7888945acec38d7ff1cf731129b098050a591_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b965fdf100922a0b263f372f4757fec562f0b48a8032d2c7090d9c8f19b5aca0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:54bb0200c75df26bf82e42db71faef1dc309be87095afb5de60e39d2853acd62_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:63d7e09d2367614dd7b83c41b35b538a6e3d98fb49c03a103f31355202528319_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:9557a3d19aec734063ea30485f71fc2f279b7ea77ef1b2d1cbd7e98ebf7e2938_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:de22ad5dc832ca597947d9eebd182f01721908bb26f8367e077134bc442bca68_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2568dfbc55a8a64fab947b40e160757402d1598a563bb1ea7a42103d2e6c049a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5044508d683bfb7c1fcb538293e01a54e21360f85dd3d6b6d9150be3571e4604_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7f9d5ae402c429ceb81c952f23b0898f4f768b048e87f4c7c193f970d83248a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cbde0cfe56b953fbee3a2fed6ea3cd13e6cdb0dd0fa74414b488295feecdf5bc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2ba313bef314b9e69e1b2a545ab54b0fbfec2d5a6c8b558dccf18abaa7d7e33e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9848ebd13facf8daf9ca0f32295a280ca5d4dff1d48b9f3e8c0b249b616278aa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ae1bc048acdaaf5dab22505faec4c6b0c582b97023409da8ceb84d983494a0b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f8a862ce45dd686fb79c68036e611e15ce84922dfc64f847abcf6b65aa55742a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:11d975797a78fdaca7e28cc15699aaee700b3ac8185bd5d019ecc2a51980ef10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:40debe8017daf2ff3c5b17e89a4ab7e96cb717ae7bddcec305fb1eab8bbce0bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aa195335b903dcf873590deea8e425735760fee97ab33c5b648bfea1aacfa894_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d71c752e32a996fda35a49d7c7ab959689a91197b0e229481891a03c151d48f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:666c36444702f862ad1df16b8dc76f3a8f7b4eba8d63473a4cacfcd34c7ca914_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:836090b24936b955f5b60d236ae328e50ac91ba3cc367249cb5d7762cb15ebc6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:837118a81cc9bdc984af5e9a3f4fedeae4489ba4aa98cd6513dbdaece6acea61_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8bcaefae8c33ff10f758558796e4e90193b1ce2ad3ece24a21ab93a7e685dfb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3fccc681700104f6edd949e78d406f8c10375739f4ce8c5c23c9e85b69b1f201_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac846a2c18b90026c941cc2fcd91197ca909f985f0cfc14e91fa8c0cf2b10b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:96f715b9440bfb17ea68aa161b833ac33265b372e174123bc10dac3eba00a872_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a7750c02c168c6243c3cd666816d5a4be224e3799d9f7d626cf7e64f07cf06f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:32286da133273dd699de38a8ea62c46b66fd0f0271788ba6b205ce7e34fd5ff6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:34faf675b9e5361a23ee97d02ae1257feb38fda6e287b3b2c67e0b2e4e3ab06c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:997ea290d800e3599f44e72cea8bdb65876dba2483d486938e2d024b1b9a4fae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b329d7566ac8f0b7f45be16a1b364e249036c2c8f703af70c9965240f682f808_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:309782f6dc79d9760dde0265959260871b592a5586bf4073e9561e813f316816_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:529879780fd60bb296f0d2656d7d5805459827820b0b07e839909032ec9fbc17_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9a12ba31f5a9e9e4b8114ed30bf9a067cd5b92430c35905224899a819c627741_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ee31620709847e19ee56a6187986df168cc55a41e86bee1488291ff6a0415d31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:16f45167a5407ccf892d7518ca3c7a9912d5d0cc3f07446cfd3a1de175e5321a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3ec816ffcd991bf5082f28a7edad858d9b02cd65f8e23ca2e320c41a33a0cd79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:50e0dcc3cf9d804afd0a8a3f633f36283817569fa1f5b7cad47db6cfc61c4a48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:af6e2eef8ff2eadcff4cd975245ba0cdc56f04931b248cde6d581d2d17582fd6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29b6202fa854ec12e85774564ed5da58d314916d5843aa6032428c3cbf97123f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8c019754ed9656d55c293ce39412f910b0f3ac833615aaa03e961183c4831fd3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a985f0116d10743bdde5e34fb181c4639ff0941caa66a3590713ea5d2586115c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b01b10b5836dae32a5b9938ba42fd4db2ae33a6b311da4e0c54ce0e48668ddf1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:64a243eb83f743985213e3c255f7ae58909fd3a4ab69bce80b30361bc9cd9225_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:995d3fcffd3f156dcd8831241e80223d35b6a150d9d72e89bf639b6ef6f2b81a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:aa7c8a340787569438c3c7515d62384f9a5ecdc53e400cc6768bc92c940efda5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:ee434038f9c8039bb2e2729584617a8d1b2554cb1e981f24a746badcc63c9022_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:772cccd41fa1d467cc54dec80bb7de08fc746507148f6220360c89f3f731c31f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:80c44734612ee4b1c13c995b1583a317e4742755ddd9ae515d6b9c61ecb5f152_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ae27d39fe63e4d5859648c7cc80b0fdf8ab8072bb8ecb34d21790552274a7abc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:cc9a958fbda1e4df8e235a0ae4c62d23e2e02dfcf25c3c18c3dfc8bcc787b7f3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:223602e0d30df9f086cec5c4f63562fd46f46726c44e186a5fec80f57689bc24_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7099a6800e9cd28758ace736f2c602a223f61dc00fd45def548e6d9a4bd23539_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:af138219459f8f23471300a38c65d1d0c580ab93b30c63798d51e8891a948afd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d7da61ad815088b8c671d5dde3b5878fff0083776e1618c3a11594e6f08c26b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:18eace0b9a62e03ca9e882c582a3ca9362a14488044b9b30076447ce3731206b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2dc26c9c7dd35b78f4ed2c520337631bc45fb10076d94e52d9a632dd66982765_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ad7c164753be2cf26a2c69aacb95f5d91e5b1120dac43cb2ec505794fd98fb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5b23ce65b543c607e5547f2bb71866255794752a920b7f644fb203086cabae72_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:385e0ff7ff74b73dac4393c5ed5d700cb3a1289d501917dd44a6adee10f492b9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4393f322b7404940430e70469c0ede12e724564e87c3359946e349cea2304a11_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5ba8673706092251814d05e8dc3d6de7e74faf5829c57dae0e3634cb6e80aec5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7cce8b979af738044110eae0d3f16db2e70178b32b340b7f98c339c6c1c80791_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:070167681620cee73ddfffac875e999f5a32c5ba48fca753ba907671c70e3ba3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3ae7edcafadd5fc3a2ce15754828efe17dd81a7fe95759f5d10fb843d8f0cff0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:4465d88b33622cf161e2df43aafe3fbedbd4e63f833a729df6ec5d6ffbb23b1a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f0dccb2d388210d13763e44e7aaf06712b1c463b73698566b32665030a881dec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:60a1f3345766ea95b39394925fcae2358dd8cc819a0f7b187363bff9f3bd1bad_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ea484b41505f1e5b8ddade45cf6f89e7b22ad4b81d740e9db3b4263672611398_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0a527723fa338e5204f37b50f7c3ea7f46055a91f391aa12f5ff91dfc621b45b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6fd265148a4fd19ed6f39345ae982687a6ccfadefb2dc96af15737550c46891a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1df097f85a3b46c3624fc2b59b6755ec1dd1bb6843ce84fceca2c40b8af74eda_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fb4965e61b337cbbc13b082ccfc8ba17f7c98e3a9946a2429967203a71ab5ffa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:19233828b527446a7c210823b43ab95d309ed58c124ce07bf2cc70f809a6abc4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:953d7116656841f449d6b295f0753a0d39a2474b3b6a4b6d6240d53e357ff86b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad08029d8e31a6c80b9d25947ea267b78ddc0e7f3a97dc1dbc075dc4a02283ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:e163cc3aff166d01ced5f33c6f5c9145a330cd35a7f82538017338ff9ac43f19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:039ccc1b8843a4dae1d65e616c23066e2e921f5f4693f52a6c6a9e0091ee298f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6c5f2e308f308f3892acb46179df4b6bd460b234a416f4414194005cf915ef5b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ed23039296c3dbd7ddce99ee1a538b7b83e32e827932e3d00b929d0f9de13a91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:efccb4622508c44f67b3693732b8da8bf28bf80097723497289cc3cd3180d19f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:77dfdc4b6e35954e750b90627d720a0f7a3cb6fe224459c09f5de359c589f939_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c4ad92a5a5a030bd90ad8be8df3914f70dad8fa8e2c984144791685c7150132_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:924c6a190d3e2ccf26e3486fe09b892629736bbad223bf608cb02cc4ca2b5991_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f75d1ef206cef5035c7a4e2d0f8e73330eee059919cc4283cf0ae8711a3e7865_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3daca8e471b071e56c8f9551af5d9afd8c2eb1e29cf87e09dc48214cc885e262_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4a3b3272a261a24b3fa681898aa7d0c55e8a8f67f719200e05e580b0606c16e4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:683faf9d19ecd98b5cc92545e3628a1049b13156136f86626896572e7401a356_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e294500f174a12001306f888e6bdf9e10d3d30bf8554bccd5c82f1227de196b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:08d7cbc7bf9e4d19e36b4fd5d27040329982b353032c525179227c3e15d30f32_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:58b18bfb4498e2a7890ee5979598decd1b9692168ee10ece35178e9c2191f430_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5eaf2d7d197bc327adb488bf3514d2ce6886900164bb8a7e3d8c92061baeb783_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9728bac89d23922ef66913d370ccaf943465509f8a068494d517984ff490f707_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6257b90eaa900f50cee0d5cf84c105158f70d9ad4a9829d5208cc261de3ab5e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:7b851c7bfbaaa9227d15850922fc76f76bc517f60be3c984e23d339fc2091eeb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d6142179c8354154a885955351e093aea68de58f0cbae8ec631da2d3d8cba63a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d939f022cd84850c27b617d17d71edd7dcb549908b74ff92d5115dcb5149df28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:530f79ee436e2ba7bf71f7cbc3b62c3be81665f5207555dec663565772158b99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9aad9fae53a218cf8bd83d50b3df6163a9f0ef6fe742a9527d0cc267fc8164a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c43b8d25569a9a26f77e1c1b6be0fff4467a9dbb8117ff562c2e650a2a62aeba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f0b3d8e6b527fee7bb63906136288b117ae31a38ad93aef266b7e0d84dff4f5a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26fc6ee878e8b9b76a61d203bfd0e01a61175ae9d6e350b4c8a01afc8e388080_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:93b66467306d137b06f29b307a72f45eb3a9149a15cdce0bbefd93a9034de3a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ada0c79488c2d4b388d12f9e4238054ec9e038bde604659fc70b1c368ad36964_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eaf2dff09f9cdbb55d3486888f5e18db19f535767aca754ea0ead9129bc6ca0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4a738c52c3e5bcf3c1d94b679aaea8e91b3cb3a3f981be534d8ee1274d8455c1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66d6f7a10465049938e81ddc1e4c13b2b375b2c92b39af99b2c7fb8bfe2d5e3c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:75e8df980f8d21fae7af1185852e235db098190d2e3098c7cc9086236a60eeba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e819fb1752cc974f7ec462dd49c52f9575c7b0db53f8cda50121ce1a391ef0a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5c0a5ac804bc8bc5f5e368bab64945e8e6b506358e4511387869f9bf458ba3f3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:9f541ec9efd0d0553a8648c8048c7b91854c3d8419e07c909e621d2ff5276c60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:cc987d4c88966417b6c45bc66dd878cd885b4805c9e2885fcbaca1734e7bbcb3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e88d308e0ea7524be29e017096eb77ca6df3c8b3ea58a8a6a16dd7fc2fd5949c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:231178be9e1d4d547dc7705f82f8e529672f47786de781ca53424543d9b1e073_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3dc25f71c79a131cdb79f72e3c6bd2a3c987728e52d3261c5935f15b1466150f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b05e21c1862a49132611c23c1c0b589c5ee29b98ef5711244a7c32438f55f7fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f1a5782a8202fa153b78b53324954109911991dffa9d7997229da1c6ceff7d45_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:17bcf0374c1cdded8c518835d832bac6b8ca75e05efeb0a6528e0ee49643bb35_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2873f8aca5b0ead479497c023010d6cf324fa893522eaa924f10695a63c1045d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ce52fcb8c19848e8fc81e8cfca9c47e1a257339eb96e6a5e4d214066dad9afe6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1f93b71bd8b9bd62776c67cd5c41b93f94b4b60b58a06625e7d57548518f3669_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5599c06a31ac2bdd1a8f190f5095a1614788b2aedab9fc4f454cdbdcff9bca9f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e79429feca8812a6d1bb6316906b670ccbb89c506d0f47a0ec8568cd9975a479_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32526be8ad65ea6e3f70126e66ec2494364930f90aeaae32f1ea3611ac7e167e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:9575d057a034bdd890854a08559cc08013ac76dd0aaf2ef11e26a5734be590e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d6f6a6f074d7794ed9d7015ea7937582f0ad1d07b35d983dfc07236fa3323bde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:7246b6b2f38d276340ab7d46baf8e67166639d6bcdb75aa901ddc09999fedd92_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:87a0e8e9d89cbb753a2507abcb8b0b1b3258a7a88f5d632f174e6097789cc7c6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:96069c3067b68f1e2942d7758c89426eefd21722db2d0b08ff5f1db39f2b12aa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c2401f994e1783a28eab6f7289a25a6dfb9e6edbf6b424dd0ee9320469cc3a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3eaeaa507833c96c48161f8fc13d4ade13b4ad85f397a41574326e7ef81239a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e84c44ad88440bde18b3f65817a1ffd69ce15d48f8772dd82f5984d68c73928_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6914c074989cf18597497721c5b4006874a7e9a12fff27c513f8e6ab049be83c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4b2274d948f48f8cc0df96f3bccd2d610034ac4495c977bdda82c440b65092c6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:72ba74f4ad3c5c803af1c9388ed1c7186295b74429f7466304339f22deecd40f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d47a6d11b74143b03ababf249a83e8ca576752a2ad58482a2dda2986d79e7098_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d71b697e5c67952876677ad7d89394139d322dd6320943c1bc32fef9c501c326_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:3cf00020f76f7dd6428f49aee9060f70f2d5d73a7579cf8400ba22f8a3c16364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8a9fc2fc1351bcf4a939eb506e5ac91788d65c5f1826c46d3b41e15e8ac7b3ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e16e35579e3696474f357bcd4bb3c77bdfdb1603b971c3267d08f8fd119da62a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f3623315e94aa6a0748d390674e9f2f8632bcadc5b8ccccd75bc45019cb5a9ce_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:bd3081cfa4a3a02061a6908b469dd9a0b987b5fd1dc73aa67bb2dc05ccd2c5d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c84b8c416b3b543d4406aa42eefdc1c02c12f2bdb1b7d56a3e5c0d9c549dec44_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ef6ee4f9fb6e0ebeca08a2a2dfd69cc6b5baeb5bdee0b3158f575b14398f3ad4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ffb6610a0f2627dfd68731bde61d78df97e4ef5ba769dbfb9fe723dfff0a62cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:9329715c3820b10b14bd23f2f3e89ea1172886a3c61333d8b099019701f80619_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:cb9ffb3b3c64cc43b15f52a40235df199172800aa837ee2fa136c785312126a7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:834b63c9cd783e684ce59e99d4b060af5f2d6b6027bc62793e511bd5ae91afc6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c362a8609bd2a9b6ca073545e2ffc732949b1791929dacd899faea3c4176e984_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f050a78d1622d2a10a4549fa7d2340eacdfc80e4c1a628078a4a13006df99e35_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f32061109e6d1b72145ead1598d0a2065ccecb2ae424e743dd613b03992ba030_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0650df0f1f51958baf5fecd36385b4ad6afdccfc77ff0bdb90fb140a7e6a72af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4c95f82bafd9f1a3207635da63f752252d94cf5d13405748bf9f1dc6d4e5f9bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:70ec142f9336133ffb3e4caebd30e579d59bcc3d52a3fd4c4642884103cd5134_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:11a23b0b5190d560d8a7e45c7ac015f71c18fac0f1672f2db84c55ec7d55f9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e04e8d139638d3b8444961f636909cbf640ab494b88a738cebb3c6a7805e19e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:503da2bcb8b582dd98c685b81bd031aafd71e1bbfc8962b3c8b0ea9110e9f69c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:e1e3d49db220a1e3f4f540ec89e06b8a4bb7dc72cefa4b96cb278001154cb21c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:12908e94266b5a90846f50b7fe8688d66c359fb3fc3e9c317450ddb65b455076_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:587f806a8e6500d4dcced927409c0b582a658fee0f51c31c79736f8c31c3dea7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8c53297adf899ca1152c61b10149db660a9146fe067476c82114287f564ac191_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e530b7dae37afa62a6c9def8c54b573975018b94b5a56fc88e218792b85237e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4cb9d96442ea8b54307369d340a8cca987471b191b21c9463027c9bddd754074_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:791d876a5d256f592916c167dc0919fd16e1251317356838146a5fde8fd8a6e1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a9a8d43364851f839ae1bc62a807a983421cf5b41a7488f8da7e68b7261af056_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e1571e62821f55bcfb611afb286ff61773a16ac15a67da5bf210b5d141a6b3ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:21e4959e7a52ffdfd8df79a73177f02714f8689270c9a4aab4f390be59524042_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:51a465dd014fe567fc52613a127c932e386d2a6e5f1faf4fe1cbb1e6becf7e4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:64f077c897c6ee0c9db36c7cc4f9913d1ed66afb822975974c40d98fc21bead0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ed3e46a857f509e0c8a08c750cea6e1de65bb6a1f86933165b36ca5e45171377_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4b47b7c763f063e8afe3014f0f902d55ec6d1fbe832c2fc2f0585121f68c618b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:affe71c5753db62c3117e7d4d8d3a79f3e076b740fe8895b5337211ac6809eb3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:664fcca5d05f7993a6ca81942ea48894df00d46728bae7580f534891e47fa72c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b37fe0e3a3212b0e82bb27cdf4b84f4423e4886d2a3fff5ffe46be761e98aec8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a2a838ee2839658272f41aba9d5e1b41fbb05039c1aee8a63eff7d14d7a1f0fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ffbee6c294475f3dbe6b73884fcb411b1e5303f9b549b7adfd24708b776eb306_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:43fd6e0b0d869a25c61ac074076a78a7f8f389a0c5247af03e7ce51392e90108_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:9f05231471d861b8e8a788a6f448aeeee16693fceea9521fd87e4f6a6b6d6c9d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:049dbb920b57cff7ffb88073192c4c843fef754775862e4d57d2373637e45c85_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3b801c6c05a17b0b1c763f0a87d4908ba4980ad09aa8f12dce6f3e11b8ca637b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5afc27dc982aa722303ec6aa2b10cf727f2d1b409a5a77e0f599569559275b76_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6354ab3fa4a9e9cfa2c51da14109a1a67e98a3b43c346203ba40036ef5c3665a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:22f52c4591a8ccddda25dc4a1eebcc92010f49832ffc28cf935b0873021b2f96_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ab74018d4cba5a5f1ed65e9de515209321ff6be359ae0958f2a1b73d799805b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:65b2efd1ededf1a89f9e6a3e12ee8c7085a1282b2520b2906cab1d80520c00d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:98d6f4f8d76d6dc810ca3d927fcf93740efe1a56fa6100c1ed1e80b84d1be21f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b07ab0a485d53b9ed37a1a1b244c94a70630972020176fa7206d5c9dc40d9962_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b4501412341595aa8eefec6973195073fbf3d961cd813e21e02f3cc14150e223_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c03291d932607165444321fb2fa980104e60ac414920c1c05c499a898b2afedb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e1caaa1ddc51954943c6b44448ef50d7113fcd1f8aae4a84fcb24749de315e60_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1268948f6dae5346a6a8052db8644297c1b98e1732d64b24073d959de18aa22d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:458cf14369629b17e735598d3e6c24eed47bdd8bfe054034b5a60f4f40b6ec4e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6d51ed70ff145e62ae5d22d42b7cdb071e06053d2d456bc5411da7265c29c96d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c11d63f511b868c53303849b22d71273e844679808aaf604c87b373491a99db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:043460ad9ec9a4b05671ebfac16b6b2eeb39e3ebe5f43e3867f3767b7b2f993d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:62420bf7fc2b91f60b32851f2c099ac5fda8083e6274d2a5523ccd0ece3b6a80_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:77301f40eca2b49f92f3c89a93fc6766306d39013350d635f0bfeff4b98ae012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:b86db4181d9fe036b77d0473dda243523003c19d0fa5888a54f3f19c104a7e52_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6bb49580fa2f15130fd93f51e34f31f963a4c9b8b9cd898ed573ba88ea24a60d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6caecd5a01bd49eff8acad2449074c505d07e521208af296b0cd9f0822f54911_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ca38c682197a97a075635209b6091a60ff412df3461950a24d1d881f830fb3d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dd9a440a68817b45e6d2d04b3c31feddb82304ac1d246c20c0e33355631d9624_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a251f2b5d7f716fecb5119acdbbfdbb9b535f2c6d8fd51ee0c57cef72cfa1964_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b0188af5f7dcf5f286e4ec4f331062ec77f341391c612aac52e017df26f89a89_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b3f13d71ce9dddbce566d9a5bb5783d3e5417b8fa3cae427f7f74997e4a8c8ed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d6384ac004f36838bc5b35ff63c4d1edcb3223c0a3907d4f099c5d85ab51b014_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:db20ce7a947978ea2646d479eab935796e8cfe482ddce01f3675066b221e2e3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:eaa77c0a842cf32f826c2ca19abbe4020997810c35e079c0c88a0a9361323893_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:59988d13b37880c4b79bf8622161c6e975136bdbfb59c8fe73ee8e39bc0f7fe2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:f6dd660a76715b8eef53fa459376986a60d9f2e7cd3f176b0ec5c6e8ce19cfea_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:05fb046ec30c464d04a70831316de4af2c29a226be1e7f73036c90899e6bd193_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1da080de78222a6c01704597983765a751b1b4544a81168fdbc952ab31f11a54_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:45c9e9816f3b14886661b4c82dd75f87e242f4ad3e0c1c5f264d1a1839e8cff3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2ab57f0587e4ff1adee3ac4ca2c3383955448c0b26849eb24c77aa3f4cb5e959_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:66b581d789ec455fc8bd8e01e980c7fb183bb0f6ccc09ff525ffdfa4aafd9a52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:721aa2904e0c2d5c4d0e3134fb695b6613e74809e0faf3faa949c93b68ed168f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a84aa018bfe05a74226938ca4e34b58dde33019aa093e01a7a60a8d6a4c913ca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1a255a287f3100cade2efe8d8b75ca7f031b9606f6d8ea31581a59e0ca38fde1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3778fc40b92ab82012aacfa7589247e6ff79edb9aa918caf6ba6c5fa3159ae61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:60433084081071dbf7cd337a3769f60ab109201e2ac323be2471c62178d87703_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96b873289284cbff34ea1c9f852dce31e5a72669f204d742288e266cc3a19d21_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0e2cca7da188aebd3f4445715b88a3f4727456cdfee2147e7521059722162fa2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:23043c95c32122eaef725c3e2f65ea824e4f83242614d2609e9367cd6707e454_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:68a9dd5597bb207e899a4716a7642cc28260e059ead26fc84d1e48d4e6159683_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c1a6b704c85cfb829b9a3421cbde16b5011d2c506143322e8f2563d6a5191fe2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1f6f4d1a8a3c89486253cd025f8d0e5aa34c0ef221487aed5e4e968e8d810285_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9955ec574da8c2821d783edbf833af9c4b4d4a2abcffd603b85d706333c68111_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dfcef3e2b6dfabf0abd72dd9743c91ca4c5c4bbe5bfe7488c2a85c2cbf467661_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ec5717ba7c764e22cf72a5792423078ccb9c3a3bb06b92a33eb6014f03f82fef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013f0b271dc70347bae313209781261c76127a19b3a2f8bd074d170a84e49047_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:19c6031d8609f10b2b075201c0ccbe6f26e6efd03f567b485b6b327a4f6a7fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:304cad693bfac84415c3f6311edf8234f412a4bec7635178c963e2f3fda74d44_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ee8bb516566d6a9dafaa65ae52177421adece839dd4db80426d3d2ba30a1ec10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:371a5fe6ba1f62960a89e6b1050a2d324c2c91b733704fed2fb0356ff2cd9524_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5eb44886f42c57f0e736d6259b55ba561beb6324ca58537e253581f6570b22cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:854407987817269c3069c1d1e4ebd7441465f971e28d391eddd456371162b449_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e7184c5af00f0dc4551f17ef5539952c25c37aa32d596514e463464c92ad146c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:039a4cc5025db0cacd9e5dec922d9cd51194cf0ce903904210000245c5e7c048_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6ccfe8e12098c660310fa2af574a71b7b27b23050f6b6c524e9c1787c7127110_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a5f3adb97a88b5910f2b5375e05fe3411652541687262714d50105f05ca31c34_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:de16bed38709aacd8a1c25b3e68a995631d38c12d9d28924360fffcc17adb0cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4cc2ec3ed32c991240703b0a40c6602db1320fdbd328e887b517a11474149030_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52e3ca4eb01859dcd5c4346d73339889f494576b19577fee88cb1800c84f8fc1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:949a7355b5e946e1d5c760e14244073db9df660fd8b28a3c6d06420dddccc298_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aca1f2e8b0aeb6eae4a77bf712b8c255dd50526c76e843f9960871cbd4abb6f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c075a7526723ebf1b921ceb895e63a6d5f3df60707afd79c4fcf1c9bb6f33e3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a952d0aa30010721e7a2cb903e30260a02f4a9dd9d83eb7ff02d2847f1e76e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7a7b182e9ec23abab1daeee26897eecb99e1785569a62888db4b54d6e897568e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9025051729370f663bc9231aa612b0bb51b35bc6da68f8b504dcc01c760a1fee_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0232982c7a3431d641fde0e3b3b8921f855cb872d470e5b9f69edc9b573c2714_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1e05df129e355b9a76f8bbb8aa65e9b4263fb9e888639fd2fb61f79d6d212c04_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:89451c63f28e8e515b4529c8a834f6e8e558179ed3d4f973df539a509933f942_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ace5b486176727834f9e1ca6ce46b4d0ab0bc6ddf651f4142626b543a02c61d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:007e6fe2b8d7a384cfe07309e8a523bd1b7d3cea896f3b7f29908a8d41c62f16_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3fbc6e29fc388b15dc77aa93d2623ba9a23db114399f3b07da429707a03eb8fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:42f1e088777be6853d6845aa25cee3f46df776aba71ed1209285ea853dcafb95_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:73f6897c667e3fa46703b50ec857958738442bb7d8b95fae051f761f42a01605_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:3f69c1b708c411bfdd1a2f5387e6084f2fa28e1c4bfcfe136db5b66377918bf9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:46ba8317ce0d48d6d0e8902fa4b6deea668d6f3c9c6c15c2a3aa6238cc06e52b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5e919ab71bf57a160c89b6e5964525a708a10c7cfdd87aaf911e57e6353daf23_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c706a7354b0006b9e9c7c351954f179d6c50cc2b872833bbb59214ae7148ae3e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7439625194105ec8e55d4f7b3acd13a5f2ca70da75f9c82cad5f5693b604bf28_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ffcf4fc9bf77edd7944824b25136db6027d21faef80bef9d7b126b9fb6c0574_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8540ec8af82488dd6edb249e811036b1e639a74f892af1ffac1ab5d59ceb0abf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9b497b933ce2f828025dcf4390c7d53debb2418394317da9a8c52ba82a6f2fc0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:37fa7e2453893831aa0ea8bfe068e692ca4f1ffd6f69afca37a6a4e7ad401c49_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:63db7c4a436ffd18fb03a7cda09cd47844691a8025f2ab04492ff405a85ed144_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9a30469bc5882ab2711af24dc3b3cbcbd0532f49bfa9dead772070c5fd1280e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ef2e5a237cc5d69647af1b904a902e4e216ae8480a54587357fb135b738db120_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6be6d5b27b6e178e0806938850699d1e760c4d456ae517a658b47cf5a1401a2e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9389ab668e31d432d3b2d44fe11f68df7f9d926179d0fbec8a6d1b30f489857e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ab20bef5ffe91fc06a7dad3508294cfb9a72745da8cc0342e59f515db447e264_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c5c16e51700e2c16c6fd496225946c033875f4fa4c0174ea625958bd62a7ac51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:37c574ecbe02ca7bc99355b6bbd952c392cbb2abb430db4b752257306c37bcbb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:db6cfccfb142d8f7addac06e4aec0d6686361bc15b459d169b0df831b1d00160_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e813ed4ae0135da60fc1e7e572f6a46495e03764c96ec3c095a4e61a8bdd338_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2766e79b9a9a3fae66e1d331ad2fcc2141a4108e816cb1f91557bcf2e045882c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bfcf47037dce9565700224c63e19aa2ca8935d72e355c08cc8754cbb84b41d00_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d4588b2594a2fcb58e676ea0e8d11372e0bea9deb53824b47a4d8f3c63e774bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2bb5a02fa2032146aed8fcae80961e9a6e37e1c8a13a368ea07d6b124f303519_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5998439ba17cc0cdbe1bf48e888862182d6e10400fd9df74dfab53d161f0582a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7e0233017e706ead44793f1fff610a4625a22a834de67511cd66efb208a24a47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:97bdb1cc0033381c61bc1c9abeb5f3ecaac1adc70e91b203fbcbfca9a9ae6c39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f4605b13a1cd445835bfa2bf8d2f094533e4b731ede1d00e6e15a83ca924bea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:20955243143106da7d9e730ece6e49bc84a18427ddce20cd90fb5ce712e5477e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6c27e11d2ba7f408c9ca5dc0bd898bf395b3f773931b04c558759493e0aece8f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:7f08d881878f5d69360edd1be3e1e5190a66df75a087120abb37b2c0a78b4473_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:755632416caf3e2fa4e8c24958855e78c74b12d5e3f2dcae93152ce06274d428_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:847a5098475d0ab53e351d52148f5a2211dcc8090e03e17dd7b161b7332465d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:93c4ad9c017eba69c7105c1f60cba46f201b39da79f5ded60ce13a98d7608e7d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b559c70d997c0ce2c57e2cc3f1d3160f5ec2367c53c8d1fe1d9418b142c5c577_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2674a13e799262a6ba79ba3e43c2560304a1201374272e8622aa1a5e3df33d66_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6bafd363141b2012cd318a353cfff9c109c6ccc90d227587f2d0e08316309602_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ad9865c56a3ac1997b3aa16166966f73a24b49a1a8c71edec2eeb795016b849c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c2d53d7716676842974f1dda29eba47d03b525614857591426a01b4186ad2edb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2098ea118ff218c9004be57932760642db74b9387d11fd5376593ebb3b2f13c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac90d3f60f0a9de597df5344adc3d6b1478b96d47fad0ea71a00597e8576b12_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:81c29521d2aa0a7d8a0eed047e5948d145c9e4a72fd0697fa9aa613033e7faf9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d9208e402a04781e9dffbab5c989e91804b14b6d8a5f5f29a79cc54f85782e24_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:71602c5c8069030db0fa7373e496c7bc23bba707756f57a082d7eea44f61c9cb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:72d17c4acb7d58df68ccc1ccd8d7334f35df3091d8bd8e25a949e3c7f528de1d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8817af94a399c898fea21c34bdd60dd2c927ba3613436f79aab4906ecfc92cfc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f9d6ccdb270a01e408d70d01d692955ba92282ec5e577fd695f6c51289edce2a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:005773da78ed8522b96f69d9e53c961811e79340b54d49dffdce92c59a0cea2e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:502e2c5f47b1b95e0ce1e3922306ee37c604845d1d1accd92181342b473d3b3e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6c68854cff5a2b94527d6230740551ccc74d1161e7a1bd82d8119065e9e764d3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6ff88655c6a7e78def695735bde806319fe65b5fb68ee0c3ec2a82c6d80a9b00_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:179c818cc5f2021988e1b71e4edaed742e62d398da747cb548896697617254a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a75ee91ea3ee181623a22f9e54b00c5d4b2e6cf3f222a912c8aff5a29dde1376_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:eeffe28791e4306c642f156e83c6035bebdff5d1232174d56ccb09b805f9271c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:fec4f6e102887cd0d47167eecfee667e3161dd21a13383e96ef3b36f8e319076_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:167bea17ac181347213db54ace41bd0191b77ad20a3a355e56c90fefcfef0c1f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:734b7d0af02c1b79781846ffd3c617b27728ae053941b112d544c73e0bf3a3b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a7cc1cc44f13ea307fb79522996cc56264a0e036bd5ab9134b24e4a0f6639843_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ca75fc486998027f4903a313c7bd742711e2b7bd11e55b1e0c557582ca3d1dbd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5d23f5103a7bb7c71ab5b79c2149be46e4ce746f3556508933593a94f15ba945_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b2dcf4c5a2b14b677212eaecf6ec3fbba8bef7e21d51a437449456979b5fb551_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b692ee1154fd6b6a8fae68467ae87ad89c8a528d50599db14f614c7f08831d81_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fe7bd87ddcdf1ec088e780a9e3421286cc0e4aefcccabf17d1c50e4a4656b2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1775e9ce012c333caee47c4df8f9187d85d8b47f6300e3a7ddf6d83af462986e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5403330e0c28b3af4b3fda34ea84b3e6edced89649cd00bf6ff7f8352d2f7708_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7e13f7a4f2a67e74b36e39b5e582b54a8979c270158789c658974993ad351262_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ad1b944c7135118573159adb6eb359face5ab141e8328420eaca3999fabd8575_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22ed10b10973b3a91b30a7269a88013439964eca8e6954fd515442d543bb74af_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:74dfd09f047da2dcdbdaf8b16a3aba913df216cae2f26898c4f9fe423ff6e330_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d7f0f0b52c3c3c7feed13d3ab9d70fdfdb89af06210b90650123b362444a292_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:88732e8c96326c07670db570f1b1549412775fd07a66b0816f227d1d4320a27c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3e0bc6b1b9cfd488a3cf5fd19d5a6d2839d37bd609c08e6a5a7a9da869ab3cbb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7efa402118210c406818a1791109dae10962706df8c04b290561d0c784f8a57d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:8872db8f65a31459cc63eaec8f03d40ff2b21e95871e59e3bff97b6b0bc9b9d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bc298ee8cd84ce0a44f51ba31cefe4052b67cbf9ea559fac77de3ca7a02762fe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:1715daa2ffc4a6ea78b5de1a1ffe556d27e3e9aa1cca1d6ec9e53217f27b7ffc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:32d4fbd0cbd715ed35ef290d459834423dcf6203374a2a480fc5513b3764873f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d22fe92972f9d9303f541977a3d753750554e6675545ad7e511b723c3869c4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a51b74a21651e21c9d8d8538c2cbf9272d09696abe8244cd2b1290777ad452b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2a82548bcb003f718c669be20b0abf13183fccb5d7d4e34a17e9be6ee08dc2cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2bb613f365004e6cca2c81baa7a59ff75a08efff24294779f54a51296a4f1afe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2e010df4822fc8ce8b452dd6d9381d38b1dced3c0e429a9d88e02ac61384c825_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a8ff1c3b2fa1dd0d849d5cd35526a5ef2135bfd6c551ecade04e4744ac595453_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:86e68bbe22d576839fa35f704596b2f643c09e3cd755fae8effe90935f65ab10_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d48fa90ded7d3c77d535abf9eb8f56d32e1567a3c292686a7f76c6ac39b5c6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f781a380867adf7f20c38114cc8d7c751cc84faba5fbcbfc67b721793f017339_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f9d1a4c9d0a5404e8493a84f94fc1715d6226b22b672f0e378157405f5a7204e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0696026a1a59a9227aaac743602e83017e0281e6726d94d46c20c69e61bb6ee3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:18ead28e318b6a165c6988639f9361dfdb3b7936c026f6043b66996e806be30c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:64802d951a8cc8294fa9194e5778fd8ba178cc2dff80234d85234121013ee58b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e6adba899b629ba8eea41574e66d8ed2eaac9169aae5fcb789aff787f0724b73_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:06d3718842b1f074dd7b6477dd8e738e91ad243e06e466cd9cf8b08d7b7fa024_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:220e8b87b16dc9219b324fe7b97208869a17d1039e620bc91cdb5aec19d4a0c2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d85785005a4cf5e4bc26adabdddffe345fa8827a0db2240d01cf64a49747675_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fb190187adc311919da380eef951373ed4f907a07606af0797e96cd7d253f20b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1d5caff7082d26409e72c3d18b018f01178321f3922a0868af8058f839261d3b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a0968a8bb5df2b0b41bf55b06f11397a4d0c0ec290d22bde93fcf631923091a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5882d9e24bf330ab1bd022877c1f3b711a41b329c46c64652105a1b0a1c24cbe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:a7f9b163518a7508adb281ab052ca9e1c233c9ee5efe37efad238eb0febad187_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:059a0c17ca865b86ef3b3c19cf641d3dd43b007de861583f5c160083dc52a012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7fd099e945dc79ff47d6aef25ab62b66920ae6e7338ef2da01ec5865970bb62b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:2461d40854f69f775c2643a67eb8676729f4fde44b8ad6f106b86b8a66342f67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:c69c4ec8cd052eeca122726323294481522580372cc3c948fbeace53beb74765_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:05f0aaebb8307b693452309341fef6e3bfe6912a34c1a9d7ced1be398d81351f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:0a46ca252418f181a86af41b48cbabda464d51f9d9f44792efea11e54ed2167d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8e9b9f7048b849a45ea2edbfcdbc1601d8a11cb4260d5c1d89d85b5ed462e7ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:cc9d2ebecaf2c78d99104d0a3ff23cf7748e42f13d00215783cac971193b1f69_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:25e957fc0f6723e791625c55d1b251f6b7a894e15d74e7af29e004add4e3a6bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:42a64c335c5af6c607f435c9a09411e789ba8b66d4df1201d532f27df5b9dc04_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7c98311b8e0f89f03a4250cbcc60ff62ffe65c4ee1bd8c34c31b623442f348e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:abdd622e2447490b74f285cf653b9f6900b904aa6750b34bf9a39f09dc6337de_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6a3350010ffc87ac68f2c8eff3ccd707bef4d9295be9aa7d5633e83b3fdcec1d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9ce9629c6a48384d0dd7d325fd61cf62b8c290db57b2917a8ed671f7e3d4fa9d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a71526c9cd2f4c5f9a397348f1ebc08590caad252cf3bce6e5d07ee6c77274c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9cce3c5b53509924dd37d4d3a250925226372f26b45bb52a9dcb46526b1f3d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:137c1f39ca66f98cd37c8a9deb3279d0acd18c24d70a88b6e8d9033a1926fc0a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a38f0412ab643c849826b9600b42aa8975f4d77546ed3b36e92e7b2dce237e4a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:de2eb4f5453b3a0463c333a1770034a9016eadddbe8a07c2666c3d58367ce3f9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e463a6ace53d6f8eeb652db6a69ecda86245cf3a87cf10ec7735738375d17c9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:348c8fad1c84cc45b10e7add9d5bb5c37057b699d6466e18c3bec3d593e1adde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:37bcb5a159c17e1241a4e5add6d5276512ce99418b2f779c1e2a976a099de7a3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5653e3a360eb8e725d483a152ef0510d5e1f7142666cc5c6e27f62965f6cd08c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:57ea23e19a26640f9e8bebcef70419d22c23ff334878e89d4b77a894acc2ce7b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0d0633b8cb1de498ee1441b5e28b4ac6aba808f6ad37d3c2bac9f01c94ff33ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:702219e963a769b7dbe97a0f9ea6a20dfd1415097dd6f38cf31cea657b1e4936_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:aa9dc51ef8366806a19116f700448b4c0ea9dc1de7fc9f2b8191872de744e591_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:dc192484377ead9c1805632aa8a8252186c4f5f0649bc30ce521b67f521c66a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:02a58199e4b61c2d8854772359ea02b3abe946e3e67d1cea7ff753c49b0ad3e7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:35e90ec749853c76f098be940be10e29e25401c6a1064a27843f09cac052378f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5fdb8a778fc61b0900436f22aacadd59f7da453af25b9b2eb9c22aca76bc9b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4554e982ba99a234ce6c3717e3447b817fc1c35a384e8fae9766dbb4f22b868_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:3d5ff34a3f9281202e3c0c9593b481d9b16a8321020caca71fa4e3b4d6527579_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:423f3c92919536202042249d0e3911b30e777ad4616ae8f6ca9968c87e14c33d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bcc604910483ac005899662bc05a597cbc8af51dd0c1dbaa05d521b95cc2ee94_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d76ee581c268ee313f9815c181bbbaa91f976c2da68a7a5dfd304e62f4e4a003_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:213608462f3f06ee113095a0b0be07ab8b1e8c194824a11f56c67392729e906d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5f1fd024087262006ea5a3a03b1eaae1590be13fede1f318987921df0c2c3800_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a5d235485bcf72b816bafa06ed24b596b2b72f543e17e845ac8b79dc16f88a86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ac8a2e047872045fba2fc0ea483a700de6c6398ae2cd184bfbdb021969d6eb6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:58dc4f0cae516c3613bcb01833e42399b2db12bf7f82c68701baace24fc77b12_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5c793d527449dfb1b10921bc56e8a31ad3d0f8e05dfd19a1782a67025b89879d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5ce2fa8d80f65f80b35fdce9568eb02d1a30252222f8593f60d3d2ab85ca9a7d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ec31e82b039af04deb6b8f9c13810a61281a3cedd616aaeb03315bd3abdb2d6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14d78d97d80007bbfb90b2db94a3d0aab2c5f73e1785fb27ce570cfc5e31c964_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5ed57df32a4594d7acd4e4411b009c6bcfc54b2e90a337f809b8a6a53e858480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:69275336a4bb1cd9093233541e6f1e29ccecbb8096673ad0b1880d81ae454ef0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b889a52cecf44d33e496bb09da6073217d856dfbe6fe78149669ec2af3dd4f63_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:39348b1628d4c75591d22648681ae23c441338241b48d2ed748df691a56dcd36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6964ff070c67d6f71068014ba253466e6ede36b043cd0f8e3908a32d91953f87_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a274ec689248b4fe3431501c0045736e3b24df4afafcf86ea6d0704e22586c27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ad6f9a3b78b0e98bab747ece64657e69f301337f4966e3f40d3fe0588d1a530b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c28651ad376814116ca3592e5df4853dc0cb04402d825a2d12812ea6df06a4b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6fa533909fe009e146d0522a95259e7f80399cea0ced183c308e146bc51fd9bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:30c988074c30420793cecbd4d3912868197661b61f00d01bb8fb86f4aae2aeab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3dd6b992e2620c2d08de3ac99c687a9b1562d1a46bc9159a14e34abae9d40f36_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1200e38684ea24ad9e98352ad84e3c3791be192f08f22c77197987e548c02939_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2fa632f63034c5e2ba411ecd6a6655da1f1b5cd65e05dd1c2063893c77fdfb9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6f9a533d4e52e87336542eaeea992cd22d2979888f7c96d1537fe89a7a186a8c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:784e009ef59f00cf7e127d811f2cbb30f8c4b5c489c9d51985c8385400ce97fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:3576099906e843ef0a4639ab2563ea90c9c875d6be59b1bb687f59cdcff0acb3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6d0bedcf0cfc56da79f55effbb2315fa7da2a126347bf0fa3b21fe96b9c3f037_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7aab0df04151b6970f04174e2b257a77615be9eb724121ff29b59347f8edc8b7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b9a4f7fc7ef59029d19640802db410d32d52a35bf7c8a5ad229ce1e0b559614b_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3198e3a7911d65997d84ae2c4a4756213bd6169408f8e5b4d4fcfc1312ec221f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:75b581b7faaa791148cfc9a5e5b4c87faf3a809d2baa0fbcec38bac757007b49_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:af1751213d6286401c0e1d177bb2952715b50a255dd0072452cfcd1a239c9be9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fdc295c04d946e1294cbc811e5ee20827cce284c7a5358c9c6c926f5afb5fc7b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1fbf0bae66e3d3feafd7a5d800ffdc203ad1171d41da344c7bc899fa9df0c439_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a83b03a6cc820386376a5e0b5ac0bc43147338cd0f77ba6b20284b93cde06b63_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ab5dc4b258e7a47d4a05f2f4975324ecdb53481bf591d41dad10543be93ac59c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f6fa7b17816eb0b9d73c00dbf4715a26458d784e65858ebba255b032a5a2b3f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:565239690ed2974560e390d87055eb74f793a4d2abe8dcfcf0d40c4b1d3e4334_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5769b6120ec44707f7b98ec0ba5e90dc8dee0cf14a2795a0785435cb01711fa1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9640a22ea7f43b46c281d8271b89480a9df2b5c9ef500b3b9600c5373ebdade6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9e682bfd352c260c9127e3f2affa6dd16af28b3abb8ee7303753eb0ade31c1e8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a84a096bab105b8e51bdc5f2d93c011a8a6a32e0ccf5b3a5ee2cbb2abeeb2aa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ef77e97f9b16035db985cc79029fc5c3bcd6004ecaee9fec9c05e354ac1e599_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5f3011e69a519014b7801d2acf0897f95635dbe17492a09216673ebd4a1c791b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:eaa84214ab82626dee31c0f652f6d4d980065a920932eb8e69f2e078c8fc16b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2684c0efc9838adc240b08c8b263d829bec71acd381dcb4147d8c45eb1d08d08_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:31b01092a5183808a2a97430743d04941f034388254cc7007e74c4ce3083df25_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5699e966b38060569e298ccd084fe89bd719302ca70e2ceeb4bb9b6ca5be8991_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d052315ad81d7689a02be445c9a1df8d296fc3c32a33e3975dcc4297fffa2bfa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:4b16fcfd326efb0618351bc9ddb2c3206b18e189c188e5c9fcf27f3ca8f3afa7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:511bd02437b2ab8480a54dfe2ed3e8c11c3d9d2b332212cb455c8540678665da_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6d971be6c49127312d1568f9619c9f4684254c64b77a047f6e24e1caa83e9416_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7df6d4e5830f60779a607ad0ce8716034f168d5d9c6b563bf098dbdf3b2fae05_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:274d4e7ca8dc6003a3d18d931e63a4a0b4d5f80582351fadccef4195de8b847a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:2bd57947814981b16996f8d12e40d5a5670dad3eae9fffbd57e700c39c1b1155_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7339fa5d4a95cd617046d6dc06a2e97b78c2448353f2ee464095e787a3a2fcca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cd93cbcc8568e8bc3965cfdf4c989a91782a08c38c6affb64a0a3121fabb7075_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:04e57127605538ba40496972299b81737cc2e5197a2ec97fba0b34d74fc9ab5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4c9055e26a32fd7f824d0e0c5dc605c6e59ee22369812ab8331f7572e5154ac5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e8d4c571e3c88206979f8e3c28aaec2fb961b028df0d499ea236c494c0c4096_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ffef56a2b3d651b521f8cfd8024babe6fdd9e8987df4b37fd3d1945d1dff1a64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1dbb201ad9ba579d5fec8a6cd23834d0c1ad9c4d44927b1c90ae448458ecccfe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:2057e81c225d137b781788c9df16ecc5bab9a103a029a47196b9e2c53d4171bb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d66f70ef41f4cb5cabd1e1c36cf32923cd0f228687925ef8c1b08348dff12ea7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e61c5aaa06056181b140e49b24b25835c806df7a51efd7597d3d29c8504dfe3e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2dade7bac074ae0b6d6b8a47004a3c534c6b1a484a822c45001f5d4083742aa2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:40132843fd968f729205f908824489fd67b9b0e5bfba1717840f661147af6adc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53c8d86e293208c966c8e7e4fd3435c9d8806e97ebb31c3e963f26456fc38600_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a310f85c49c19cd35070957d0621694e30215432b5d01e035ed3e8242f82c283_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:29247ef394a58b75aabdd5cc168e578fc2347c8e0c1d779b7b355848a97df2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:795a0b596a024d3793c0d211f8e2acf771ae79d4c5d47decef1facba2d5a318b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b5277a1b6205eb2ef3c75d691272da6f070b2d10fb1f27558f9241941471cc8d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:d2acb9e2a03e0c2873f562605b1e9c9d32215d1d9d265ce18bd262c7c4263f20_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:874eab1c9150b030a11a0742589008c00cd6f8af8fe188ffbbe28ee6b90f7bf6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:9ee41a2f3a833a077416d0bdd181d767145830fde45cc6fa5c31196ef749b1e4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a2dfbd0198e34753e82c002abf31d92585dff3b8093d77fd38d8369cb4c44ba9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b4f9122a9571ebe6e0da7465f498ae3e74cf7c77dd6062a675105f4c437e29df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:054e6260810a05bbcb889e80cf6a4f3668409bcfaf6302148c1230b443fcd8a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3d0ceefebed5e66f56692e62fde1a1b435cfaf596932058d0f2768d7141b6bc9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:499f3d65ea6972937bfed0d482a782ebbf807c4c0cc369e81d53dfa72c591657_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c08cf8ce6baf72aee6019b7318106e3a02e635f4b385a71a2e58387e706a2cbe_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:97af951210f4ac7395effe942732418e9999e7b8e54c9db5317eadee25491b3d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a80d32903c82085a1904b088453a13c88202d53c26626a0ad3663c784f36230e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a913a01a437d7a6d0ec6cd6eddccf25f064e161b07ed3f9fb0510b485130df08_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbe31a367bd21946e4dc641324c5091a85bf3ae3befb4f40bdd59b00c23bd67f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0d7dd7c2f034bca5dcb69cbf5d8e1989e10076fb4187e9c144201b2afec28a2c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:11286a96806113bfbc34db1b1e230fb678f11135da1809bf7162cee01bfcd267_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6fc448b6852cb86de3661f170f364c99940a004d1f85f9e0d546f24aba812fad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:82b0dd3db731b7a84ac6b7ff11c2407ab0020e30ef04cea06b25a007be5cae31_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1aac0c8d30f9ceb91a9ef3cd76fe90c338568b6408656687fe168a8c9a48d628_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7062eb071701245aabc8f0839c966e7b4b5fb1673a0f5713b44d82cd726f3ef9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:79de159f6b1033732145619c507f29b09fa50f2709fffaa5a10f6554c6818651_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c56ca8e906e3b544e0dbdeca92c33ad8a7b0a846378e3b6c9ecb050bf60f2d7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:11c374a767b0cdcb1eee64e69900ca970dbd67f814a76ce9648f578862db2dfd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:1ae113ba4a4f5c2e2d9a2abf69d37ea047da7e879486ddf25303ab709648bc79_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:64ba60275b58312a1a2472ddc46894c40e746014eef5ea4379f71c0b6d7c96a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a0a1e7e812c0f1280e24cf4feff8dabaf299f110a8e8e695dd2e3dfb98c1c698_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29de1fa9e82a64eb363bfa664dfac943e9531a5cc46ca5c2e2c41b93d8b7fee2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:2eee252e29fc035c3d8b5b91ea2e08a63d96b9f11c6d29961cb738cf1ca73d19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bc0fd93c51986738cb1f49fa4a31f066ea2ccccfd45c36a2ae7066244cf1e351_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:ce46c15516097e435174ffdd74a4a89f1c9d44b256f0ab5ea84b846ca2f339d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bbb9f7761a83c0face258f4c056fc8276f1e84e37e533ceee3cd1ac11367ed1d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:d23edb6ed5bae7f0f2be4e09cc70e031579e06bb2d42cb1c507727c319deb38e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ed2a405c06a57740f0f44a8c3cd9b7e3aedd0bfa372d85e06852082f4ce87ae0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f360847ce5b67a5ca834ace7da710150d47786dc10eea85494e467cd4d6ef908_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1d3073d76a6486e752c91e90ff6030c0c0993e9b09ca8f9efa44e5decfd52d97_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4c49749a0ead346171f842c37c832cb6c2457f6812fb487728d561aa85d262e9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f1f47f29cbc61ddc25a846d4c7d9caa18b91cfcf0e089989883a28ad86b1f2b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fc01321fe5597aa44e732fdb7e99670d525a47dc7a0e0a37546f4b28fd697b60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3b5506219e72fab36ad67c982bd7f9bd2d462070214a71b4fd115ced29aab710_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:465009fe0147ff5370183ee02173f430d0b9cfae5d579aec78bedbd3cb9d5dad_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:607051d5881ef1f78d6a62e3ebdeb761f83988788f7898d869482c22773dbe9b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f12bc532130dc5fa8c8392d3885bde80ca93ba9700844bf9fe54f4878ac53f46_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:33e52f2ae99d85b6fc05d53efb17d0a72540a782a33fa91e766fe2e47a878a9a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6d03501991d6fc5efd43a6c73cb0e3c8630db1f690bf07253c7e7d17a3de07c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:97598836bf560759a9ff39d9675e5c7f18a03e14500982e442ea93514cbf3677_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f24128b82f5c31b4eaf4f7198e4b8c0c702588f0568221b07df121175066372b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:671d23e3d686856a4d47efc6c410ace8deffff06134c979c042fde8e9de487a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9b9e3e354b0218bc54258ca7a8f7117cfe164c2311965769847e83e7f6c15d78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d59d91a2af93c1c7b2dd66e5cb98cd8ccc29c3c64b2cf016dea1d2828a6e06a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ff08f965b67efb7ff451665a77a7bc0f247cde4ca9038d5558393686bc037c39_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5e4971e899f775e21b6e1a91f00f633c9467d31bdbf4b71038be98520600a625_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ae63547bd2f56fb1f1efe75e17413e43cf503fc7089dff3fecb68d2fc50bef97_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:80154aeefda9559b46845fb40f50aa723f75f29485cfb4846995d08b0c0bceb6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:fe5558e0b36855d11e4a57511f878702f87a3d907f79bcca226e99a0c8052628_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0ee0d97e5b746a6df7d95ee4ef32075b52a235cd285039e2460f6ad084b1f5e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d80a021dbf04d702b2bc9736f036c0436191ab4ab3510749ccd03c533e9b5aeb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6898ceb180df4a46da74c974cdd105e3bcbc5ddd1575e3cabe53a43dc676258e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d4c950b548bc3ed89ba8e5e216115bda1600c67d5c35fc9979fb4155415a7b42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:39af594e6f2fd164192c69bab214557cad92989f21e059cf66f00e455c7f816d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f94694f0d2db1759fa507fdde4594e6b4025a61e3c3f8f2e6caad509a77f6709_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5033eb3bcb9c08972c36d6e19b8d192d85822373e76eb3b54cc9168d86ea62b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:a9fb56ddfaafe28542fd8a824923257122500903fc18626f90d84b7e9b2da856_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:0f4d2bd2755eb5467e25d30ef813275b15ec77c1433d406250af5294b8b49f55_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8a2d63e97b83cac2d12e809ea63398ba1c188dd996a00189664c5dd009551860_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:10847c520f582706d956c48a95e6e2fac51cce89aa8a3d4fee316fb1ec97e140_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:73d3bc342e17226fc6e47dfaf448d09e394ea53ec199bef1ba42abf3e0be8c5c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:11f214e396caf556ca08273015712fc739d1df22b550812d079ef51af642d311_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b8a8e237f5827d7935e0dd8dafe0f59157cdada056580d74feb4ac1b9e05b683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:26422066656afd16e5e36afeb7e4b5a92cb6888d550ab0a0071da9a198f290d5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3a2ee96fcf0963d55d4c1b6ffb874be6c3552ea0b9917b410976bd59e4a58efb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:2f41d30f61ee12bd34b94ba6d37a517eacb2dc4a51c938f588a87c1f4333b924_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:b49b52eea375dce5ee2b1fa3aca1facd6ed65b94e44ab235753eebfd917fdf58_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91e0a641719fea07fe1185250e91b13f8ece46fe371bb603308306fa9bbfc5d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a0839939275e2b68712d77224d5a7612b10a1bf0152a6f57050f179a1c492f70_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:bd2d266a384c88aeff5ef7174ecb532b24aa2a9d6d17a2e5c01ec384102571d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:fcbec489ae513f599fd533e30672085aacb0f937b7d3ecb8f97a39b24d0e3143_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a37378e201c50cfd94eddd0ca6163650e8af46e7c3a4f97d821aff530ea5374_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:22eb07d776eed9b364e0f8843dd2eed75c4295cd9c5d3567cb76b5e5ce20b725_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:73622f6358a99c5b2666edc3f8b680b4cc3906e2f198c67709973dfcd7cbb0df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b18d10d989d149b9bf1e94be6b115ec3445541d5d0cee0358b0fdaf634f93378_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d1772e78e5b5aed465c12a05548f9eff106f7a1e00d3d913830f8dee427fa4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e9ca0475950b50db7e62be4c43d82cb25734b00fb081359208323067c511c19e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f403594cab45dfc4de5a1fb56f8c9cb8d67ee8b8da68ef64487ef45ff6578236_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fab18be096158a97131184f91230ca5ad7a66946ad4ad527c224f279a4d413f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3e79c9035ffce3cb2f835487bd144c0976dc407890016d1fb86d1f1dc3453ed1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:70c684711eaef0d1b4f996d745c936f98707584a54b5d9920b8c25af4adec597_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8371e3f60ff9846b4249201911cad68360c81e944f753a6eff72003a17c2512a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ebae85f444356b6e695da3e3d2846bccdb8ef037b8cdc77f94128574531851b5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:0c0ffcda769ef04c9b46206aafeed9d6afe4f82ebd46751aab4b47ee6584fab4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:408f3dd8943ad4ba2ae37bc2708b698e60a150e98e1c0876e46d088832ed8d24_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5cddf09377c1fda878639186f3844bab8833fe3890f3266c79dea36faa4f11e9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bc7f21410949e77fe85c5a7330548b893706c2471d7d4e8d5c6c26a873132263_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:283596834104ae59f2780b8f0d61d90ea6128c4b09d57da03e05414203ee9245_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:53eb49907793916b8c24463ab096e15d14265a19da7a735a38bf5ec2b9625a79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6ec2c12950d227467d95fb84bbb1f9237cf8ea00b0a414371123dc524e94c71d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9fa52422e5bb14cd6eed3ae6d2a3c0ab07f801e6f92493ec59217025239a5121_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:089a4975c6964f0c0a435586733b9fa5c3c9c8a5e139580f016f7f69ab83da27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:950bee80200f2d9bdcb3f07446eb6aaebe4b31642990272178441b6f9e56a761_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ba71968598ba3fcc8dd2d9e3a861484f74804828ebbe5b7251da6706b4cbaae0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d5513c03787f261759b02454de8248faab74c402a7c8d9e948f469181dbb786d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56b40826166445e18229752bbcf65a4cf498e30c4f763110099e9adf1accb209_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:62a48fb1fc6545c57e524b1e1e3dc43b9749c024578e5266defc819d46d264e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:aa2333d5515daba8a887e66ea88370041a21a6f3c483bbc4e2bd888723c25285_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:d61549e87a7d32c426699db0e1e7f716a575427c65493f9af953a74581ce41f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:328589e1b67b3322968ac4f8b57193b936fbcac1317136e2818f8792e76a7d0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:362523f56123e0d1b18e7b3028db4d883de2c886e5796e569bffc64118577ca0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:5b18e39a6782f2bac42b00c42d88a05f19d1740d49082289aaac11aa07a48f35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:86961033ea238cdf3d061f8aa811f4559001c4e047e98165b00a8f9018b74c2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4056b49b2c42986f94456c5c3a5df02d04f8a08fc4cba8b957c040e4590fe581_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:94b1cf74b70f1ea57d939327a45cc2202783f1ca1d098ff27ac8aeefaec8f2aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b7acf9a4f00a5134eb1810f0ea70fdacfcf56549ced88a80b36abeda4435d925_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d43c576b25a46f4b13aa9968a17c93078c96acbe364e2fc13e12cbeeb334e796_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:020cd17bf8debf39db376f9f514901b1bb882de052631a01814812dd0a913f53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f857a7dde34e1082edf0e26f92be3ead9148a3c581595a5a945704697d9a9e8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ca86e79869a7ab48486107e3637aa3953201ea36b6b8559ae8b2a04041606c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7f0561027732ff639f602c3a24d89894302fd43879370658fffd01a57a99a1fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:077fa69807819b9cf9c057e592c8e75c8108ea09cb2da43d7c378dd76ae68c51_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1493ba223106394c3d89d993ed18f37af46c86aefa50d2a3da144d1ca49d10cc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3d6a4223a99f958f0fa1c4afa6f1aaa7a584a996fd95140c1bc151eddf215c57_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:917aade90b9dbdb7c59ac5c85dff49ec74b29a27aa330352c24680a6987a9a7f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0539cd95b403a48c3ba7a04e3e27da96798e7e342bb6696f65599c693a4b4297_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0a3991f02157723641d576f54823b42d424e612837f7871ceec21e40633235c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:60cda39573f604f52c427956ff45e8517e498783efee60cb8c7804ffed26a465_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a564cbff84b987d316d891c033ba1ce2299d0ebb655452671498b3de789b6f02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:23e8f2481d7c5f71053408be6bb5831e6a852ee4c9428f2e72403b6fd721068a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:38cceaff79e567296a50b816cd81cf60c695315474c62e0b380d9d0ed253eebb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6301be72ffce6f973f70fc6977632499d2930cfcf23ef6e477af59f3b283e3e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e70213ca82db398d11de723f2dd463c196059fed0639ccec30709332648efe78_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2bc4240c6a9f5abe64db9b36884b14d0a763e93a6474096e23a353cab562c400_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4a524f1fcf7c5710ceec19c651216c326ce15290848e4736d504f3247a20e1eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e2dd70d80b53776a74125790edbd091dab84b8da27545e129f9ac99d7d5d4657_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ead5377c32eb77ed07c2285ce30eccd930ee6348d19977ec8c7f8050d9b0ff04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:27a4c883fefa0bdb0033fc23d93875f3eccdda559d2813fa131a8ad3b24b9356_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67182434ce84ce97c5374f5ab962a79f67777bf02f82ae92be8f7eb5d0c2b85a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:8731368ad974fd8d1e5c954284fce9346912eb4210b01e01e6fc95893320f591_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:bc7dd594fb0d5018aa4dc0d26653f73d1859d978e07f0a1939189c5d2d654895_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:20874645efadc9cd5b6a176a6d76cc1f6ee5175404f7da5e10fea3bc98498ede_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5854e872994fcf1c4c534fb1b64f7f24ecffc120b177dc8079056b6a420ae698_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89802f2938cd3444ab90393b1046d61cbd3d05280432ea2390732a0d0520990d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f6a6951136c7faa7b9bcd0f6c892ec9658a2fa8701e0dec5e45225c3bae52bc9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0b54c713dd339589a9b1fc5e109a7b65117139bd27de833ced58f9716fce95cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0eae1a64fecdc43b68370d99fb14c369c5f0116d37bda62cba7196c0ea002116_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6b167e1a3755b0a2362ec86878e5614ee29226fcc956b2e193666a7bfc47d44b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b97afe9ff8250ec6647976373edddd171f0b362ce576087d8dcac7c4ea4054bf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3d7227cef380afdefd5f5a05001129a389029547c6f5ea8dba4fc46e20793f23_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002f5d99c5fc748401bed6ef7d0aebf2fb58d6850e7d1de4df622c84e020e87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e8d8d468ce7f75b0653d4b3e41dc63bc2fd7e231d32bd2296d08155eb258349e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ec0e7dd227d354544a2e67dd236b93970d393c87c1d6093f8191b9141c40ad01_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7807ea7a4377bbc2df491ec5bb74d324eaa66649fba9f40ba46957fe1a758081_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7a977b59ab4f908549ad66c89473f9dbb84e31eefbe6a8dfc92f5598d3f882bd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e10922bda03c19bfcb9e6b85eeb3bb0e5ad0ed717375c19e2a31c94940ef74ee_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e9101408b3219a72c3e43b88129a6bc6918df42b116ad18efce8c7a1b32e50bc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0618e1978b5b4ac2a90f578af3b8b1c471ef922a3d01d58d413215aae8c5a509_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:164e9edcf185697cf77fef80a7b26eaf42efeae25aeb04a91a7e2afe8299828a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:366eb47b3cb6c42670ceba8966f0ab119694536fb2baac881685e75e6615dc85_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6afb37d303abf20e6e100a4e472d782d6bf063ae6d131852a4ef9cdac53f7dd6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:28b92b175c80d10b33844a1466fe71cb48f48431513dd0c634f2ced57e0fa5b6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2cab2a6c6f64eafdc588cc11a5537e1a2ccdd0cb37eb84507c985cdb79855e25_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c8322ff72825fe9dcc1c4446c8c3e4dd73619c15542d7f483642789e0463fee4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d3ef2745733b13faa31084c3cc345368c89f43b80b2a76e5b10fd7bfc008bcc9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:6ca65a281af1b92df6872e052381ccf15cb51c4adb0ba9afca4c3d3041e9d9e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a387760a9151eb37055ae66aa4821ee114125536324c3404a1b4c7044beebcfb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b6f9dbf0e6927d43f45ac8efcad6913ce67b663747d509666cf0ce87455b0379_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:f7828b8fc7d451c4b252b52150b2278d310e456e4b06de990bce9d123d923b9c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:215cb8bf8d6ed22118bebdc28ed8766acfe0d8bcc2c5e8311d3b4dbf8a664d48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7077e9ed025326ff3ebc0277b0d716efd46bfcff079442d777dd572c35842ba9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7987b5ef6ba2b7e5a9fd3be756c5cab95cd2464af7c9e8459d00e527609513cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8e5fa9f4eadf03465802101457da9e3a618572e47bf8ebd2859e9b1c50310991_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0d11910863bd5a411090ddf070c1be9d58c6f8cfe94eaed1c3ebc9cbe26c3cf6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6ad8362a4cb63bb7bae0e49db53ff65fc60a16f01a414e9f2ab540606a284b08_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7f889df4c103d4fb66fdb537989e34f139c953344fda28b60920feafeb1964f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cadf5ebac4b179bbc456ebc6743a061cb44437675a0b69f825670a753ff3fb0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6d5855d82cc1db4c9b87e58fdcd0133f56d26e44942787c74d0cd27e212ddfba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fe02ef18800c00ea33cc42fd3e7bb5d5ab2855499250279c785ae222e69f537_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9bec401a9b520ec096af6673657d6265501df64d94da332e818eaab70ce54722_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ac7aa75334ba6e157584d2fc588d682c9c841ddb1cad9d03ef0df96f7274041a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0077c7ef1053ca67c87920402ca1cbf21bf54626ba4046031528822a176e0875_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1d103663fd08d4a67877ff23ec32b2d16e290f2cfa268fa89c59c3f296c3b080_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:78baab63d2e3ad8f17734423f5b10cd137d944af647104bd40401f433a9ea996_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:7ebf3a7acad88ffd14b4ae54a1a8fac1eb1d22b6f102216df4586e544d2fe1f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:07ced40602810c0a35ffbed0e120a396076ff01e1d254ba9488a8714d766319b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:080a99a5e9663712b898e49ea608d1195c8e113753e23e403954fc0852e2b8da_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:125008a0bd8a64e396b32583f34c77e15e45e212e7e623ca20f418bd89cb618d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9b8c9e0dba83ba79ff28bda01050caca261f0e723e8f222cfce4a840db29e300_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08c33ef6a9b30a565ddad8d93b0529ea8a7c29a6e0f403cb0f49face063ae162_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5928577bdfc2683410ba93dba0ec9106d1ab29bce79f56a832c06e00ef82fb48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9f0fa62bbcb4f5b18ee1ab7831d634e2faf5e945e94fcc61a204d7a4a5d39d24_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f448d0ef7d1bd805abc57fb34fd9acdae51656851126b9abd3038703592ba4a8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:21000531fed1065562e8e0d275bcf48eaaad2d35f54e81e13a03e9dbe22fce2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:41a99736bd8c61ac43d9cd84f3f21d4d174851c81e2a4039263b81d0cb3520e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:95c36149f02710b63a6c05bd3249027dea0cb332ce600226b6a7aebf4ff73e38_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:988d7aab9c210f5e09de3488b38758cac859c4619f8e8d715176c60b95993ee1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1dbaa49ed53404150877894965d638ec0558f4e17bb2b0d70933d1e93c26b713_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2bfbea264fdf5062c9454ad7efeeb799d1568071ebac6195c8138c171dacde67_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:a7a07a455ee7e89c4702fb1f15c7888945acec38d7ff1cf731129b098050a591_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b965fdf100922a0b263f372f4757fec562f0b48a8032d2c7090d9c8f19b5aca0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:54bb0200c75df26bf82e42db71faef1dc309be87095afb5de60e39d2853acd62_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:63d7e09d2367614dd7b83c41b35b538a6e3d98fb49c03a103f31355202528319_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:9557a3d19aec734063ea30485f71fc2f279b7ea77ef1b2d1cbd7e98ebf7e2938_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:de22ad5dc832ca597947d9eebd182f01721908bb26f8367e077134bc442bca68_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2568dfbc55a8a64fab947b40e160757402d1598a563bb1ea7a42103d2e6c049a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5044508d683bfb7c1fcb538293e01a54e21360f85dd3d6b6d9150be3571e4604_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7f9d5ae402c429ceb81c952f23b0898f4f768b048e87f4c7c193f970d83248a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cbde0cfe56b953fbee3a2fed6ea3cd13e6cdb0dd0fa74414b488295feecdf5bc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2ba313bef314b9e69e1b2a545ab54b0fbfec2d5a6c8b558dccf18abaa7d7e33e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9848ebd13facf8daf9ca0f32295a280ca5d4dff1d48b9f3e8c0b249b616278aa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ae1bc048acdaaf5dab22505faec4c6b0c582b97023409da8ceb84d983494a0b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f8a862ce45dd686fb79c68036e611e15ce84922dfc64f847abcf6b65aa55742a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:11d975797a78fdaca7e28cc15699aaee700b3ac8185bd5d019ecc2a51980ef10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:40debe8017daf2ff3c5b17e89a4ab7e96cb717ae7bddcec305fb1eab8bbce0bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aa195335b903dcf873590deea8e425735760fee97ab33c5b648bfea1aacfa894_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d71c752e32a996fda35a49d7c7ab959689a91197b0e229481891a03c151d48f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:666c36444702f862ad1df16b8dc76f3a8f7b4eba8d63473a4cacfcd34c7ca914_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:836090b24936b955f5b60d236ae328e50ac91ba3cc367249cb5d7762cb15ebc6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:837118a81cc9bdc984af5e9a3f4fedeae4489ba4aa98cd6513dbdaece6acea61_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8bcaefae8c33ff10f758558796e4e90193b1ce2ad3ece24a21ab93a7e685dfb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3fccc681700104f6edd949e78d406f8c10375739f4ce8c5c23c9e85b69b1f201_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac846a2c18b90026c941cc2fcd91197ca909f985f0cfc14e91fa8c0cf2b10b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:96f715b9440bfb17ea68aa161b833ac33265b372e174123bc10dac3eba00a872_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a7750c02c168c6243c3cd666816d5a4be224e3799d9f7d626cf7e64f07cf06f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:32286da133273dd699de38a8ea62c46b66fd0f0271788ba6b205ce7e34fd5ff6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:34faf675b9e5361a23ee97d02ae1257feb38fda6e287b3b2c67e0b2e4e3ab06c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:997ea290d800e3599f44e72cea8bdb65876dba2483d486938e2d024b1b9a4fae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b329d7566ac8f0b7f45be16a1b364e249036c2c8f703af70c9965240f682f808_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:309782f6dc79d9760dde0265959260871b592a5586bf4073e9561e813f316816_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:529879780fd60bb296f0d2656d7d5805459827820b0b07e839909032ec9fbc17_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9a12ba31f5a9e9e4b8114ed30bf9a067cd5b92430c35905224899a819c627741_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ee31620709847e19ee56a6187986df168cc55a41e86bee1488291ff6a0415d31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:16f45167a5407ccf892d7518ca3c7a9912d5d0cc3f07446cfd3a1de175e5321a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3ec816ffcd991bf5082f28a7edad858d9b02cd65f8e23ca2e320c41a33a0cd79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:50e0dcc3cf9d804afd0a8a3f633f36283817569fa1f5b7cad47db6cfc61c4a48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:af6e2eef8ff2eadcff4cd975245ba0cdc56f04931b248cde6d581d2d17582fd6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29b6202fa854ec12e85774564ed5da58d314916d5843aa6032428c3cbf97123f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8c019754ed9656d55c293ce39412f910b0f3ac833615aaa03e961183c4831fd3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a985f0116d10743bdde5e34fb181c4639ff0941caa66a3590713ea5d2586115c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b01b10b5836dae32a5b9938ba42fd4db2ae33a6b311da4e0c54ce0e48668ddf1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:64a243eb83f743985213e3c255f7ae58909fd3a4ab69bce80b30361bc9cd9225_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:995d3fcffd3f156dcd8831241e80223d35b6a150d9d72e89bf639b6ef6f2b81a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:aa7c8a340787569438c3c7515d62384f9a5ecdc53e400cc6768bc92c940efda5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:ee434038f9c8039bb2e2729584617a8d1b2554cb1e981f24a746badcc63c9022_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:772cccd41fa1d467cc54dec80bb7de08fc746507148f6220360c89f3f731c31f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:80c44734612ee4b1c13c995b1583a317e4742755ddd9ae515d6b9c61ecb5f152_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ae27d39fe63e4d5859648c7cc80b0fdf8ab8072bb8ecb34d21790552274a7abc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:cc9a958fbda1e4df8e235a0ae4c62d23e2e02dfcf25c3c18c3dfc8bcc787b7f3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:223602e0d30df9f086cec5c4f63562fd46f46726c44e186a5fec80f57689bc24_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7099a6800e9cd28758ace736f2c602a223f61dc00fd45def548e6d9a4bd23539_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:af138219459f8f23471300a38c65d1d0c580ab93b30c63798d51e8891a948afd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d7da61ad815088b8c671d5dde3b5878fff0083776e1618c3a11594e6f08c26b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:18eace0b9a62e03ca9e882c582a3ca9362a14488044b9b30076447ce3731206b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2dc26c9c7dd35b78f4ed2c520337631bc45fb10076d94e52d9a632dd66982765_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ad7c164753be2cf26a2c69aacb95f5d91e5b1120dac43cb2ec505794fd98fb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5b23ce65b543c607e5547f2bb71866255794752a920b7f644fb203086cabae72_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:385e0ff7ff74b73dac4393c5ed5d700cb3a1289d501917dd44a6adee10f492b9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4393f322b7404940430e70469c0ede12e724564e87c3359946e349cea2304a11_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5ba8673706092251814d05e8dc3d6de7e74faf5829c57dae0e3634cb6e80aec5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7cce8b979af738044110eae0d3f16db2e70178b32b340b7f98c339c6c1c80791_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:070167681620cee73ddfffac875e999f5a32c5ba48fca753ba907671c70e3ba3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3ae7edcafadd5fc3a2ce15754828efe17dd81a7fe95759f5d10fb843d8f0cff0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:4465d88b33622cf161e2df43aafe3fbedbd4e63f833a729df6ec5d6ffbb23b1a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f0dccb2d388210d13763e44e7aaf06712b1c463b73698566b32665030a881dec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:60a1f3345766ea95b39394925fcae2358dd8cc819a0f7b187363bff9f3bd1bad_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ea484b41505f1e5b8ddade45cf6f89e7b22ad4b81d740e9db3b4263672611398_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0a527723fa338e5204f37b50f7c3ea7f46055a91f391aa12f5ff91dfc621b45b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6fd265148a4fd19ed6f39345ae982687a6ccfadefb2dc96af15737550c46891a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1df097f85a3b46c3624fc2b59b6755ec1dd1bb6843ce84fceca2c40b8af74eda_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fb4965e61b337cbbc13b082ccfc8ba17f7c98e3a9946a2429967203a71ab5ffa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:19233828b527446a7c210823b43ab95d309ed58c124ce07bf2cc70f809a6abc4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:953d7116656841f449d6b295f0753a0d39a2474b3b6a4b6d6240d53e357ff86b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad08029d8e31a6c80b9d25947ea267b78ddc0e7f3a97dc1dbc075dc4a02283ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:e163cc3aff166d01ced5f33c6f5c9145a330cd35a7f82538017338ff9ac43f19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:039ccc1b8843a4dae1d65e616c23066e2e921f5f4693f52a6c6a9e0091ee298f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6c5f2e308f308f3892acb46179df4b6bd460b234a416f4414194005cf915ef5b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ed23039296c3dbd7ddce99ee1a538b7b83e32e827932e3d00b929d0f9de13a91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:efccb4622508c44f67b3693732b8da8bf28bf80097723497289cc3cd3180d19f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:77dfdc4b6e35954e750b90627d720a0f7a3cb6fe224459c09f5de359c589f939_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c4ad92a5a5a030bd90ad8be8df3914f70dad8fa8e2c984144791685c7150132_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:924c6a190d3e2ccf26e3486fe09b892629736bbad223bf608cb02cc4ca2b5991_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f75d1ef206cef5035c7a4e2d0f8e73330eee059919cc4283cf0ae8711a3e7865_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3daca8e471b071e56c8f9551af5d9afd8c2eb1e29cf87e09dc48214cc885e262_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4a3b3272a261a24b3fa681898aa7d0c55e8a8f67f719200e05e580b0606c16e4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:683faf9d19ecd98b5cc92545e3628a1049b13156136f86626896572e7401a356_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e294500f174a12001306f888e6bdf9e10d3d30bf8554bccd5c82f1227de196b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:08d7cbc7bf9e4d19e36b4fd5d27040329982b353032c525179227c3e15d30f32_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:58b18bfb4498e2a7890ee5979598decd1b9692168ee10ece35178e9c2191f430_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5eaf2d7d197bc327adb488bf3514d2ce6886900164bb8a7e3d8c92061baeb783_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9728bac89d23922ef66913d370ccaf943465509f8a068494d517984ff490f707_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6257b90eaa900f50cee0d5cf84c105158f70d9ad4a9829d5208cc261de3ab5e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:7b851c7bfbaaa9227d15850922fc76f76bc517f60be3c984e23d339fc2091eeb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d6142179c8354154a885955351e093aea68de58f0cbae8ec631da2d3d8cba63a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d939f022cd84850c27b617d17d71edd7dcb549908b74ff92d5115dcb5149df28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:530f79ee436e2ba7bf71f7cbc3b62c3be81665f5207555dec663565772158b99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9aad9fae53a218cf8bd83d50b3df6163a9f0ef6fe742a9527d0cc267fc8164a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c43b8d25569a9a26f77e1c1b6be0fff4467a9dbb8117ff562c2e650a2a62aeba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f0b3d8e6b527fee7bb63906136288b117ae31a38ad93aef266b7e0d84dff4f5a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26fc6ee878e8b9b76a61d203bfd0e01a61175ae9d6e350b4c8a01afc8e388080_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:93b66467306d137b06f29b307a72f45eb3a9149a15cdce0bbefd93a9034de3a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ada0c79488c2d4b388d12f9e4238054ec9e038bde604659fc70b1c368ad36964_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eaf2dff09f9cdbb55d3486888f5e18db19f535767aca754ea0ead9129bc6ca0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4a738c52c3e5bcf3c1d94b679aaea8e91b3cb3a3f981be534d8ee1274d8455c1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66d6f7a10465049938e81ddc1e4c13b2b375b2c92b39af99b2c7fb8bfe2d5e3c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:75e8df980f8d21fae7af1185852e235db098190d2e3098c7cc9086236a60eeba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e819fb1752cc974f7ec462dd49c52f9575c7b0db53f8cda50121ce1a391ef0a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5c0a5ac804bc8bc5f5e368bab64945e8e6b506358e4511387869f9bf458ba3f3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:9f541ec9efd0d0553a8648c8048c7b91854c3d8419e07c909e621d2ff5276c60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:cc987d4c88966417b6c45bc66dd878cd885b4805c9e2885fcbaca1734e7bbcb3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e88d308e0ea7524be29e017096eb77ca6df3c8b3ea58a8a6a16dd7fc2fd5949c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:231178be9e1d4d547dc7705f82f8e529672f47786de781ca53424543d9b1e073_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3dc25f71c79a131cdb79f72e3c6bd2a3c987728e52d3261c5935f15b1466150f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b05e21c1862a49132611c23c1c0b589c5ee29b98ef5711244a7c32438f55f7fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f1a5782a8202fa153b78b53324954109911991dffa9d7997229da1c6ceff7d45_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:17bcf0374c1cdded8c518835d832bac6b8ca75e05efeb0a6528e0ee49643bb35_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2873f8aca5b0ead479497c023010d6cf324fa893522eaa924f10695a63c1045d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ce52fcb8c19848e8fc81e8cfca9c47e1a257339eb96e6a5e4d214066dad9afe6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1f93b71bd8b9bd62776c67cd5c41b93f94b4b60b58a06625e7d57548518f3669_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5599c06a31ac2bdd1a8f190f5095a1614788b2aedab9fc4f454cdbdcff9bca9f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e79429feca8812a6d1bb6316906b670ccbb89c506d0f47a0ec8568cd9975a479_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32526be8ad65ea6e3f70126e66ec2494364930f90aeaae32f1ea3611ac7e167e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:9575d057a034bdd890854a08559cc08013ac76dd0aaf2ef11e26a5734be590e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d6f6a6f074d7794ed9d7015ea7937582f0ad1d07b35d983dfc07236fa3323bde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:7246b6b2f38d276340ab7d46baf8e67166639d6bcdb75aa901ddc09999fedd92_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:87a0e8e9d89cbb753a2507abcb8b0b1b3258a7a88f5d632f174e6097789cc7c6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:96069c3067b68f1e2942d7758c89426eefd21722db2d0b08ff5f1db39f2b12aa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c2401f994e1783a28eab6f7289a25a6dfb9e6edbf6b424dd0ee9320469cc3a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3eaeaa507833c96c48161f8fc13d4ade13b4ad85f397a41574326e7ef81239a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e84c44ad88440bde18b3f65817a1ffd69ce15d48f8772dd82f5984d68c73928_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6914c074989cf18597497721c5b4006874a7e9a12fff27c513f8e6ab049be83c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4b2274d948f48f8cc0df96f3bccd2d610034ac4495c977bdda82c440b65092c6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:72ba74f4ad3c5c803af1c9388ed1c7186295b74429f7466304339f22deecd40f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d47a6d11b74143b03ababf249a83e8ca576752a2ad58482a2dda2986d79e7098_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d71b697e5c67952876677ad7d89394139d322dd6320943c1bc32fef9c501c326_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:3cf00020f76f7dd6428f49aee9060f70f2d5d73a7579cf8400ba22f8a3c16364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8a9fc2fc1351bcf4a939eb506e5ac91788d65c5f1826c46d3b41e15e8ac7b3ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e16e35579e3696474f357bcd4bb3c77bdfdb1603b971c3267d08f8fd119da62a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f3623315e94aa6a0748d390674e9f2f8632bcadc5b8ccccd75bc45019cb5a9ce_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:bd3081cfa4a3a02061a6908b469dd9a0b987b5fd1dc73aa67bb2dc05ccd2c5d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c84b8c416b3b543d4406aa42eefdc1c02c12f2bdb1b7d56a3e5c0d9c549dec44_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ef6ee4f9fb6e0ebeca08a2a2dfd69cc6b5baeb5bdee0b3158f575b14398f3ad4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ffb6610a0f2627dfd68731bde61d78df97e4ef5ba769dbfb9fe723dfff0a62cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:9329715c3820b10b14bd23f2f3e89ea1172886a3c61333d8b099019701f80619_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:cb9ffb3b3c64cc43b15f52a40235df199172800aa837ee2fa136c785312126a7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:834b63c9cd783e684ce59e99d4b060af5f2d6b6027bc62793e511bd5ae91afc6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c362a8609bd2a9b6ca073545e2ffc732949b1791929dacd899faea3c4176e984_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f050a78d1622d2a10a4549fa7d2340eacdfc80e4c1a628078a4a13006df99e35_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f32061109e6d1b72145ead1598d0a2065ccecb2ae424e743dd613b03992ba030_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0650df0f1f51958baf5fecd36385b4ad6afdccfc77ff0bdb90fb140a7e6a72af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4c95f82bafd9f1a3207635da63f752252d94cf5d13405748bf9f1dc6d4e5f9bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:70ec142f9336133ffb3e4caebd30e579d59bcc3d52a3fd4c4642884103cd5134_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:11a23b0b5190d560d8a7e45c7ac015f71c18fac0f1672f2db84c55ec7d55f9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e04e8d139638d3b8444961f636909cbf640ab494b88a738cebb3c6a7805e19e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:503da2bcb8b582dd98c685b81bd031aafd71e1bbfc8962b3c8b0ea9110e9f69c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:e1e3d49db220a1e3f4f540ec89e06b8a4bb7dc72cefa4b96cb278001154cb21c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:12908e94266b5a90846f50b7fe8688d66c359fb3fc3e9c317450ddb65b455076_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:587f806a8e6500d4dcced927409c0b582a658fee0f51c31c79736f8c31c3dea7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8c53297adf899ca1152c61b10149db660a9146fe067476c82114287f564ac191_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e530b7dae37afa62a6c9def8c54b573975018b94b5a56fc88e218792b85237e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4cb9d96442ea8b54307369d340a8cca987471b191b21c9463027c9bddd754074_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:791d876a5d256f592916c167dc0919fd16e1251317356838146a5fde8fd8a6e1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a9a8d43364851f839ae1bc62a807a983421cf5b41a7488f8da7e68b7261af056_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e1571e62821f55bcfb611afb286ff61773a16ac15a67da5bf210b5d141a6b3ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:21e4959e7a52ffdfd8df79a73177f02714f8689270c9a4aab4f390be59524042_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:51a465dd014fe567fc52613a127c932e386d2a6e5f1faf4fe1cbb1e6becf7e4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:64f077c897c6ee0c9db36c7cc4f9913d1ed66afb822975974c40d98fc21bead0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ed3e46a857f509e0c8a08c750cea6e1de65bb6a1f86933165b36ca5e45171377_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4b47b7c763f063e8afe3014f0f902d55ec6d1fbe832c2fc2f0585121f68c618b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:affe71c5753db62c3117e7d4d8d3a79f3e076b740fe8895b5337211ac6809eb3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:664fcca5d05f7993a6ca81942ea48894df00d46728bae7580f534891e47fa72c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b37fe0e3a3212b0e82bb27cdf4b84f4423e4886d2a3fff5ffe46be761e98aec8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a2a838ee2839658272f41aba9d5e1b41fbb05039c1aee8a63eff7d14d7a1f0fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ffbee6c294475f3dbe6b73884fcb411b1e5303f9b549b7adfd24708b776eb306_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:43fd6e0b0d869a25c61ac074076a78a7f8f389a0c5247af03e7ce51392e90108_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:9f05231471d861b8e8a788a6f448aeeee16693fceea9521fd87e4f6a6b6d6c9d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:049dbb920b57cff7ffb88073192c4c843fef754775862e4d57d2373637e45c85_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3b801c6c05a17b0b1c763f0a87d4908ba4980ad09aa8f12dce6f3e11b8ca637b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5afc27dc982aa722303ec6aa2b10cf727f2d1b409a5a77e0f599569559275b76_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6354ab3fa4a9e9cfa2c51da14109a1a67e98a3b43c346203ba40036ef5c3665a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:22f52c4591a8ccddda25dc4a1eebcc92010f49832ffc28cf935b0873021b2f96_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ab74018d4cba5a5f1ed65e9de515209321ff6be359ae0958f2a1b73d799805b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:65b2efd1ededf1a89f9e6a3e12ee8c7085a1282b2520b2906cab1d80520c00d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:98d6f4f8d76d6dc810ca3d927fcf93740efe1a56fa6100c1ed1e80b84d1be21f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b07ab0a485d53b9ed37a1a1b244c94a70630972020176fa7206d5c9dc40d9962_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b4501412341595aa8eefec6973195073fbf3d961cd813e21e02f3cc14150e223_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c03291d932607165444321fb2fa980104e60ac414920c1c05c499a898b2afedb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e1caaa1ddc51954943c6b44448ef50d7113fcd1f8aae4a84fcb24749de315e60_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1268948f6dae5346a6a8052db8644297c1b98e1732d64b24073d959de18aa22d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:458cf14369629b17e735598d3e6c24eed47bdd8bfe054034b5a60f4f40b6ec4e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6d51ed70ff145e62ae5d22d42b7cdb071e06053d2d456bc5411da7265c29c96d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c11d63f511b868c53303849b22d71273e844679808aaf604c87b373491a99db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:043460ad9ec9a4b05671ebfac16b6b2eeb39e3ebe5f43e3867f3767b7b2f993d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:62420bf7fc2b91f60b32851f2c099ac5fda8083e6274d2a5523ccd0ece3b6a80_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:77301f40eca2b49f92f3c89a93fc6766306d39013350d635f0bfeff4b98ae012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:b86db4181d9fe036b77d0473dda243523003c19d0fa5888a54f3f19c104a7e52_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6bb49580fa2f15130fd93f51e34f31f963a4c9b8b9cd898ed573ba88ea24a60d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6caecd5a01bd49eff8acad2449074c505d07e521208af296b0cd9f0822f54911_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ca38c682197a97a075635209b6091a60ff412df3461950a24d1d881f830fb3d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dd9a440a68817b45e6d2d04b3c31feddb82304ac1d246c20c0e33355631d9624_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a251f2b5d7f716fecb5119acdbbfdbb9b535f2c6d8fd51ee0c57cef72cfa1964_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b0188af5f7dcf5f286e4ec4f331062ec77f341391c612aac52e017df26f89a89_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b3f13d71ce9dddbce566d9a5bb5783d3e5417b8fa3cae427f7f74997e4a8c8ed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d6384ac004f36838bc5b35ff63c4d1edcb3223c0a3907d4f099c5d85ab51b014_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:db20ce7a947978ea2646d479eab935796e8cfe482ddce01f3675066b221e2e3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:eaa77c0a842cf32f826c2ca19abbe4020997810c35e079c0c88a0a9361323893_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:59988d13b37880c4b79bf8622161c6e975136bdbfb59c8fe73ee8e39bc0f7fe2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:f6dd660a76715b8eef53fa459376986a60d9f2e7cd3f176b0ec5c6e8ce19cfea_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:05fb046ec30c464d04a70831316de4af2c29a226be1e7f73036c90899e6bd193_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1da080de78222a6c01704597983765a751b1b4544a81168fdbc952ab31f11a54_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:45c9e9816f3b14886661b4c82dd75f87e242f4ad3e0c1c5f264d1a1839e8cff3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2ab57f0587e4ff1adee3ac4ca2c3383955448c0b26849eb24c77aa3f4cb5e959_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:66b581d789ec455fc8bd8e01e980c7fb183bb0f6ccc09ff525ffdfa4aafd9a52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:721aa2904e0c2d5c4d0e3134fb695b6613e74809e0faf3faa949c93b68ed168f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a84aa018bfe05a74226938ca4e34b58dde33019aa093e01a7a60a8d6a4c913ca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1a255a287f3100cade2efe8d8b75ca7f031b9606f6d8ea31581a59e0ca38fde1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3778fc40b92ab82012aacfa7589247e6ff79edb9aa918caf6ba6c5fa3159ae61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:60433084081071dbf7cd337a3769f60ab109201e2ac323be2471c62178d87703_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96b873289284cbff34ea1c9f852dce31e5a72669f204d742288e266cc3a19d21_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0e2cca7da188aebd3f4445715b88a3f4727456cdfee2147e7521059722162fa2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:23043c95c32122eaef725c3e2f65ea824e4f83242614d2609e9367cd6707e454_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:68a9dd5597bb207e899a4716a7642cc28260e059ead26fc84d1e48d4e6159683_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c1a6b704c85cfb829b9a3421cbde16b5011d2c506143322e8f2563d6a5191fe2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1f6f4d1a8a3c89486253cd025f8d0e5aa34c0ef221487aed5e4e968e8d810285_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9955ec574da8c2821d783edbf833af9c4b4d4a2abcffd603b85d706333c68111_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dfcef3e2b6dfabf0abd72dd9743c91ca4c5c4bbe5bfe7488c2a85c2cbf467661_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ec5717ba7c764e22cf72a5792423078ccb9c3a3bb06b92a33eb6014f03f82fef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013f0b271dc70347bae313209781261c76127a19b3a2f8bd074d170a84e49047_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:19c6031d8609f10b2b075201c0ccbe6f26e6efd03f567b485b6b327a4f6a7fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:304cad693bfac84415c3f6311edf8234f412a4bec7635178c963e2f3fda74d44_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ee8bb516566d6a9dafaa65ae52177421adece839dd4db80426d3d2ba30a1ec10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:371a5fe6ba1f62960a89e6b1050a2d324c2c91b733704fed2fb0356ff2cd9524_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5eb44886f42c57f0e736d6259b55ba561beb6324ca58537e253581f6570b22cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:854407987817269c3069c1d1e4ebd7441465f971e28d391eddd456371162b449_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e7184c5af00f0dc4551f17ef5539952c25c37aa32d596514e463464c92ad146c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:039a4cc5025db0cacd9e5dec922d9cd51194cf0ce903904210000245c5e7c048_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6ccfe8e12098c660310fa2af574a71b7b27b23050f6b6c524e9c1787c7127110_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a5f3adb97a88b5910f2b5375e05fe3411652541687262714d50105f05ca31c34_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:de16bed38709aacd8a1c25b3e68a995631d38c12d9d28924360fffcc17adb0cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4cc2ec3ed32c991240703b0a40c6602db1320fdbd328e887b517a11474149030_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52e3ca4eb01859dcd5c4346d73339889f494576b19577fee88cb1800c84f8fc1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:949a7355b5e946e1d5c760e14244073db9df660fd8b28a3c6d06420dddccc298_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aca1f2e8b0aeb6eae4a77bf712b8c255dd50526c76e843f9960871cbd4abb6f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c075a7526723ebf1b921ceb895e63a6d5f3df60707afd79c4fcf1c9bb6f33e3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a952d0aa30010721e7a2cb903e30260a02f4a9dd9d83eb7ff02d2847f1e76e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7a7b182e9ec23abab1daeee26897eecb99e1785569a62888db4b54d6e897568e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9025051729370f663bc9231aa612b0bb51b35bc6da68f8b504dcc01c760a1fee_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0232982c7a3431d641fde0e3b3b8921f855cb872d470e5b9f69edc9b573c2714_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1e05df129e355b9a76f8bbb8aa65e9b4263fb9e888639fd2fb61f79d6d212c04_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:89451c63f28e8e515b4529c8a834f6e8e558179ed3d4f973df539a509933f942_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ace5b486176727834f9e1ca6ce46b4d0ab0bc6ddf651f4142626b543a02c61d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:007e6fe2b8d7a384cfe07309e8a523bd1b7d3cea896f3b7f29908a8d41c62f16_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3fbc6e29fc388b15dc77aa93d2623ba9a23db114399f3b07da429707a03eb8fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:42f1e088777be6853d6845aa25cee3f46df776aba71ed1209285ea853dcafb95_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:73f6897c667e3fa46703b50ec857958738442bb7d8b95fae051f761f42a01605_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:3f69c1b708c411bfdd1a2f5387e6084f2fa28e1c4bfcfe136db5b66377918bf9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:46ba8317ce0d48d6d0e8902fa4b6deea668d6f3c9c6c15c2a3aa6238cc06e52b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5e919ab71bf57a160c89b6e5964525a708a10c7cfdd87aaf911e57e6353daf23_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c706a7354b0006b9e9c7c351954f179d6c50cc2b872833bbb59214ae7148ae3e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7439625194105ec8e55d4f7b3acd13a5f2ca70da75f9c82cad5f5693b604bf28_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ffcf4fc9bf77edd7944824b25136db6027d21faef80bef9d7b126b9fb6c0574_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8540ec8af82488dd6edb249e811036b1e639a74f892af1ffac1ab5d59ceb0abf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9b497b933ce2f828025dcf4390c7d53debb2418394317da9a8c52ba82a6f2fc0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:37fa7e2453893831aa0ea8bfe068e692ca4f1ffd6f69afca37a6a4e7ad401c49_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:63db7c4a436ffd18fb03a7cda09cd47844691a8025f2ab04492ff405a85ed144_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9a30469bc5882ab2711af24dc3b3cbcbd0532f49bfa9dead772070c5fd1280e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ef2e5a237cc5d69647af1b904a902e4e216ae8480a54587357fb135b738db120_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6be6d5b27b6e178e0806938850699d1e760c4d456ae517a658b47cf5a1401a2e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9389ab668e31d432d3b2d44fe11f68df7f9d926179d0fbec8a6d1b30f489857e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ab20bef5ffe91fc06a7dad3508294cfb9a72745da8cc0342e59f515db447e264_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c5c16e51700e2c16c6fd496225946c033875f4fa4c0174ea625958bd62a7ac51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:37c574ecbe02ca7bc99355b6bbd952c392cbb2abb430db4b752257306c37bcbb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:db6cfccfb142d8f7addac06e4aec0d6686361bc15b459d169b0df831b1d00160_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e813ed4ae0135da60fc1e7e572f6a46495e03764c96ec3c095a4e61a8bdd338_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2766e79b9a9a3fae66e1d331ad2fcc2141a4108e816cb1f91557bcf2e045882c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bfcf47037dce9565700224c63e19aa2ca8935d72e355c08cc8754cbb84b41d00_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d4588b2594a2fcb58e676ea0e8d11372e0bea9deb53824b47a4d8f3c63e774bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2bb5a02fa2032146aed8fcae80961e9a6e37e1c8a13a368ea07d6b124f303519_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5998439ba17cc0cdbe1bf48e888862182d6e10400fd9df74dfab53d161f0582a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7e0233017e706ead44793f1fff610a4625a22a834de67511cd66efb208a24a47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:97bdb1cc0033381c61bc1c9abeb5f3ecaac1adc70e91b203fbcbfca9a9ae6c39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f4605b13a1cd445835bfa2bf8d2f094533e4b731ede1d00e6e15a83ca924bea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:20955243143106da7d9e730ece6e49bc84a18427ddce20cd90fb5ce712e5477e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6c27e11d2ba7f408c9ca5dc0bd898bf395b3f773931b04c558759493e0aece8f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:7f08d881878f5d69360edd1be3e1e5190a66df75a087120abb37b2c0a78b4473_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:755632416caf3e2fa4e8c24958855e78c74b12d5e3f2dcae93152ce06274d428_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:847a5098475d0ab53e351d52148f5a2211dcc8090e03e17dd7b161b7332465d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:93c4ad9c017eba69c7105c1f60cba46f201b39da79f5ded60ce13a98d7608e7d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b559c70d997c0ce2c57e2cc3f1d3160f5ec2367c53c8d1fe1d9418b142c5c577_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2674a13e799262a6ba79ba3e43c2560304a1201374272e8622aa1a5e3df33d66_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6bafd363141b2012cd318a353cfff9c109c6ccc90d227587f2d0e08316309602_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ad9865c56a3ac1997b3aa16166966f73a24b49a1a8c71edec2eeb795016b849c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c2d53d7716676842974f1dda29eba47d03b525614857591426a01b4186ad2edb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2098ea118ff218c9004be57932760642db74b9387d11fd5376593ebb3b2f13c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac90d3f60f0a9de597df5344adc3d6b1478b96d47fad0ea71a00597e8576b12_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:81c29521d2aa0a7d8a0eed047e5948d145c9e4a72fd0697fa9aa613033e7faf9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d9208e402a04781e9dffbab5c989e91804b14b6d8a5f5f29a79cc54f85782e24_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:71602c5c8069030db0fa7373e496c7bc23bba707756f57a082d7eea44f61c9cb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:72d17c4acb7d58df68ccc1ccd8d7334f35df3091d8bd8e25a949e3c7f528de1d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8817af94a399c898fea21c34bdd60dd2c927ba3613436f79aab4906ecfc92cfc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f9d6ccdb270a01e408d70d01d692955ba92282ec5e577fd695f6c51289edce2a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:005773da78ed8522b96f69d9e53c961811e79340b54d49dffdce92c59a0cea2e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:502e2c5f47b1b95e0ce1e3922306ee37c604845d1d1accd92181342b473d3b3e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6c68854cff5a2b94527d6230740551ccc74d1161e7a1bd82d8119065e9e764d3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6ff88655c6a7e78def695735bde806319fe65b5fb68ee0c3ec2a82c6d80a9b00_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:179c818cc5f2021988e1b71e4edaed742e62d398da747cb548896697617254a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a75ee91ea3ee181623a22f9e54b00c5d4b2e6cf3f222a912c8aff5a29dde1376_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:eeffe28791e4306c642f156e83c6035bebdff5d1232174d56ccb09b805f9271c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:fec4f6e102887cd0d47167eecfee667e3161dd21a13383e96ef3b36f8e319076_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:167bea17ac181347213db54ace41bd0191b77ad20a3a355e56c90fefcfef0c1f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:734b7d0af02c1b79781846ffd3c617b27728ae053941b112d544c73e0bf3a3b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a7cc1cc44f13ea307fb79522996cc56264a0e036bd5ab9134b24e4a0f6639843_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ca75fc486998027f4903a313c7bd742711e2b7bd11e55b1e0c557582ca3d1dbd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5d23f5103a7bb7c71ab5b79c2149be46e4ce746f3556508933593a94f15ba945_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b2dcf4c5a2b14b677212eaecf6ec3fbba8bef7e21d51a437449456979b5fb551_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b692ee1154fd6b6a8fae68467ae87ad89c8a528d50599db14f614c7f08831d81_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fe7bd87ddcdf1ec088e780a9e3421286cc0e4aefcccabf17d1c50e4a4656b2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1775e9ce012c333caee47c4df8f9187d85d8b47f6300e3a7ddf6d83af462986e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5403330e0c28b3af4b3fda34ea84b3e6edced89649cd00bf6ff7f8352d2f7708_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7e13f7a4f2a67e74b36e39b5e582b54a8979c270158789c658974993ad351262_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ad1b944c7135118573159adb6eb359face5ab141e8328420eaca3999fabd8575_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22ed10b10973b3a91b30a7269a88013439964eca8e6954fd515442d543bb74af_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:74dfd09f047da2dcdbdaf8b16a3aba913df216cae2f26898c4f9fe423ff6e330_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d7f0f0b52c3c3c7feed13d3ab9d70fdfdb89af06210b90650123b362444a292_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:88732e8c96326c07670db570f1b1549412775fd07a66b0816f227d1d4320a27c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3e0bc6b1b9cfd488a3cf5fd19d5a6d2839d37bd609c08e6a5a7a9da869ab3cbb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7efa402118210c406818a1791109dae10962706df8c04b290561d0c784f8a57d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:8872db8f65a31459cc63eaec8f03d40ff2b21e95871e59e3bff97b6b0bc9b9d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bc298ee8cd84ce0a44f51ba31cefe4052b67cbf9ea559fac77de3ca7a02762fe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:1715daa2ffc4a6ea78b5de1a1ffe556d27e3e9aa1cca1d6ec9e53217f27b7ffc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:32d4fbd0cbd715ed35ef290d459834423dcf6203374a2a480fc5513b3764873f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d22fe92972f9d9303f541977a3d753750554e6675545ad7e511b723c3869c4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a51b74a21651e21c9d8d8538c2cbf9272d09696abe8244cd2b1290777ad452b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2a82548bcb003f718c669be20b0abf13183fccb5d7d4e34a17e9be6ee08dc2cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2bb613f365004e6cca2c81baa7a59ff75a08efff24294779f54a51296a4f1afe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2e010df4822fc8ce8b452dd6d9381d38b1dced3c0e429a9d88e02ac61384c825_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a8ff1c3b2fa1dd0d849d5cd35526a5ef2135bfd6c551ecade04e4744ac595453_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:86e68bbe22d576839fa35f704596b2f643c09e3cd755fae8effe90935f65ab10_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d48fa90ded7d3c77d535abf9eb8f56d32e1567a3c292686a7f76c6ac39b5c6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f781a380867adf7f20c38114cc8d7c751cc84faba5fbcbfc67b721793f017339_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f9d1a4c9d0a5404e8493a84f94fc1715d6226b22b672f0e378157405f5a7204e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0696026a1a59a9227aaac743602e83017e0281e6726d94d46c20c69e61bb6ee3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:18ead28e318b6a165c6988639f9361dfdb3b7936c026f6043b66996e806be30c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:64802d951a8cc8294fa9194e5778fd8ba178cc2dff80234d85234121013ee58b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e6adba899b629ba8eea41574e66d8ed2eaac9169aae5fcb789aff787f0724b73_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:06d3718842b1f074dd7b6477dd8e738e91ad243e06e466cd9cf8b08d7b7fa024_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:220e8b87b16dc9219b324fe7b97208869a17d1039e620bc91cdb5aec19d4a0c2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d85785005a4cf5e4bc26adabdddffe345fa8827a0db2240d01cf64a49747675_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fb190187adc311919da380eef951373ed4f907a07606af0797e96cd7d253f20b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1d5caff7082d26409e72c3d18b018f01178321f3922a0868af8058f839261d3b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a0968a8bb5df2b0b41bf55b06f11397a4d0c0ec290d22bde93fcf631923091a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5882d9e24bf330ab1bd022877c1f3b711a41b329c46c64652105a1b0a1c24cbe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:a7f9b163518a7508adb281ab052ca9e1c233c9ee5efe37efad238eb0febad187_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:059a0c17ca865b86ef3b3c19cf641d3dd43b007de861583f5c160083dc52a012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7fd099e945dc79ff47d6aef25ab62b66920ae6e7338ef2da01ec5865970bb62b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:2461d40854f69f775c2643a67eb8676729f4fde44b8ad6f106b86b8a66342f67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:c69c4ec8cd052eeca122726323294481522580372cc3c948fbeace53beb74765_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:05f0aaebb8307b693452309341fef6e3bfe6912a34c1a9d7ced1be398d81351f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:0a46ca252418f181a86af41b48cbabda464d51f9d9f44792efea11e54ed2167d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8e9b9f7048b849a45ea2edbfcdbc1601d8a11cb4260d5c1d89d85b5ed462e7ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:cc9d2ebecaf2c78d99104d0a3ff23cf7748e42f13d00215783cac971193b1f69_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:25e957fc0f6723e791625c55d1b251f6b7a894e15d74e7af29e004add4e3a6bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:42a64c335c5af6c607f435c9a09411e789ba8b66d4df1201d532f27df5b9dc04_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7c98311b8e0f89f03a4250cbcc60ff62ffe65c4ee1bd8c34c31b623442f348e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:abdd622e2447490b74f285cf653b9f6900b904aa6750b34bf9a39f09dc6337de_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6a3350010ffc87ac68f2c8eff3ccd707bef4d9295be9aa7d5633e83b3fdcec1d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9ce9629c6a48384d0dd7d325fd61cf62b8c290db57b2917a8ed671f7e3d4fa9d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a71526c9cd2f4c5f9a397348f1ebc08590caad252cf3bce6e5d07ee6c77274c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9cce3c5b53509924dd37d4d3a250925226372f26b45bb52a9dcb46526b1f3d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:137c1f39ca66f98cd37c8a9deb3279d0acd18c24d70a88b6e8d9033a1926fc0a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a38f0412ab643c849826b9600b42aa8975f4d77546ed3b36e92e7b2dce237e4a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:de2eb4f5453b3a0463c333a1770034a9016eadddbe8a07c2666c3d58367ce3f9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e463a6ace53d6f8eeb652db6a69ecda86245cf3a87cf10ec7735738375d17c9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:348c8fad1c84cc45b10e7add9d5bb5c37057b699d6466e18c3bec3d593e1adde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:37bcb5a159c17e1241a4e5add6d5276512ce99418b2f779c1e2a976a099de7a3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5653e3a360eb8e725d483a152ef0510d5e1f7142666cc5c6e27f62965f6cd08c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:57ea23e19a26640f9e8bebcef70419d22c23ff334878e89d4b77a894acc2ce7b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0d0633b8cb1de498ee1441b5e28b4ac6aba808f6ad37d3c2bac9f01c94ff33ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:702219e963a769b7dbe97a0f9ea6a20dfd1415097dd6f38cf31cea657b1e4936_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:aa9dc51ef8366806a19116f700448b4c0ea9dc1de7fc9f2b8191872de744e591_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:dc192484377ead9c1805632aa8a8252186c4f5f0649bc30ce521b67f521c66a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:02a58199e4b61c2d8854772359ea02b3abe946e3e67d1cea7ff753c49b0ad3e7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:35e90ec749853c76f098be940be10e29e25401c6a1064a27843f09cac052378f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5fdb8a778fc61b0900436f22aacadd59f7da453af25b9b2eb9c22aca76bc9b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4554e982ba99a234ce6c3717e3447b817fc1c35a384e8fae9766dbb4f22b868_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:3d5ff34a3f9281202e3c0c9593b481d9b16a8321020caca71fa4e3b4d6527579_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:423f3c92919536202042249d0e3911b30e777ad4616ae8f6ca9968c87e14c33d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bcc604910483ac005899662bc05a597cbc8af51dd0c1dbaa05d521b95cc2ee94_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d76ee581c268ee313f9815c181bbbaa91f976c2da68a7a5dfd304e62f4e4a003_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:213608462f3f06ee113095a0b0be07ab8b1e8c194824a11f56c67392729e906d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5f1fd024087262006ea5a3a03b1eaae1590be13fede1f318987921df0c2c3800_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a5d235485bcf72b816bafa06ed24b596b2b72f543e17e845ac8b79dc16f88a86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ac8a2e047872045fba2fc0ea483a700de6c6398ae2cd184bfbdb021969d6eb6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:58dc4f0cae516c3613bcb01833e42399b2db12bf7f82c68701baace24fc77b12_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5c793d527449dfb1b10921bc56e8a31ad3d0f8e05dfd19a1782a67025b89879d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5ce2fa8d80f65f80b35fdce9568eb02d1a30252222f8593f60d3d2ab85ca9a7d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ec31e82b039af04deb6b8f9c13810a61281a3cedd616aaeb03315bd3abdb2d6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14d78d97d80007bbfb90b2db94a3d0aab2c5f73e1785fb27ce570cfc5e31c964_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5ed57df32a4594d7acd4e4411b009c6bcfc54b2e90a337f809b8a6a53e858480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:69275336a4bb1cd9093233541e6f1e29ccecbb8096673ad0b1880d81ae454ef0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b889a52cecf44d33e496bb09da6073217d856dfbe6fe78149669ec2af3dd4f63_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:39348b1628d4c75591d22648681ae23c441338241b48d2ed748df691a56dcd36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6964ff070c67d6f71068014ba253466e6ede36b043cd0f8e3908a32d91953f87_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a274ec689248b4fe3431501c0045736e3b24df4afafcf86ea6d0704e22586c27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ad6f9a3b78b0e98bab747ece64657e69f301337f4966e3f40d3fe0588d1a530b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c28651ad376814116ca3592e5df4853dc0cb04402d825a2d12812ea6df06a4b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6fa533909fe009e146d0522a95259e7f80399cea0ced183c308e146bc51fd9bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:30c988074c30420793cecbd4d3912868197661b61f00d01bb8fb86f4aae2aeab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3dd6b992e2620c2d08de3ac99c687a9b1562d1a46bc9159a14e34abae9d40f36_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1200e38684ea24ad9e98352ad84e3c3791be192f08f22c77197987e548c02939_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2fa632f63034c5e2ba411ecd6a6655da1f1b5cd65e05dd1c2063893c77fdfb9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6f9a533d4e52e87336542eaeea992cd22d2979888f7c96d1537fe89a7a186a8c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:784e009ef59f00cf7e127d811f2cbb30f8c4b5c489c9d51985c8385400ce97fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:3576099906e843ef0a4639ab2563ea90c9c875d6be59b1bb687f59cdcff0acb3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6d0bedcf0cfc56da79f55effbb2315fa7da2a126347bf0fa3b21fe96b9c3f037_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7aab0df04151b6970f04174e2b257a77615be9eb724121ff29b59347f8edc8b7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b9a4f7fc7ef59029d19640802db410d32d52a35bf7c8a5ad229ce1e0b559614b_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "ajv: ReDoS via $data reference"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3198e3a7911d65997d84ae2c4a4756213bd6169408f8e5b4d4fcfc1312ec221f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:75b581b7faaa791148cfc9a5e5b4c87faf3a809d2baa0fbcec38bac757007b49_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:af1751213d6286401c0e1d177bb2952715b50a255dd0072452cfcd1a239c9be9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fdc295c04d946e1294cbc811e5ee20827cce284c7a5358c9c6c926f5afb5fc7b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1fbf0bae66e3d3feafd7a5d800ffdc203ad1171d41da344c7bc899fa9df0c439_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a83b03a6cc820386376a5e0b5ac0bc43147338cd0f77ba6b20284b93cde06b63_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ab5dc4b258e7a47d4a05f2f4975324ecdb53481bf591d41dad10543be93ac59c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f6fa7b17816eb0b9d73c00dbf4715a26458d784e65858ebba255b032a5a2b3f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:565239690ed2974560e390d87055eb74f793a4d2abe8dcfcf0d40c4b1d3e4334_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5769b6120ec44707f7b98ec0ba5e90dc8dee0cf14a2795a0785435cb01711fa1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9640a22ea7f43b46c281d8271b89480a9df2b5c9ef500b3b9600c5373ebdade6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9e682bfd352c260c9127e3f2affa6dd16af28b3abb8ee7303753eb0ade31c1e8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a84a096bab105b8e51bdc5f2d93c011a8a6a32e0ccf5b3a5ee2cbb2abeeb2aa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ef77e97f9b16035db985cc79029fc5c3bcd6004ecaee9fec9c05e354ac1e599_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5f3011e69a519014b7801d2acf0897f95635dbe17492a09216673ebd4a1c791b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:eaa84214ab82626dee31c0f652f6d4d980065a920932eb8e69f2e078c8fc16b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2684c0efc9838adc240b08c8b263d829bec71acd381dcb4147d8c45eb1d08d08_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:31b01092a5183808a2a97430743d04941f034388254cc7007e74c4ce3083df25_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5699e966b38060569e298ccd084fe89bd719302ca70e2ceeb4bb9b6ca5be8991_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d052315ad81d7689a02be445c9a1df8d296fc3c32a33e3975dcc4297fffa2bfa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:4b16fcfd326efb0618351bc9ddb2c3206b18e189c188e5c9fcf27f3ca8f3afa7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:511bd02437b2ab8480a54dfe2ed3e8c11c3d9d2b332212cb455c8540678665da_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6d971be6c49127312d1568f9619c9f4684254c64b77a047f6e24e1caa83e9416_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7df6d4e5830f60779a607ad0ce8716034f168d5d9c6b563bf098dbdf3b2fae05_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:274d4e7ca8dc6003a3d18d931e63a4a0b4d5f80582351fadccef4195de8b847a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:2bd57947814981b16996f8d12e40d5a5670dad3eae9fffbd57e700c39c1b1155_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7339fa5d4a95cd617046d6dc06a2e97b78c2448353f2ee464095e787a3a2fcca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cd93cbcc8568e8bc3965cfdf4c989a91782a08c38c6affb64a0a3121fabb7075_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:04e57127605538ba40496972299b81737cc2e5197a2ec97fba0b34d74fc9ab5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4c9055e26a32fd7f824d0e0c5dc605c6e59ee22369812ab8331f7572e5154ac5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e8d4c571e3c88206979f8e3c28aaec2fb961b028df0d499ea236c494c0c4096_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ffef56a2b3d651b521f8cfd8024babe6fdd9e8987df4b37fd3d1945d1dff1a64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1dbb201ad9ba579d5fec8a6cd23834d0c1ad9c4d44927b1c90ae448458ecccfe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:2057e81c225d137b781788c9df16ecc5bab9a103a029a47196b9e2c53d4171bb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d66f70ef41f4cb5cabd1e1c36cf32923cd0f228687925ef8c1b08348dff12ea7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e61c5aaa06056181b140e49b24b25835c806df7a51efd7597d3d29c8504dfe3e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2dade7bac074ae0b6d6b8a47004a3c534c6b1a484a822c45001f5d4083742aa2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:40132843fd968f729205f908824489fd67b9b0e5bfba1717840f661147af6adc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53c8d86e293208c966c8e7e4fd3435c9d8806e97ebb31c3e963f26456fc38600_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a310f85c49c19cd35070957d0621694e30215432b5d01e035ed3e8242f82c283_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:29247ef394a58b75aabdd5cc168e578fc2347c8e0c1d779b7b355848a97df2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:795a0b596a024d3793c0d211f8e2acf771ae79d4c5d47decef1facba2d5a318b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b5277a1b6205eb2ef3c75d691272da6f070b2d10fb1f27558f9241941471cc8d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:d2acb9e2a03e0c2873f562605b1e9c9d32215d1d9d265ce18bd262c7c4263f20_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:874eab1c9150b030a11a0742589008c00cd6f8af8fe188ffbbe28ee6b90f7bf6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:9ee41a2f3a833a077416d0bdd181d767145830fde45cc6fa5c31196ef749b1e4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a2dfbd0198e34753e82c002abf31d92585dff3b8093d77fd38d8369cb4c44ba9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b4f9122a9571ebe6e0da7465f498ae3e74cf7c77dd6062a675105f4c437e29df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:054e6260810a05bbcb889e80cf6a4f3668409bcfaf6302148c1230b443fcd8a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3d0ceefebed5e66f56692e62fde1a1b435cfaf596932058d0f2768d7141b6bc9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:499f3d65ea6972937bfed0d482a782ebbf807c4c0cc369e81d53dfa72c591657_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c08cf8ce6baf72aee6019b7318106e3a02e635f4b385a71a2e58387e706a2cbe_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:97af951210f4ac7395effe942732418e9999e7b8e54c9db5317eadee25491b3d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a80d32903c82085a1904b088453a13c88202d53c26626a0ad3663c784f36230e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a913a01a437d7a6d0ec6cd6eddccf25f064e161b07ed3f9fb0510b485130df08_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbe31a367bd21946e4dc641324c5091a85bf3ae3befb4f40bdd59b00c23bd67f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0d7dd7c2f034bca5dcb69cbf5d8e1989e10076fb4187e9c144201b2afec28a2c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:11286a96806113bfbc34db1b1e230fb678f11135da1809bf7162cee01bfcd267_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6fc448b6852cb86de3661f170f364c99940a004d1f85f9e0d546f24aba812fad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:82b0dd3db731b7a84ac6b7ff11c2407ab0020e30ef04cea06b25a007be5cae31_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1aac0c8d30f9ceb91a9ef3cd76fe90c338568b6408656687fe168a8c9a48d628_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7062eb071701245aabc8f0839c966e7b4b5fb1673a0f5713b44d82cd726f3ef9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:79de159f6b1033732145619c507f29b09fa50f2709fffaa5a10f6554c6818651_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c56ca8e906e3b544e0dbdeca92c33ad8a7b0a846378e3b6c9ecb050bf60f2d7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:11c374a767b0cdcb1eee64e69900ca970dbd67f814a76ce9648f578862db2dfd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:1ae113ba4a4f5c2e2d9a2abf69d37ea047da7e879486ddf25303ab709648bc79_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:64ba60275b58312a1a2472ddc46894c40e746014eef5ea4379f71c0b6d7c96a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a0a1e7e812c0f1280e24cf4feff8dabaf299f110a8e8e695dd2e3dfb98c1c698_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29de1fa9e82a64eb363bfa664dfac943e9531a5cc46ca5c2e2c41b93d8b7fee2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:2eee252e29fc035c3d8b5b91ea2e08a63d96b9f11c6d29961cb738cf1ca73d19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bc0fd93c51986738cb1f49fa4a31f066ea2ccccfd45c36a2ae7066244cf1e351_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:ce46c15516097e435174ffdd74a4a89f1c9d44b256f0ab5ea84b846ca2f339d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bbb9f7761a83c0face258f4c056fc8276f1e84e37e533ceee3cd1ac11367ed1d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:d23edb6ed5bae7f0f2be4e09cc70e031579e06bb2d42cb1c507727c319deb38e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ed2a405c06a57740f0f44a8c3cd9b7e3aedd0bfa372d85e06852082f4ce87ae0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f360847ce5b67a5ca834ace7da710150d47786dc10eea85494e467cd4d6ef908_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1d3073d76a6486e752c91e90ff6030c0c0993e9b09ca8f9efa44e5decfd52d97_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4c49749a0ead346171f842c37c832cb6c2457f6812fb487728d561aa85d262e9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f1f47f29cbc61ddc25a846d4c7d9caa18b91cfcf0e089989883a28ad86b1f2b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fc01321fe5597aa44e732fdb7e99670d525a47dc7a0e0a37546f4b28fd697b60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3b5506219e72fab36ad67c982bd7f9bd2d462070214a71b4fd115ced29aab710_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:465009fe0147ff5370183ee02173f430d0b9cfae5d579aec78bedbd3cb9d5dad_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:607051d5881ef1f78d6a62e3ebdeb761f83988788f7898d869482c22773dbe9b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f12bc532130dc5fa8c8392d3885bde80ca93ba9700844bf9fe54f4878ac53f46_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:33e52f2ae99d85b6fc05d53efb17d0a72540a782a33fa91e766fe2e47a878a9a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6d03501991d6fc5efd43a6c73cb0e3c8630db1f690bf07253c7e7d17a3de07c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:97598836bf560759a9ff39d9675e5c7f18a03e14500982e442ea93514cbf3677_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f24128b82f5c31b4eaf4f7198e4b8c0c702588f0568221b07df121175066372b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:671d23e3d686856a4d47efc6c410ace8deffff06134c979c042fde8e9de487a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9b9e3e354b0218bc54258ca7a8f7117cfe164c2311965769847e83e7f6c15d78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d59d91a2af93c1c7b2dd66e5cb98cd8ccc29c3c64b2cf016dea1d2828a6e06a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ff08f965b67efb7ff451665a77a7bc0f247cde4ca9038d5558393686bc037c39_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5e4971e899f775e21b6e1a91f00f633c9467d31bdbf4b71038be98520600a625_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ae63547bd2f56fb1f1efe75e17413e43cf503fc7089dff3fecb68d2fc50bef97_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:80154aeefda9559b46845fb40f50aa723f75f29485cfb4846995d08b0c0bceb6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:fe5558e0b36855d11e4a57511f878702f87a3d907f79bcca226e99a0c8052628_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0ee0d97e5b746a6df7d95ee4ef32075b52a235cd285039e2460f6ad084b1f5e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d80a021dbf04d702b2bc9736f036c0436191ab4ab3510749ccd03c533e9b5aeb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6898ceb180df4a46da74c974cdd105e3bcbc5ddd1575e3cabe53a43dc676258e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d4c950b548bc3ed89ba8e5e216115bda1600c67d5c35fc9979fb4155415a7b42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:39af594e6f2fd164192c69bab214557cad92989f21e059cf66f00e455c7f816d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f94694f0d2db1759fa507fdde4594e6b4025a61e3c3f8f2e6caad509a77f6709_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5033eb3bcb9c08972c36d6e19b8d192d85822373e76eb3b54cc9168d86ea62b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:a9fb56ddfaafe28542fd8a824923257122500903fc18626f90d84b7e9b2da856_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:0f4d2bd2755eb5467e25d30ef813275b15ec77c1433d406250af5294b8b49f55_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8a2d63e97b83cac2d12e809ea63398ba1c188dd996a00189664c5dd009551860_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:10847c520f582706d956c48a95e6e2fac51cce89aa8a3d4fee316fb1ec97e140_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:73d3bc342e17226fc6e47dfaf448d09e394ea53ec199bef1ba42abf3e0be8c5c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:11f214e396caf556ca08273015712fc739d1df22b550812d079ef51af642d311_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b8a8e237f5827d7935e0dd8dafe0f59157cdada056580d74feb4ac1b9e05b683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:26422066656afd16e5e36afeb7e4b5a92cb6888d550ab0a0071da9a198f290d5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3a2ee96fcf0963d55d4c1b6ffb874be6c3552ea0b9917b410976bd59e4a58efb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:2f41d30f61ee12bd34b94ba6d37a517eacb2dc4a51c938f588a87c1f4333b924_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:b49b52eea375dce5ee2b1fa3aca1facd6ed65b94e44ab235753eebfd917fdf58_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91e0a641719fea07fe1185250e91b13f8ece46fe371bb603308306fa9bbfc5d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a0839939275e2b68712d77224d5a7612b10a1bf0152a6f57050f179a1c492f70_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:bd2d266a384c88aeff5ef7174ecb532b24aa2a9d6d17a2e5c01ec384102571d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:fcbec489ae513f599fd533e30672085aacb0f937b7d3ecb8f97a39b24d0e3143_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a37378e201c50cfd94eddd0ca6163650e8af46e7c3a4f97d821aff530ea5374_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:22eb07d776eed9b364e0f8843dd2eed75c4295cd9c5d3567cb76b5e5ce20b725_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:73622f6358a99c5b2666edc3f8b680b4cc3906e2f198c67709973dfcd7cbb0df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b18d10d989d149b9bf1e94be6b115ec3445541d5d0cee0358b0fdaf634f93378_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d1772e78e5b5aed465c12a05548f9eff106f7a1e00d3d913830f8dee427fa4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e9ca0475950b50db7e62be4c43d82cb25734b00fb081359208323067c511c19e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f403594cab45dfc4de5a1fb56f8c9cb8d67ee8b8da68ef64487ef45ff6578236_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fab18be096158a97131184f91230ca5ad7a66946ad4ad527c224f279a4d413f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3e79c9035ffce3cb2f835487bd144c0976dc407890016d1fb86d1f1dc3453ed1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:70c684711eaef0d1b4f996d745c936f98707584a54b5d9920b8c25af4adec597_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8371e3f60ff9846b4249201911cad68360c81e944f753a6eff72003a17c2512a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ebae85f444356b6e695da3e3d2846bccdb8ef037b8cdc77f94128574531851b5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:0c0ffcda769ef04c9b46206aafeed9d6afe4f82ebd46751aab4b47ee6584fab4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:408f3dd8943ad4ba2ae37bc2708b698e60a150e98e1c0876e46d088832ed8d24_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5cddf09377c1fda878639186f3844bab8833fe3890f3266c79dea36faa4f11e9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bc7f21410949e77fe85c5a7330548b893706c2471d7d4e8d5c6c26a873132263_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:283596834104ae59f2780b8f0d61d90ea6128c4b09d57da03e05414203ee9245_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:53eb49907793916b8c24463ab096e15d14265a19da7a735a38bf5ec2b9625a79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6ec2c12950d227467d95fb84bbb1f9237cf8ea00b0a414371123dc524e94c71d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9fa52422e5bb14cd6eed3ae6d2a3c0ab07f801e6f92493ec59217025239a5121_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:089a4975c6964f0c0a435586733b9fa5c3c9c8a5e139580f016f7f69ab83da27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:950bee80200f2d9bdcb3f07446eb6aaebe4b31642990272178441b6f9e56a761_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ba71968598ba3fcc8dd2d9e3a861484f74804828ebbe5b7251da6706b4cbaae0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d5513c03787f261759b02454de8248faab74c402a7c8d9e948f469181dbb786d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56b40826166445e18229752bbcf65a4cf498e30c4f763110099e9adf1accb209_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:62a48fb1fc6545c57e524b1e1e3dc43b9749c024578e5266defc819d46d264e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:aa2333d5515daba8a887e66ea88370041a21a6f3c483bbc4e2bd888723c25285_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:d61549e87a7d32c426699db0e1e7f716a575427c65493f9af953a74581ce41f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:328589e1b67b3322968ac4f8b57193b936fbcac1317136e2818f8792e76a7d0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:362523f56123e0d1b18e7b3028db4d883de2c886e5796e569bffc64118577ca0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:5b18e39a6782f2bac42b00c42d88a05f19d1740d49082289aaac11aa07a48f35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:86961033ea238cdf3d061f8aa811f4559001c4e047e98165b00a8f9018b74c2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4056b49b2c42986f94456c5c3a5df02d04f8a08fc4cba8b957c040e4590fe581_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:94b1cf74b70f1ea57d939327a45cc2202783f1ca1d098ff27ac8aeefaec8f2aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b7acf9a4f00a5134eb1810f0ea70fdacfcf56549ced88a80b36abeda4435d925_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d43c576b25a46f4b13aa9968a17c93078c96acbe364e2fc13e12cbeeb334e796_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:020cd17bf8debf39db376f9f514901b1bb882de052631a01814812dd0a913f53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f857a7dde34e1082edf0e26f92be3ead9148a3c581595a5a945704697d9a9e8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ca86e79869a7ab48486107e3637aa3953201ea36b6b8559ae8b2a04041606c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7f0561027732ff639f602c3a24d89894302fd43879370658fffd01a57a99a1fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:077fa69807819b9cf9c057e592c8e75c8108ea09cb2da43d7c378dd76ae68c51_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1493ba223106394c3d89d993ed18f37af46c86aefa50d2a3da144d1ca49d10cc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3d6a4223a99f958f0fa1c4afa6f1aaa7a584a996fd95140c1bc151eddf215c57_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:917aade90b9dbdb7c59ac5c85dff49ec74b29a27aa330352c24680a6987a9a7f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0539cd95b403a48c3ba7a04e3e27da96798e7e342bb6696f65599c693a4b4297_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0a3991f02157723641d576f54823b42d424e612837f7871ceec21e40633235c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:60cda39573f604f52c427956ff45e8517e498783efee60cb8c7804ffed26a465_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a564cbff84b987d316d891c033ba1ce2299d0ebb655452671498b3de789b6f02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:23e8f2481d7c5f71053408be6bb5831e6a852ee4c9428f2e72403b6fd721068a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:38cceaff79e567296a50b816cd81cf60c695315474c62e0b380d9d0ed253eebb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6301be72ffce6f973f70fc6977632499d2930cfcf23ef6e477af59f3b283e3e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e70213ca82db398d11de723f2dd463c196059fed0639ccec30709332648efe78_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2bc4240c6a9f5abe64db9b36884b14d0a763e93a6474096e23a353cab562c400_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4a524f1fcf7c5710ceec19c651216c326ce15290848e4736d504f3247a20e1eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e2dd70d80b53776a74125790edbd091dab84b8da27545e129f9ac99d7d5d4657_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ead5377c32eb77ed07c2285ce30eccd930ee6348d19977ec8c7f8050d9b0ff04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:27a4c883fefa0bdb0033fc23d93875f3eccdda559d2813fa131a8ad3b24b9356_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67182434ce84ce97c5374f5ab962a79f67777bf02f82ae92be8f7eb5d0c2b85a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:8731368ad974fd8d1e5c954284fce9346912eb4210b01e01e6fc95893320f591_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:bc7dd594fb0d5018aa4dc0d26653f73d1859d978e07f0a1939189c5d2d654895_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:20874645efadc9cd5b6a176a6d76cc1f6ee5175404f7da5e10fea3bc98498ede_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5854e872994fcf1c4c534fb1b64f7f24ecffc120b177dc8079056b6a420ae698_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89802f2938cd3444ab90393b1046d61cbd3d05280432ea2390732a0d0520990d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f6a6951136c7faa7b9bcd0f6c892ec9658a2fa8701e0dec5e45225c3bae52bc9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0b54c713dd339589a9b1fc5e109a7b65117139bd27de833ced58f9716fce95cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0eae1a64fecdc43b68370d99fb14c369c5f0116d37bda62cba7196c0ea002116_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6b167e1a3755b0a2362ec86878e5614ee29226fcc956b2e193666a7bfc47d44b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b97afe9ff8250ec6647976373edddd171f0b362ce576087d8dcac7c4ea4054bf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3d7227cef380afdefd5f5a05001129a389029547c6f5ea8dba4fc46e20793f23_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002f5d99c5fc748401bed6ef7d0aebf2fb58d6850e7d1de4df622c84e020e87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e8d8d468ce7f75b0653d4b3e41dc63bc2fd7e231d32bd2296d08155eb258349e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ec0e7dd227d354544a2e67dd236b93970d393c87c1d6093f8191b9141c40ad01_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7807ea7a4377bbc2df491ec5bb74d324eaa66649fba9f40ba46957fe1a758081_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7a977b59ab4f908549ad66c89473f9dbb84e31eefbe6a8dfc92f5598d3f882bd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e10922bda03c19bfcb9e6b85eeb3bb0e5ad0ed717375c19e2a31c94940ef74ee_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e9101408b3219a72c3e43b88129a6bc6918df42b116ad18efce8c7a1b32e50bc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0618e1978b5b4ac2a90f578af3b8b1c471ef922a3d01d58d413215aae8c5a509_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:164e9edcf185697cf77fef80a7b26eaf42efeae25aeb04a91a7e2afe8299828a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:366eb47b3cb6c42670ceba8966f0ab119694536fb2baac881685e75e6615dc85_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6afb37d303abf20e6e100a4e472d782d6bf063ae6d131852a4ef9cdac53f7dd6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:28b92b175c80d10b33844a1466fe71cb48f48431513dd0c634f2ced57e0fa5b6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2cab2a6c6f64eafdc588cc11a5537e1a2ccdd0cb37eb84507c985cdb79855e25_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c8322ff72825fe9dcc1c4446c8c3e4dd73619c15542d7f483642789e0463fee4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d3ef2745733b13faa31084c3cc345368c89f43b80b2a76e5b10fd7bfc008bcc9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:6ca65a281af1b92df6872e052381ccf15cb51c4adb0ba9afca4c3d3041e9d9e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a387760a9151eb37055ae66aa4821ee114125536324c3404a1b4c7044beebcfb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b6f9dbf0e6927d43f45ac8efcad6913ce67b663747d509666cf0ce87455b0379_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:f7828b8fc7d451c4b252b52150b2278d310e456e4b06de990bce9d123d923b9c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:215cb8bf8d6ed22118bebdc28ed8766acfe0d8bcc2c5e8311d3b4dbf8a664d48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7077e9ed025326ff3ebc0277b0d716efd46bfcff079442d777dd572c35842ba9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7987b5ef6ba2b7e5a9fd3be756c5cab95cd2464af7c9e8459d00e527609513cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8e5fa9f4eadf03465802101457da9e3a618572e47bf8ebd2859e9b1c50310991_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0d11910863bd5a411090ddf070c1be9d58c6f8cfe94eaed1c3ebc9cbe26c3cf6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6ad8362a4cb63bb7bae0e49db53ff65fc60a16f01a414e9f2ab540606a284b08_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7f889df4c103d4fb66fdb537989e34f139c953344fda28b60920feafeb1964f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cadf5ebac4b179bbc456ebc6743a061cb44437675a0b69f825670a753ff3fb0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6d5855d82cc1db4c9b87e58fdcd0133f56d26e44942787c74d0cd27e212ddfba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fe02ef18800c00ea33cc42fd3e7bb5d5ab2855499250279c785ae222e69f537_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9bec401a9b520ec096af6673657d6265501df64d94da332e818eaab70ce54722_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ac7aa75334ba6e157584d2fc588d682c9c841ddb1cad9d03ef0df96f7274041a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0077c7ef1053ca67c87920402ca1cbf21bf54626ba4046031528822a176e0875_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1d103663fd08d4a67877ff23ec32b2d16e290f2cfa268fa89c59c3f296c3b080_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:78baab63d2e3ad8f17734423f5b10cd137d944af647104bd40401f433a9ea996_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:7ebf3a7acad88ffd14b4ae54a1a8fac1eb1d22b6f102216df4586e544d2fe1f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:07ced40602810c0a35ffbed0e120a396076ff01e1d254ba9488a8714d766319b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:080a99a5e9663712b898e49ea608d1195c8e113753e23e403954fc0852e2b8da_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:125008a0bd8a64e396b32583f34c77e15e45e212e7e623ca20f418bd89cb618d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9b8c9e0dba83ba79ff28bda01050caca261f0e723e8f222cfce4a840db29e300_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08c33ef6a9b30a565ddad8d93b0529ea8a7c29a6e0f403cb0f49face063ae162_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5928577bdfc2683410ba93dba0ec9106d1ab29bce79f56a832c06e00ef82fb48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9f0fa62bbcb4f5b18ee1ab7831d634e2faf5e945e94fcc61a204d7a4a5d39d24_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f448d0ef7d1bd805abc57fb34fd9acdae51656851126b9abd3038703592ba4a8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:21000531fed1065562e8e0d275bcf48eaaad2d35f54e81e13a03e9dbe22fce2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:41a99736bd8c61ac43d9cd84f3f21d4d174851c81e2a4039263b81d0cb3520e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:95c36149f02710b63a6c05bd3249027dea0cb332ce600226b6a7aebf4ff73e38_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:988d7aab9c210f5e09de3488b38758cac859c4619f8e8d715176c60b95993ee1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1dbaa49ed53404150877894965d638ec0558f4e17bb2b0d70933d1e93c26b713_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2bfbea264fdf5062c9454ad7efeeb799d1568071ebac6195c8138c171dacde67_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:a7a07a455ee7e89c4702fb1f15c7888945acec38d7ff1cf731129b098050a591_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b965fdf100922a0b263f372f4757fec562f0b48a8032d2c7090d9c8f19b5aca0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:54bb0200c75df26bf82e42db71faef1dc309be87095afb5de60e39d2853acd62_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:63d7e09d2367614dd7b83c41b35b538a6e3d98fb49c03a103f31355202528319_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:9557a3d19aec734063ea30485f71fc2f279b7ea77ef1b2d1cbd7e98ebf7e2938_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:de22ad5dc832ca597947d9eebd182f01721908bb26f8367e077134bc442bca68_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2568dfbc55a8a64fab947b40e160757402d1598a563bb1ea7a42103d2e6c049a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5044508d683bfb7c1fcb538293e01a54e21360f85dd3d6b6d9150be3571e4604_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7f9d5ae402c429ceb81c952f23b0898f4f768b048e87f4c7c193f970d83248a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cbde0cfe56b953fbee3a2fed6ea3cd13e6cdb0dd0fa74414b488295feecdf5bc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2ba313bef314b9e69e1b2a545ab54b0fbfec2d5a6c8b558dccf18abaa7d7e33e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9848ebd13facf8daf9ca0f32295a280ca5d4dff1d48b9f3e8c0b249b616278aa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ae1bc048acdaaf5dab22505faec4c6b0c582b97023409da8ceb84d983494a0b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f8a862ce45dd686fb79c68036e611e15ce84922dfc64f847abcf6b65aa55742a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:11d975797a78fdaca7e28cc15699aaee700b3ac8185bd5d019ecc2a51980ef10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:40debe8017daf2ff3c5b17e89a4ab7e96cb717ae7bddcec305fb1eab8bbce0bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aa195335b903dcf873590deea8e425735760fee97ab33c5b648bfea1aacfa894_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d71c752e32a996fda35a49d7c7ab959689a91197b0e229481891a03c151d48f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:666c36444702f862ad1df16b8dc76f3a8f7b4eba8d63473a4cacfcd34c7ca914_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:836090b24936b955f5b60d236ae328e50ac91ba3cc367249cb5d7762cb15ebc6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:837118a81cc9bdc984af5e9a3f4fedeae4489ba4aa98cd6513dbdaece6acea61_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8bcaefae8c33ff10f758558796e4e90193b1ce2ad3ece24a21ab93a7e685dfb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3fccc681700104f6edd949e78d406f8c10375739f4ce8c5c23c9e85b69b1f201_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac846a2c18b90026c941cc2fcd91197ca909f985f0cfc14e91fa8c0cf2b10b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:96f715b9440bfb17ea68aa161b833ac33265b372e174123bc10dac3eba00a872_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a7750c02c168c6243c3cd666816d5a4be224e3799d9f7d626cf7e64f07cf06f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:32286da133273dd699de38a8ea62c46b66fd0f0271788ba6b205ce7e34fd5ff6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:34faf675b9e5361a23ee97d02ae1257feb38fda6e287b3b2c67e0b2e4e3ab06c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:997ea290d800e3599f44e72cea8bdb65876dba2483d486938e2d024b1b9a4fae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b329d7566ac8f0b7f45be16a1b364e249036c2c8f703af70c9965240f682f808_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:309782f6dc79d9760dde0265959260871b592a5586bf4073e9561e813f316816_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:529879780fd60bb296f0d2656d7d5805459827820b0b07e839909032ec9fbc17_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9a12ba31f5a9e9e4b8114ed30bf9a067cd5b92430c35905224899a819c627741_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ee31620709847e19ee56a6187986df168cc55a41e86bee1488291ff6a0415d31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:16f45167a5407ccf892d7518ca3c7a9912d5d0cc3f07446cfd3a1de175e5321a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3ec816ffcd991bf5082f28a7edad858d9b02cd65f8e23ca2e320c41a33a0cd79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:50e0dcc3cf9d804afd0a8a3f633f36283817569fa1f5b7cad47db6cfc61c4a48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:af6e2eef8ff2eadcff4cd975245ba0cdc56f04931b248cde6d581d2d17582fd6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29b6202fa854ec12e85774564ed5da58d314916d5843aa6032428c3cbf97123f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8c019754ed9656d55c293ce39412f910b0f3ac833615aaa03e961183c4831fd3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a985f0116d10743bdde5e34fb181c4639ff0941caa66a3590713ea5d2586115c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b01b10b5836dae32a5b9938ba42fd4db2ae33a6b311da4e0c54ce0e48668ddf1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:64a243eb83f743985213e3c255f7ae58909fd3a4ab69bce80b30361bc9cd9225_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:995d3fcffd3f156dcd8831241e80223d35b6a150d9d72e89bf639b6ef6f2b81a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:aa7c8a340787569438c3c7515d62384f9a5ecdc53e400cc6768bc92c940efda5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:ee434038f9c8039bb2e2729584617a8d1b2554cb1e981f24a746badcc63c9022_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:772cccd41fa1d467cc54dec80bb7de08fc746507148f6220360c89f3f731c31f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:80c44734612ee4b1c13c995b1583a317e4742755ddd9ae515d6b9c61ecb5f152_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ae27d39fe63e4d5859648c7cc80b0fdf8ab8072bb8ecb34d21790552274a7abc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:cc9a958fbda1e4df8e235a0ae4c62d23e2e02dfcf25c3c18c3dfc8bcc787b7f3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:223602e0d30df9f086cec5c4f63562fd46f46726c44e186a5fec80f57689bc24_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7099a6800e9cd28758ace736f2c602a223f61dc00fd45def548e6d9a4bd23539_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:af138219459f8f23471300a38c65d1d0c580ab93b30c63798d51e8891a948afd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d7da61ad815088b8c671d5dde3b5878fff0083776e1618c3a11594e6f08c26b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:18eace0b9a62e03ca9e882c582a3ca9362a14488044b9b30076447ce3731206b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2dc26c9c7dd35b78f4ed2c520337631bc45fb10076d94e52d9a632dd66982765_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ad7c164753be2cf26a2c69aacb95f5d91e5b1120dac43cb2ec505794fd98fb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5b23ce65b543c607e5547f2bb71866255794752a920b7f644fb203086cabae72_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:385e0ff7ff74b73dac4393c5ed5d700cb3a1289d501917dd44a6adee10f492b9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4393f322b7404940430e70469c0ede12e724564e87c3359946e349cea2304a11_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5ba8673706092251814d05e8dc3d6de7e74faf5829c57dae0e3634cb6e80aec5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7cce8b979af738044110eae0d3f16db2e70178b32b340b7f98c339c6c1c80791_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:070167681620cee73ddfffac875e999f5a32c5ba48fca753ba907671c70e3ba3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3ae7edcafadd5fc3a2ce15754828efe17dd81a7fe95759f5d10fb843d8f0cff0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:4465d88b33622cf161e2df43aafe3fbedbd4e63f833a729df6ec5d6ffbb23b1a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f0dccb2d388210d13763e44e7aaf06712b1c463b73698566b32665030a881dec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:60a1f3345766ea95b39394925fcae2358dd8cc819a0f7b187363bff9f3bd1bad_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ea484b41505f1e5b8ddade45cf6f89e7b22ad4b81d740e9db3b4263672611398_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0a527723fa338e5204f37b50f7c3ea7f46055a91f391aa12f5ff91dfc621b45b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6fd265148a4fd19ed6f39345ae982687a6ccfadefb2dc96af15737550c46891a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1df097f85a3b46c3624fc2b59b6755ec1dd1bb6843ce84fceca2c40b8af74eda_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fb4965e61b337cbbc13b082ccfc8ba17f7c98e3a9946a2429967203a71ab5ffa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:19233828b527446a7c210823b43ab95d309ed58c124ce07bf2cc70f809a6abc4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:953d7116656841f449d6b295f0753a0d39a2474b3b6a4b6d6240d53e357ff86b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad08029d8e31a6c80b9d25947ea267b78ddc0e7f3a97dc1dbc075dc4a02283ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:e163cc3aff166d01ced5f33c6f5c9145a330cd35a7f82538017338ff9ac43f19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:039ccc1b8843a4dae1d65e616c23066e2e921f5f4693f52a6c6a9e0091ee298f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6c5f2e308f308f3892acb46179df4b6bd460b234a416f4414194005cf915ef5b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ed23039296c3dbd7ddce99ee1a538b7b83e32e827932e3d00b929d0f9de13a91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:efccb4622508c44f67b3693732b8da8bf28bf80097723497289cc3cd3180d19f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:77dfdc4b6e35954e750b90627d720a0f7a3cb6fe224459c09f5de359c589f939_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c4ad92a5a5a030bd90ad8be8df3914f70dad8fa8e2c984144791685c7150132_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:924c6a190d3e2ccf26e3486fe09b892629736bbad223bf608cb02cc4ca2b5991_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f75d1ef206cef5035c7a4e2d0f8e73330eee059919cc4283cf0ae8711a3e7865_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3daca8e471b071e56c8f9551af5d9afd8c2eb1e29cf87e09dc48214cc885e262_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4a3b3272a261a24b3fa681898aa7d0c55e8a8f67f719200e05e580b0606c16e4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:683faf9d19ecd98b5cc92545e3628a1049b13156136f86626896572e7401a356_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e294500f174a12001306f888e6bdf9e10d3d30bf8554bccd5c82f1227de196b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:08d7cbc7bf9e4d19e36b4fd5d27040329982b353032c525179227c3e15d30f32_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:58b18bfb4498e2a7890ee5979598decd1b9692168ee10ece35178e9c2191f430_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5eaf2d7d197bc327adb488bf3514d2ce6886900164bb8a7e3d8c92061baeb783_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9728bac89d23922ef66913d370ccaf943465509f8a068494d517984ff490f707_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6257b90eaa900f50cee0d5cf84c105158f70d9ad4a9829d5208cc261de3ab5e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:7b851c7bfbaaa9227d15850922fc76f76bc517f60be3c984e23d339fc2091eeb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d6142179c8354154a885955351e093aea68de58f0cbae8ec631da2d3d8cba63a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d939f022cd84850c27b617d17d71edd7dcb549908b74ff92d5115dcb5149df28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:530f79ee436e2ba7bf71f7cbc3b62c3be81665f5207555dec663565772158b99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9aad9fae53a218cf8bd83d50b3df6163a9f0ef6fe742a9527d0cc267fc8164a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c43b8d25569a9a26f77e1c1b6be0fff4467a9dbb8117ff562c2e650a2a62aeba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f0b3d8e6b527fee7bb63906136288b117ae31a38ad93aef266b7e0d84dff4f5a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26fc6ee878e8b9b76a61d203bfd0e01a61175ae9d6e350b4c8a01afc8e388080_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:93b66467306d137b06f29b307a72f45eb3a9149a15cdce0bbefd93a9034de3a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ada0c79488c2d4b388d12f9e4238054ec9e038bde604659fc70b1c368ad36964_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eaf2dff09f9cdbb55d3486888f5e18db19f535767aca754ea0ead9129bc6ca0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4a738c52c3e5bcf3c1d94b679aaea8e91b3cb3a3f981be534d8ee1274d8455c1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66d6f7a10465049938e81ddc1e4c13b2b375b2c92b39af99b2c7fb8bfe2d5e3c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:75e8df980f8d21fae7af1185852e235db098190d2e3098c7cc9086236a60eeba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e819fb1752cc974f7ec462dd49c52f9575c7b0db53f8cda50121ce1a391ef0a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5c0a5ac804bc8bc5f5e368bab64945e8e6b506358e4511387869f9bf458ba3f3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:9f541ec9efd0d0553a8648c8048c7b91854c3d8419e07c909e621d2ff5276c60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:cc987d4c88966417b6c45bc66dd878cd885b4805c9e2885fcbaca1734e7bbcb3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e88d308e0ea7524be29e017096eb77ca6df3c8b3ea58a8a6a16dd7fc2fd5949c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:231178be9e1d4d547dc7705f82f8e529672f47786de781ca53424543d9b1e073_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3dc25f71c79a131cdb79f72e3c6bd2a3c987728e52d3261c5935f15b1466150f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b05e21c1862a49132611c23c1c0b589c5ee29b98ef5711244a7c32438f55f7fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f1a5782a8202fa153b78b53324954109911991dffa9d7997229da1c6ceff7d45_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:17bcf0374c1cdded8c518835d832bac6b8ca75e05efeb0a6528e0ee49643bb35_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2873f8aca5b0ead479497c023010d6cf324fa893522eaa924f10695a63c1045d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ce52fcb8c19848e8fc81e8cfca9c47e1a257339eb96e6a5e4d214066dad9afe6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1f93b71bd8b9bd62776c67cd5c41b93f94b4b60b58a06625e7d57548518f3669_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5599c06a31ac2bdd1a8f190f5095a1614788b2aedab9fc4f454cdbdcff9bca9f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e79429feca8812a6d1bb6316906b670ccbb89c506d0f47a0ec8568cd9975a479_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32526be8ad65ea6e3f70126e66ec2494364930f90aeaae32f1ea3611ac7e167e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:9575d057a034bdd890854a08559cc08013ac76dd0aaf2ef11e26a5734be590e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d6f6a6f074d7794ed9d7015ea7937582f0ad1d07b35d983dfc07236fa3323bde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:7246b6b2f38d276340ab7d46baf8e67166639d6bcdb75aa901ddc09999fedd92_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:87a0e8e9d89cbb753a2507abcb8b0b1b3258a7a88f5d632f174e6097789cc7c6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:96069c3067b68f1e2942d7758c89426eefd21722db2d0b08ff5f1db39f2b12aa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c2401f994e1783a28eab6f7289a25a6dfb9e6edbf6b424dd0ee9320469cc3a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3eaeaa507833c96c48161f8fc13d4ade13b4ad85f397a41574326e7ef81239a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e84c44ad88440bde18b3f65817a1ffd69ce15d48f8772dd82f5984d68c73928_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6914c074989cf18597497721c5b4006874a7e9a12fff27c513f8e6ab049be83c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4b2274d948f48f8cc0df96f3bccd2d610034ac4495c977bdda82c440b65092c6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:72ba74f4ad3c5c803af1c9388ed1c7186295b74429f7466304339f22deecd40f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d47a6d11b74143b03ababf249a83e8ca576752a2ad58482a2dda2986d79e7098_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d71b697e5c67952876677ad7d89394139d322dd6320943c1bc32fef9c501c326_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:3cf00020f76f7dd6428f49aee9060f70f2d5d73a7579cf8400ba22f8a3c16364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8a9fc2fc1351bcf4a939eb506e5ac91788d65c5f1826c46d3b41e15e8ac7b3ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e16e35579e3696474f357bcd4bb3c77bdfdb1603b971c3267d08f8fd119da62a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f3623315e94aa6a0748d390674e9f2f8632bcadc5b8ccccd75bc45019cb5a9ce_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:bd3081cfa4a3a02061a6908b469dd9a0b987b5fd1dc73aa67bb2dc05ccd2c5d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c84b8c416b3b543d4406aa42eefdc1c02c12f2bdb1b7d56a3e5c0d9c549dec44_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ef6ee4f9fb6e0ebeca08a2a2dfd69cc6b5baeb5bdee0b3158f575b14398f3ad4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ffb6610a0f2627dfd68731bde61d78df97e4ef5ba769dbfb9fe723dfff0a62cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:9329715c3820b10b14bd23f2f3e89ea1172886a3c61333d8b099019701f80619_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:cb9ffb3b3c64cc43b15f52a40235df199172800aa837ee2fa136c785312126a7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:834b63c9cd783e684ce59e99d4b060af5f2d6b6027bc62793e511bd5ae91afc6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c362a8609bd2a9b6ca073545e2ffc732949b1791929dacd899faea3c4176e984_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f050a78d1622d2a10a4549fa7d2340eacdfc80e4c1a628078a4a13006df99e35_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f32061109e6d1b72145ead1598d0a2065ccecb2ae424e743dd613b03992ba030_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0650df0f1f51958baf5fecd36385b4ad6afdccfc77ff0bdb90fb140a7e6a72af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4c95f82bafd9f1a3207635da63f752252d94cf5d13405748bf9f1dc6d4e5f9bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:70ec142f9336133ffb3e4caebd30e579d59bcc3d52a3fd4c4642884103cd5134_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:11a23b0b5190d560d8a7e45c7ac015f71c18fac0f1672f2db84c55ec7d55f9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e04e8d139638d3b8444961f636909cbf640ab494b88a738cebb3c6a7805e19e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:503da2bcb8b582dd98c685b81bd031aafd71e1bbfc8962b3c8b0ea9110e9f69c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:e1e3d49db220a1e3f4f540ec89e06b8a4bb7dc72cefa4b96cb278001154cb21c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:12908e94266b5a90846f50b7fe8688d66c359fb3fc3e9c317450ddb65b455076_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:587f806a8e6500d4dcced927409c0b582a658fee0f51c31c79736f8c31c3dea7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8c53297adf899ca1152c61b10149db660a9146fe067476c82114287f564ac191_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e530b7dae37afa62a6c9def8c54b573975018b94b5a56fc88e218792b85237e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4cb9d96442ea8b54307369d340a8cca987471b191b21c9463027c9bddd754074_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:791d876a5d256f592916c167dc0919fd16e1251317356838146a5fde8fd8a6e1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a9a8d43364851f839ae1bc62a807a983421cf5b41a7488f8da7e68b7261af056_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e1571e62821f55bcfb611afb286ff61773a16ac15a67da5bf210b5d141a6b3ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:21e4959e7a52ffdfd8df79a73177f02714f8689270c9a4aab4f390be59524042_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:51a465dd014fe567fc52613a127c932e386d2a6e5f1faf4fe1cbb1e6becf7e4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:64f077c897c6ee0c9db36c7cc4f9913d1ed66afb822975974c40d98fc21bead0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ed3e46a857f509e0c8a08c750cea6e1de65bb6a1f86933165b36ca5e45171377_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4b47b7c763f063e8afe3014f0f902d55ec6d1fbe832c2fc2f0585121f68c618b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:affe71c5753db62c3117e7d4d8d3a79f3e076b740fe8895b5337211ac6809eb3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:664fcca5d05f7993a6ca81942ea48894df00d46728bae7580f534891e47fa72c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b37fe0e3a3212b0e82bb27cdf4b84f4423e4886d2a3fff5ffe46be761e98aec8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a2a838ee2839658272f41aba9d5e1b41fbb05039c1aee8a63eff7d14d7a1f0fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ffbee6c294475f3dbe6b73884fcb411b1e5303f9b549b7adfd24708b776eb306_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:43fd6e0b0d869a25c61ac074076a78a7f8f389a0c5247af03e7ce51392e90108_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:9f05231471d861b8e8a788a6f448aeeee16693fceea9521fd87e4f6a6b6d6c9d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:049dbb920b57cff7ffb88073192c4c843fef754775862e4d57d2373637e45c85_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3b801c6c05a17b0b1c763f0a87d4908ba4980ad09aa8f12dce6f3e11b8ca637b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5afc27dc982aa722303ec6aa2b10cf727f2d1b409a5a77e0f599569559275b76_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6354ab3fa4a9e9cfa2c51da14109a1a67e98a3b43c346203ba40036ef5c3665a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:22f52c4591a8ccddda25dc4a1eebcc92010f49832ffc28cf935b0873021b2f96_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ab74018d4cba5a5f1ed65e9de515209321ff6be359ae0958f2a1b73d799805b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:65b2efd1ededf1a89f9e6a3e12ee8c7085a1282b2520b2906cab1d80520c00d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:98d6f4f8d76d6dc810ca3d927fcf93740efe1a56fa6100c1ed1e80b84d1be21f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b07ab0a485d53b9ed37a1a1b244c94a70630972020176fa7206d5c9dc40d9962_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b4501412341595aa8eefec6973195073fbf3d961cd813e21e02f3cc14150e223_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c03291d932607165444321fb2fa980104e60ac414920c1c05c499a898b2afedb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e1caaa1ddc51954943c6b44448ef50d7113fcd1f8aae4a84fcb24749de315e60_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1268948f6dae5346a6a8052db8644297c1b98e1732d64b24073d959de18aa22d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:458cf14369629b17e735598d3e6c24eed47bdd8bfe054034b5a60f4f40b6ec4e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6d51ed70ff145e62ae5d22d42b7cdb071e06053d2d456bc5411da7265c29c96d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c11d63f511b868c53303849b22d71273e844679808aaf604c87b373491a99db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:043460ad9ec9a4b05671ebfac16b6b2eeb39e3ebe5f43e3867f3767b7b2f993d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:62420bf7fc2b91f60b32851f2c099ac5fda8083e6274d2a5523ccd0ece3b6a80_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:77301f40eca2b49f92f3c89a93fc6766306d39013350d635f0bfeff4b98ae012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:b86db4181d9fe036b77d0473dda243523003c19d0fa5888a54f3f19c104a7e52_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6bb49580fa2f15130fd93f51e34f31f963a4c9b8b9cd898ed573ba88ea24a60d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6caecd5a01bd49eff8acad2449074c505d07e521208af296b0cd9f0822f54911_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ca38c682197a97a075635209b6091a60ff412df3461950a24d1d881f830fb3d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dd9a440a68817b45e6d2d04b3c31feddb82304ac1d246c20c0e33355631d9624_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a251f2b5d7f716fecb5119acdbbfdbb9b535f2c6d8fd51ee0c57cef72cfa1964_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b0188af5f7dcf5f286e4ec4f331062ec77f341391c612aac52e017df26f89a89_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b3f13d71ce9dddbce566d9a5bb5783d3e5417b8fa3cae427f7f74997e4a8c8ed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d6384ac004f36838bc5b35ff63c4d1edcb3223c0a3907d4f099c5d85ab51b014_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:db20ce7a947978ea2646d479eab935796e8cfe482ddce01f3675066b221e2e3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:eaa77c0a842cf32f826c2ca19abbe4020997810c35e079c0c88a0a9361323893_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:59988d13b37880c4b79bf8622161c6e975136bdbfb59c8fe73ee8e39bc0f7fe2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:f6dd660a76715b8eef53fa459376986a60d9f2e7cd3f176b0ec5c6e8ce19cfea_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:05fb046ec30c464d04a70831316de4af2c29a226be1e7f73036c90899e6bd193_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1da080de78222a6c01704597983765a751b1b4544a81168fdbc952ab31f11a54_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:45c9e9816f3b14886661b4c82dd75f87e242f4ad3e0c1c5f264d1a1839e8cff3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2ab57f0587e4ff1adee3ac4ca2c3383955448c0b26849eb24c77aa3f4cb5e959_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:66b581d789ec455fc8bd8e01e980c7fb183bb0f6ccc09ff525ffdfa4aafd9a52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:721aa2904e0c2d5c4d0e3134fb695b6613e74809e0faf3faa949c93b68ed168f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a84aa018bfe05a74226938ca4e34b58dde33019aa093e01a7a60a8d6a4c913ca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1a255a287f3100cade2efe8d8b75ca7f031b9606f6d8ea31581a59e0ca38fde1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3778fc40b92ab82012aacfa7589247e6ff79edb9aa918caf6ba6c5fa3159ae61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:60433084081071dbf7cd337a3769f60ab109201e2ac323be2471c62178d87703_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96b873289284cbff34ea1c9f852dce31e5a72669f204d742288e266cc3a19d21_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0e2cca7da188aebd3f4445715b88a3f4727456cdfee2147e7521059722162fa2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:23043c95c32122eaef725c3e2f65ea824e4f83242614d2609e9367cd6707e454_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:68a9dd5597bb207e899a4716a7642cc28260e059ead26fc84d1e48d4e6159683_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c1a6b704c85cfb829b9a3421cbde16b5011d2c506143322e8f2563d6a5191fe2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1f6f4d1a8a3c89486253cd025f8d0e5aa34c0ef221487aed5e4e968e8d810285_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9955ec574da8c2821d783edbf833af9c4b4d4a2abcffd603b85d706333c68111_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dfcef3e2b6dfabf0abd72dd9743c91ca4c5c4bbe5bfe7488c2a85c2cbf467661_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ec5717ba7c764e22cf72a5792423078ccb9c3a3bb06b92a33eb6014f03f82fef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013f0b271dc70347bae313209781261c76127a19b3a2f8bd074d170a84e49047_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:19c6031d8609f10b2b075201c0ccbe6f26e6efd03f567b485b6b327a4f6a7fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:304cad693bfac84415c3f6311edf8234f412a4bec7635178c963e2f3fda74d44_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ee8bb516566d6a9dafaa65ae52177421adece839dd4db80426d3d2ba30a1ec10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:371a5fe6ba1f62960a89e6b1050a2d324c2c91b733704fed2fb0356ff2cd9524_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5eb44886f42c57f0e736d6259b55ba561beb6324ca58537e253581f6570b22cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:854407987817269c3069c1d1e4ebd7441465f971e28d391eddd456371162b449_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e7184c5af00f0dc4551f17ef5539952c25c37aa32d596514e463464c92ad146c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:039a4cc5025db0cacd9e5dec922d9cd51194cf0ce903904210000245c5e7c048_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6ccfe8e12098c660310fa2af574a71b7b27b23050f6b6c524e9c1787c7127110_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a5f3adb97a88b5910f2b5375e05fe3411652541687262714d50105f05ca31c34_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:de16bed38709aacd8a1c25b3e68a995631d38c12d9d28924360fffcc17adb0cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4cc2ec3ed32c991240703b0a40c6602db1320fdbd328e887b517a11474149030_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52e3ca4eb01859dcd5c4346d73339889f494576b19577fee88cb1800c84f8fc1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:949a7355b5e946e1d5c760e14244073db9df660fd8b28a3c6d06420dddccc298_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aca1f2e8b0aeb6eae4a77bf712b8c255dd50526c76e843f9960871cbd4abb6f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c075a7526723ebf1b921ceb895e63a6d5f3df60707afd79c4fcf1c9bb6f33e3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a952d0aa30010721e7a2cb903e30260a02f4a9dd9d83eb7ff02d2847f1e76e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7a7b182e9ec23abab1daeee26897eecb99e1785569a62888db4b54d6e897568e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9025051729370f663bc9231aa612b0bb51b35bc6da68f8b504dcc01c760a1fee_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0232982c7a3431d641fde0e3b3b8921f855cb872d470e5b9f69edc9b573c2714_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1e05df129e355b9a76f8bbb8aa65e9b4263fb9e888639fd2fb61f79d6d212c04_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:89451c63f28e8e515b4529c8a834f6e8e558179ed3d4f973df539a509933f942_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ace5b486176727834f9e1ca6ce46b4d0ab0bc6ddf651f4142626b543a02c61d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:007e6fe2b8d7a384cfe07309e8a523bd1b7d3cea896f3b7f29908a8d41c62f16_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3fbc6e29fc388b15dc77aa93d2623ba9a23db114399f3b07da429707a03eb8fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:42f1e088777be6853d6845aa25cee3f46df776aba71ed1209285ea853dcafb95_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:73f6897c667e3fa46703b50ec857958738442bb7d8b95fae051f761f42a01605_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:3f69c1b708c411bfdd1a2f5387e6084f2fa28e1c4bfcfe136db5b66377918bf9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:46ba8317ce0d48d6d0e8902fa4b6deea668d6f3c9c6c15c2a3aa6238cc06e52b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5e919ab71bf57a160c89b6e5964525a708a10c7cfdd87aaf911e57e6353daf23_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c706a7354b0006b9e9c7c351954f179d6c50cc2b872833bbb59214ae7148ae3e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7439625194105ec8e55d4f7b3acd13a5f2ca70da75f9c82cad5f5693b604bf28_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ffcf4fc9bf77edd7944824b25136db6027d21faef80bef9d7b126b9fb6c0574_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8540ec8af82488dd6edb249e811036b1e639a74f892af1ffac1ab5d59ceb0abf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9b497b933ce2f828025dcf4390c7d53debb2418394317da9a8c52ba82a6f2fc0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:37fa7e2453893831aa0ea8bfe068e692ca4f1ffd6f69afca37a6a4e7ad401c49_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:63db7c4a436ffd18fb03a7cda09cd47844691a8025f2ab04492ff405a85ed144_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9a30469bc5882ab2711af24dc3b3cbcbd0532f49bfa9dead772070c5fd1280e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ef2e5a237cc5d69647af1b904a902e4e216ae8480a54587357fb135b738db120_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6be6d5b27b6e178e0806938850699d1e760c4d456ae517a658b47cf5a1401a2e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9389ab668e31d432d3b2d44fe11f68df7f9d926179d0fbec8a6d1b30f489857e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ab20bef5ffe91fc06a7dad3508294cfb9a72745da8cc0342e59f515db447e264_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c5c16e51700e2c16c6fd496225946c033875f4fa4c0174ea625958bd62a7ac51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:37c574ecbe02ca7bc99355b6bbd952c392cbb2abb430db4b752257306c37bcbb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:db6cfccfb142d8f7addac06e4aec0d6686361bc15b459d169b0df831b1d00160_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e813ed4ae0135da60fc1e7e572f6a46495e03764c96ec3c095a4e61a8bdd338_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2766e79b9a9a3fae66e1d331ad2fcc2141a4108e816cb1f91557bcf2e045882c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bfcf47037dce9565700224c63e19aa2ca8935d72e355c08cc8754cbb84b41d00_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d4588b2594a2fcb58e676ea0e8d11372e0bea9deb53824b47a4d8f3c63e774bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2bb5a02fa2032146aed8fcae80961e9a6e37e1c8a13a368ea07d6b124f303519_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5998439ba17cc0cdbe1bf48e888862182d6e10400fd9df74dfab53d161f0582a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7e0233017e706ead44793f1fff610a4625a22a834de67511cd66efb208a24a47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:97bdb1cc0033381c61bc1c9abeb5f3ecaac1adc70e91b203fbcbfca9a9ae6c39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f4605b13a1cd445835bfa2bf8d2f094533e4b731ede1d00e6e15a83ca924bea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:20955243143106da7d9e730ece6e49bc84a18427ddce20cd90fb5ce712e5477e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6c27e11d2ba7f408c9ca5dc0bd898bf395b3f773931b04c558759493e0aece8f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:7f08d881878f5d69360edd1be3e1e5190a66df75a087120abb37b2c0a78b4473_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:755632416caf3e2fa4e8c24958855e78c74b12d5e3f2dcae93152ce06274d428_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:847a5098475d0ab53e351d52148f5a2211dcc8090e03e17dd7b161b7332465d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:93c4ad9c017eba69c7105c1f60cba46f201b39da79f5ded60ce13a98d7608e7d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b559c70d997c0ce2c57e2cc3f1d3160f5ec2367c53c8d1fe1d9418b142c5c577_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2674a13e799262a6ba79ba3e43c2560304a1201374272e8622aa1a5e3df33d66_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6bafd363141b2012cd318a353cfff9c109c6ccc90d227587f2d0e08316309602_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ad9865c56a3ac1997b3aa16166966f73a24b49a1a8c71edec2eeb795016b849c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c2d53d7716676842974f1dda29eba47d03b525614857591426a01b4186ad2edb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2098ea118ff218c9004be57932760642db74b9387d11fd5376593ebb3b2f13c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac90d3f60f0a9de597df5344adc3d6b1478b96d47fad0ea71a00597e8576b12_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:81c29521d2aa0a7d8a0eed047e5948d145c9e4a72fd0697fa9aa613033e7faf9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d9208e402a04781e9dffbab5c989e91804b14b6d8a5f5f29a79cc54f85782e24_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:71602c5c8069030db0fa7373e496c7bc23bba707756f57a082d7eea44f61c9cb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:72d17c4acb7d58df68ccc1ccd8d7334f35df3091d8bd8e25a949e3c7f528de1d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8817af94a399c898fea21c34bdd60dd2c927ba3613436f79aab4906ecfc92cfc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f9d6ccdb270a01e408d70d01d692955ba92282ec5e577fd695f6c51289edce2a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:005773da78ed8522b96f69d9e53c961811e79340b54d49dffdce92c59a0cea2e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:502e2c5f47b1b95e0ce1e3922306ee37c604845d1d1accd92181342b473d3b3e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6c68854cff5a2b94527d6230740551ccc74d1161e7a1bd82d8119065e9e764d3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6ff88655c6a7e78def695735bde806319fe65b5fb68ee0c3ec2a82c6d80a9b00_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:179c818cc5f2021988e1b71e4edaed742e62d398da747cb548896697617254a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a75ee91ea3ee181623a22f9e54b00c5d4b2e6cf3f222a912c8aff5a29dde1376_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:eeffe28791e4306c642f156e83c6035bebdff5d1232174d56ccb09b805f9271c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:fec4f6e102887cd0d47167eecfee667e3161dd21a13383e96ef3b36f8e319076_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:167bea17ac181347213db54ace41bd0191b77ad20a3a355e56c90fefcfef0c1f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:734b7d0af02c1b79781846ffd3c617b27728ae053941b112d544c73e0bf3a3b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a7cc1cc44f13ea307fb79522996cc56264a0e036bd5ab9134b24e4a0f6639843_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ca75fc486998027f4903a313c7bd742711e2b7bd11e55b1e0c557582ca3d1dbd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5d23f5103a7bb7c71ab5b79c2149be46e4ce746f3556508933593a94f15ba945_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b2dcf4c5a2b14b677212eaecf6ec3fbba8bef7e21d51a437449456979b5fb551_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b692ee1154fd6b6a8fae68467ae87ad89c8a528d50599db14f614c7f08831d81_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fe7bd87ddcdf1ec088e780a9e3421286cc0e4aefcccabf17d1c50e4a4656b2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1775e9ce012c333caee47c4df8f9187d85d8b47f6300e3a7ddf6d83af462986e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5403330e0c28b3af4b3fda34ea84b3e6edced89649cd00bf6ff7f8352d2f7708_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7e13f7a4f2a67e74b36e39b5e582b54a8979c270158789c658974993ad351262_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ad1b944c7135118573159adb6eb359face5ab141e8328420eaca3999fabd8575_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22ed10b10973b3a91b30a7269a88013439964eca8e6954fd515442d543bb74af_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:74dfd09f047da2dcdbdaf8b16a3aba913df216cae2f26898c4f9fe423ff6e330_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d7f0f0b52c3c3c7feed13d3ab9d70fdfdb89af06210b90650123b362444a292_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:88732e8c96326c07670db570f1b1549412775fd07a66b0816f227d1d4320a27c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3e0bc6b1b9cfd488a3cf5fd19d5a6d2839d37bd609c08e6a5a7a9da869ab3cbb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7efa402118210c406818a1791109dae10962706df8c04b290561d0c784f8a57d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:8872db8f65a31459cc63eaec8f03d40ff2b21e95871e59e3bff97b6b0bc9b9d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bc298ee8cd84ce0a44f51ba31cefe4052b67cbf9ea559fac77de3ca7a02762fe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:1715daa2ffc4a6ea78b5de1a1ffe556d27e3e9aa1cca1d6ec9e53217f27b7ffc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:32d4fbd0cbd715ed35ef290d459834423dcf6203374a2a480fc5513b3764873f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d22fe92972f9d9303f541977a3d753750554e6675545ad7e511b723c3869c4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a51b74a21651e21c9d8d8538c2cbf9272d09696abe8244cd2b1290777ad452b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2a82548bcb003f718c669be20b0abf13183fccb5d7d4e34a17e9be6ee08dc2cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2bb613f365004e6cca2c81baa7a59ff75a08efff24294779f54a51296a4f1afe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2e010df4822fc8ce8b452dd6d9381d38b1dced3c0e429a9d88e02ac61384c825_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a8ff1c3b2fa1dd0d849d5cd35526a5ef2135bfd6c551ecade04e4744ac595453_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:86e68bbe22d576839fa35f704596b2f643c09e3cd755fae8effe90935f65ab10_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d48fa90ded7d3c77d535abf9eb8f56d32e1567a3c292686a7f76c6ac39b5c6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f781a380867adf7f20c38114cc8d7c751cc84faba5fbcbfc67b721793f017339_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f9d1a4c9d0a5404e8493a84f94fc1715d6226b22b672f0e378157405f5a7204e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0696026a1a59a9227aaac743602e83017e0281e6726d94d46c20c69e61bb6ee3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:18ead28e318b6a165c6988639f9361dfdb3b7936c026f6043b66996e806be30c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:64802d951a8cc8294fa9194e5778fd8ba178cc2dff80234d85234121013ee58b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e6adba899b629ba8eea41574e66d8ed2eaac9169aae5fcb789aff787f0724b73_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:06d3718842b1f074dd7b6477dd8e738e91ad243e06e466cd9cf8b08d7b7fa024_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:220e8b87b16dc9219b324fe7b97208869a17d1039e620bc91cdb5aec19d4a0c2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d85785005a4cf5e4bc26adabdddffe345fa8827a0db2240d01cf64a49747675_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fb190187adc311919da380eef951373ed4f907a07606af0797e96cd7d253f20b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5882d9e24bf330ab1bd022877c1f3b711a41b329c46c64652105a1b0a1c24cbe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:a7f9b163518a7508adb281ab052ca9e1c233c9ee5efe37efad238eb0febad187_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:059a0c17ca865b86ef3b3c19cf641d3dd43b007de861583f5c160083dc52a012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7fd099e945dc79ff47d6aef25ab62b66920ae6e7338ef2da01ec5865970bb62b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:2461d40854f69f775c2643a67eb8676729f4fde44b8ad6f106b86b8a66342f67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:c69c4ec8cd052eeca122726323294481522580372cc3c948fbeace53beb74765_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:05f0aaebb8307b693452309341fef6e3bfe6912a34c1a9d7ced1be398d81351f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:0a46ca252418f181a86af41b48cbabda464d51f9d9f44792efea11e54ed2167d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8e9b9f7048b849a45ea2edbfcdbc1601d8a11cb4260d5c1d89d85b5ed462e7ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:cc9d2ebecaf2c78d99104d0a3ff23cf7748e42f13d00215783cac971193b1f69_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:25e957fc0f6723e791625c55d1b251f6b7a894e15d74e7af29e004add4e3a6bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:42a64c335c5af6c607f435c9a09411e789ba8b66d4df1201d532f27df5b9dc04_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7c98311b8e0f89f03a4250cbcc60ff62ffe65c4ee1bd8c34c31b623442f348e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:abdd622e2447490b74f285cf653b9f6900b904aa6750b34bf9a39f09dc6337de_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6a3350010ffc87ac68f2c8eff3ccd707bef4d9295be9aa7d5633e83b3fdcec1d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9ce9629c6a48384d0dd7d325fd61cf62b8c290db57b2917a8ed671f7e3d4fa9d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a71526c9cd2f4c5f9a397348f1ebc08590caad252cf3bce6e5d07ee6c77274c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9cce3c5b53509924dd37d4d3a250925226372f26b45bb52a9dcb46526b1f3d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:137c1f39ca66f98cd37c8a9deb3279d0acd18c24d70a88b6e8d9033a1926fc0a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a38f0412ab643c849826b9600b42aa8975f4d77546ed3b36e92e7b2dce237e4a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:de2eb4f5453b3a0463c333a1770034a9016eadddbe8a07c2666c3d58367ce3f9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e463a6ace53d6f8eeb652db6a69ecda86245cf3a87cf10ec7735738375d17c9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:348c8fad1c84cc45b10e7add9d5bb5c37057b699d6466e18c3bec3d593e1adde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:37bcb5a159c17e1241a4e5add6d5276512ce99418b2f779c1e2a976a099de7a3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5653e3a360eb8e725d483a152ef0510d5e1f7142666cc5c6e27f62965f6cd08c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:57ea23e19a26640f9e8bebcef70419d22c23ff334878e89d4b77a894acc2ce7b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0d0633b8cb1de498ee1441b5e28b4ac6aba808f6ad37d3c2bac9f01c94ff33ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:702219e963a769b7dbe97a0f9ea6a20dfd1415097dd6f38cf31cea657b1e4936_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:aa9dc51ef8366806a19116f700448b4c0ea9dc1de7fc9f2b8191872de744e591_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:dc192484377ead9c1805632aa8a8252186c4f5f0649bc30ce521b67f521c66a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:02a58199e4b61c2d8854772359ea02b3abe946e3e67d1cea7ff753c49b0ad3e7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:35e90ec749853c76f098be940be10e29e25401c6a1064a27843f09cac052378f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5fdb8a778fc61b0900436f22aacadd59f7da453af25b9b2eb9c22aca76bc9b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4554e982ba99a234ce6c3717e3447b817fc1c35a384e8fae9766dbb4f22b868_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:3d5ff34a3f9281202e3c0c9593b481d9b16a8321020caca71fa4e3b4d6527579_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:423f3c92919536202042249d0e3911b30e777ad4616ae8f6ca9968c87e14c33d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bcc604910483ac005899662bc05a597cbc8af51dd0c1dbaa05d521b95cc2ee94_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d76ee581c268ee313f9815c181bbbaa91f976c2da68a7a5dfd304e62f4e4a003_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:213608462f3f06ee113095a0b0be07ab8b1e8c194824a11f56c67392729e906d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5f1fd024087262006ea5a3a03b1eaae1590be13fede1f318987921df0c2c3800_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a5d235485bcf72b816bafa06ed24b596b2b72f543e17e845ac8b79dc16f88a86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ac8a2e047872045fba2fc0ea483a700de6c6398ae2cd184bfbdb021969d6eb6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:58dc4f0cae516c3613bcb01833e42399b2db12bf7f82c68701baace24fc77b12_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5c793d527449dfb1b10921bc56e8a31ad3d0f8e05dfd19a1782a67025b89879d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5ce2fa8d80f65f80b35fdce9568eb02d1a30252222f8593f60d3d2ab85ca9a7d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ec31e82b039af04deb6b8f9c13810a61281a3cedd616aaeb03315bd3abdb2d6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14d78d97d80007bbfb90b2db94a3d0aab2c5f73e1785fb27ce570cfc5e31c964_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5ed57df32a4594d7acd4e4411b009c6bcfc54b2e90a337f809b8a6a53e858480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:69275336a4bb1cd9093233541e6f1e29ccecbb8096673ad0b1880d81ae454ef0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b889a52cecf44d33e496bb09da6073217d856dfbe6fe78149669ec2af3dd4f63_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:39348b1628d4c75591d22648681ae23c441338241b48d2ed748df691a56dcd36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6964ff070c67d6f71068014ba253466e6ede36b043cd0f8e3908a32d91953f87_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a274ec689248b4fe3431501c0045736e3b24df4afafcf86ea6d0704e22586c27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ad6f9a3b78b0e98bab747ece64657e69f301337f4966e3f40d3fe0588d1a530b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c28651ad376814116ca3592e5df4853dc0cb04402d825a2d12812ea6df06a4b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6fa533909fe009e146d0522a95259e7f80399cea0ced183c308e146bc51fd9bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:30c988074c30420793cecbd4d3912868197661b61f00d01bb8fb86f4aae2aeab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3dd6b992e2620c2d08de3ac99c687a9b1562d1a46bc9159a14e34abae9d40f36_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1200e38684ea24ad9e98352ad84e3c3791be192f08f22c77197987e548c02939_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2fa632f63034c5e2ba411ecd6a6655da1f1b5cd65e05dd1c2063893c77fdfb9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6f9a533d4e52e87336542eaeea992cd22d2979888f7c96d1537fe89a7a186a8c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:784e009ef59f00cf7e127d811f2cbb30f8c4b5c489c9d51985c8385400ce97fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:3576099906e843ef0a4639ab2563ea90c9c875d6be59b1bb687f59cdcff0acb3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6d0bedcf0cfc56da79f55effbb2315fa7da2a126347bf0fa3b21fe96b9c3f037_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7aab0df04151b6970f04174e2b257a77615be9eb724121ff29b59347f8edc8b7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b9a4f7fc7ef59029d19640802db410d32d52a35bf7c8a5ad229ce1e0b559614b_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1d5caff7082d26409e72c3d18b018f01178321f3922a0868af8058f839261d3b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a0968a8bb5df2b0b41bf55b06f11397a4d0c0ec290d22bde93fcf631923091a0_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3198e3a7911d65997d84ae2c4a4756213bd6169408f8e5b4d4fcfc1312ec221f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:75b581b7faaa791148cfc9a5e5b4c87faf3a809d2baa0fbcec38bac757007b49_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:af1751213d6286401c0e1d177bb2952715b50a255dd0072452cfcd1a239c9be9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fdc295c04d946e1294cbc811e5ee20827cce284c7a5358c9c6c926f5afb5fc7b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1fbf0bae66e3d3feafd7a5d800ffdc203ad1171d41da344c7bc899fa9df0c439_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a83b03a6cc820386376a5e0b5ac0bc43147338cd0f77ba6b20284b93cde06b63_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ab5dc4b258e7a47d4a05f2f4975324ecdb53481bf591d41dad10543be93ac59c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f6fa7b17816eb0b9d73c00dbf4715a26458d784e65858ebba255b032a5a2b3f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:565239690ed2974560e390d87055eb74f793a4d2abe8dcfcf0d40c4b1d3e4334_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5769b6120ec44707f7b98ec0ba5e90dc8dee0cf14a2795a0785435cb01711fa1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9640a22ea7f43b46c281d8271b89480a9df2b5c9ef500b3b9600c5373ebdade6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9e682bfd352c260c9127e3f2affa6dd16af28b3abb8ee7303753eb0ade31c1e8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a84a096bab105b8e51bdc5f2d93c011a8a6a32e0ccf5b3a5ee2cbb2abeeb2aa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ef77e97f9b16035db985cc79029fc5c3bcd6004ecaee9fec9c05e354ac1e599_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5f3011e69a519014b7801d2acf0897f95635dbe17492a09216673ebd4a1c791b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:eaa84214ab82626dee31c0f652f6d4d980065a920932eb8e69f2e078c8fc16b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2684c0efc9838adc240b08c8b263d829bec71acd381dcb4147d8c45eb1d08d08_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:31b01092a5183808a2a97430743d04941f034388254cc7007e74c4ce3083df25_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5699e966b38060569e298ccd084fe89bd719302ca70e2ceeb4bb9b6ca5be8991_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d052315ad81d7689a02be445c9a1df8d296fc3c32a33e3975dcc4297fffa2bfa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:4b16fcfd326efb0618351bc9ddb2c3206b18e189c188e5c9fcf27f3ca8f3afa7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:511bd02437b2ab8480a54dfe2ed3e8c11c3d9d2b332212cb455c8540678665da_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6d971be6c49127312d1568f9619c9f4684254c64b77a047f6e24e1caa83e9416_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7df6d4e5830f60779a607ad0ce8716034f168d5d9c6b563bf098dbdf3b2fae05_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:274d4e7ca8dc6003a3d18d931e63a4a0b4d5f80582351fadccef4195de8b847a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:2bd57947814981b16996f8d12e40d5a5670dad3eae9fffbd57e700c39c1b1155_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7339fa5d4a95cd617046d6dc06a2e97b78c2448353f2ee464095e787a3a2fcca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cd93cbcc8568e8bc3965cfdf4c989a91782a08c38c6affb64a0a3121fabb7075_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:04e57127605538ba40496972299b81737cc2e5197a2ec97fba0b34d74fc9ab5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4c9055e26a32fd7f824d0e0c5dc605c6e59ee22369812ab8331f7572e5154ac5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e8d4c571e3c88206979f8e3c28aaec2fb961b028df0d499ea236c494c0c4096_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ffef56a2b3d651b521f8cfd8024babe6fdd9e8987df4b37fd3d1945d1dff1a64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1dbb201ad9ba579d5fec8a6cd23834d0c1ad9c4d44927b1c90ae448458ecccfe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:2057e81c225d137b781788c9df16ecc5bab9a103a029a47196b9e2c53d4171bb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d66f70ef41f4cb5cabd1e1c36cf32923cd0f228687925ef8c1b08348dff12ea7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e61c5aaa06056181b140e49b24b25835c806df7a51efd7597d3d29c8504dfe3e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2dade7bac074ae0b6d6b8a47004a3c534c6b1a484a822c45001f5d4083742aa2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:40132843fd968f729205f908824489fd67b9b0e5bfba1717840f661147af6adc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53c8d86e293208c966c8e7e4fd3435c9d8806e97ebb31c3e963f26456fc38600_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a310f85c49c19cd35070957d0621694e30215432b5d01e035ed3e8242f82c283_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:29247ef394a58b75aabdd5cc168e578fc2347c8e0c1d779b7b355848a97df2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:795a0b596a024d3793c0d211f8e2acf771ae79d4c5d47decef1facba2d5a318b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b5277a1b6205eb2ef3c75d691272da6f070b2d10fb1f27558f9241941471cc8d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:d2acb9e2a03e0c2873f562605b1e9c9d32215d1d9d265ce18bd262c7c4263f20_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:874eab1c9150b030a11a0742589008c00cd6f8af8fe188ffbbe28ee6b90f7bf6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:9ee41a2f3a833a077416d0bdd181d767145830fde45cc6fa5c31196ef749b1e4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a2dfbd0198e34753e82c002abf31d92585dff3b8093d77fd38d8369cb4c44ba9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b4f9122a9571ebe6e0da7465f498ae3e74cf7c77dd6062a675105f4c437e29df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:054e6260810a05bbcb889e80cf6a4f3668409bcfaf6302148c1230b443fcd8a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3d0ceefebed5e66f56692e62fde1a1b435cfaf596932058d0f2768d7141b6bc9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:499f3d65ea6972937bfed0d482a782ebbf807c4c0cc369e81d53dfa72c591657_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c08cf8ce6baf72aee6019b7318106e3a02e635f4b385a71a2e58387e706a2cbe_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:97af951210f4ac7395effe942732418e9999e7b8e54c9db5317eadee25491b3d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a80d32903c82085a1904b088453a13c88202d53c26626a0ad3663c784f36230e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a913a01a437d7a6d0ec6cd6eddccf25f064e161b07ed3f9fb0510b485130df08_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbe31a367bd21946e4dc641324c5091a85bf3ae3befb4f40bdd59b00c23bd67f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0d7dd7c2f034bca5dcb69cbf5d8e1989e10076fb4187e9c144201b2afec28a2c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:11286a96806113bfbc34db1b1e230fb678f11135da1809bf7162cee01bfcd267_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6fc448b6852cb86de3661f170f364c99940a004d1f85f9e0d546f24aba812fad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:82b0dd3db731b7a84ac6b7ff11c2407ab0020e30ef04cea06b25a007be5cae31_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1aac0c8d30f9ceb91a9ef3cd76fe90c338568b6408656687fe168a8c9a48d628_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7062eb071701245aabc8f0839c966e7b4b5fb1673a0f5713b44d82cd726f3ef9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:79de159f6b1033732145619c507f29b09fa50f2709fffaa5a10f6554c6818651_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c56ca8e906e3b544e0dbdeca92c33ad8a7b0a846378e3b6c9ecb050bf60f2d7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:11c374a767b0cdcb1eee64e69900ca970dbd67f814a76ce9648f578862db2dfd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:1ae113ba4a4f5c2e2d9a2abf69d37ea047da7e879486ddf25303ab709648bc79_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:64ba60275b58312a1a2472ddc46894c40e746014eef5ea4379f71c0b6d7c96a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a0a1e7e812c0f1280e24cf4feff8dabaf299f110a8e8e695dd2e3dfb98c1c698_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29de1fa9e82a64eb363bfa664dfac943e9531a5cc46ca5c2e2c41b93d8b7fee2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:2eee252e29fc035c3d8b5b91ea2e08a63d96b9f11c6d29961cb738cf1ca73d19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bc0fd93c51986738cb1f49fa4a31f066ea2ccccfd45c36a2ae7066244cf1e351_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:ce46c15516097e435174ffdd74a4a89f1c9d44b256f0ab5ea84b846ca2f339d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bbb9f7761a83c0face258f4c056fc8276f1e84e37e533ceee3cd1ac11367ed1d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:d23edb6ed5bae7f0f2be4e09cc70e031579e06bb2d42cb1c507727c319deb38e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ed2a405c06a57740f0f44a8c3cd9b7e3aedd0bfa372d85e06852082f4ce87ae0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f360847ce5b67a5ca834ace7da710150d47786dc10eea85494e467cd4d6ef908_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1d3073d76a6486e752c91e90ff6030c0c0993e9b09ca8f9efa44e5decfd52d97_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4c49749a0ead346171f842c37c832cb6c2457f6812fb487728d561aa85d262e9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f1f47f29cbc61ddc25a846d4c7d9caa18b91cfcf0e089989883a28ad86b1f2b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fc01321fe5597aa44e732fdb7e99670d525a47dc7a0e0a37546f4b28fd697b60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3b5506219e72fab36ad67c982bd7f9bd2d462070214a71b4fd115ced29aab710_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:465009fe0147ff5370183ee02173f430d0b9cfae5d579aec78bedbd3cb9d5dad_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:607051d5881ef1f78d6a62e3ebdeb761f83988788f7898d869482c22773dbe9b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f12bc532130dc5fa8c8392d3885bde80ca93ba9700844bf9fe54f4878ac53f46_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:33e52f2ae99d85b6fc05d53efb17d0a72540a782a33fa91e766fe2e47a878a9a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6d03501991d6fc5efd43a6c73cb0e3c8630db1f690bf07253c7e7d17a3de07c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:97598836bf560759a9ff39d9675e5c7f18a03e14500982e442ea93514cbf3677_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f24128b82f5c31b4eaf4f7198e4b8c0c702588f0568221b07df121175066372b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:671d23e3d686856a4d47efc6c410ace8deffff06134c979c042fde8e9de487a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9b9e3e354b0218bc54258ca7a8f7117cfe164c2311965769847e83e7f6c15d78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d59d91a2af93c1c7b2dd66e5cb98cd8ccc29c3c64b2cf016dea1d2828a6e06a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ff08f965b67efb7ff451665a77a7bc0f247cde4ca9038d5558393686bc037c39_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5e4971e899f775e21b6e1a91f00f633c9467d31bdbf4b71038be98520600a625_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ae63547bd2f56fb1f1efe75e17413e43cf503fc7089dff3fecb68d2fc50bef97_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:80154aeefda9559b46845fb40f50aa723f75f29485cfb4846995d08b0c0bceb6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:fe5558e0b36855d11e4a57511f878702f87a3d907f79bcca226e99a0c8052628_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0ee0d97e5b746a6df7d95ee4ef32075b52a235cd285039e2460f6ad084b1f5e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d80a021dbf04d702b2bc9736f036c0436191ab4ab3510749ccd03c533e9b5aeb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6898ceb180df4a46da74c974cdd105e3bcbc5ddd1575e3cabe53a43dc676258e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d4c950b548bc3ed89ba8e5e216115bda1600c67d5c35fc9979fb4155415a7b42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:39af594e6f2fd164192c69bab214557cad92989f21e059cf66f00e455c7f816d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f94694f0d2db1759fa507fdde4594e6b4025a61e3c3f8f2e6caad509a77f6709_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5033eb3bcb9c08972c36d6e19b8d192d85822373e76eb3b54cc9168d86ea62b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:a9fb56ddfaafe28542fd8a824923257122500903fc18626f90d84b7e9b2da856_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:0f4d2bd2755eb5467e25d30ef813275b15ec77c1433d406250af5294b8b49f55_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8a2d63e97b83cac2d12e809ea63398ba1c188dd996a00189664c5dd009551860_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:10847c520f582706d956c48a95e6e2fac51cce89aa8a3d4fee316fb1ec97e140_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:73d3bc342e17226fc6e47dfaf448d09e394ea53ec199bef1ba42abf3e0be8c5c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:11f214e396caf556ca08273015712fc739d1df22b550812d079ef51af642d311_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b8a8e237f5827d7935e0dd8dafe0f59157cdada056580d74feb4ac1b9e05b683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:26422066656afd16e5e36afeb7e4b5a92cb6888d550ab0a0071da9a198f290d5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3a2ee96fcf0963d55d4c1b6ffb874be6c3552ea0b9917b410976bd59e4a58efb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:2f41d30f61ee12bd34b94ba6d37a517eacb2dc4a51c938f588a87c1f4333b924_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:b49b52eea375dce5ee2b1fa3aca1facd6ed65b94e44ab235753eebfd917fdf58_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91e0a641719fea07fe1185250e91b13f8ece46fe371bb603308306fa9bbfc5d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a0839939275e2b68712d77224d5a7612b10a1bf0152a6f57050f179a1c492f70_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:bd2d266a384c88aeff5ef7174ecb532b24aa2a9d6d17a2e5c01ec384102571d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:fcbec489ae513f599fd533e30672085aacb0f937b7d3ecb8f97a39b24d0e3143_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a37378e201c50cfd94eddd0ca6163650e8af46e7c3a4f97d821aff530ea5374_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:22eb07d776eed9b364e0f8843dd2eed75c4295cd9c5d3567cb76b5e5ce20b725_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:73622f6358a99c5b2666edc3f8b680b4cc3906e2f198c67709973dfcd7cbb0df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b18d10d989d149b9bf1e94be6b115ec3445541d5d0cee0358b0fdaf634f93378_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d1772e78e5b5aed465c12a05548f9eff106f7a1e00d3d913830f8dee427fa4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e9ca0475950b50db7e62be4c43d82cb25734b00fb081359208323067c511c19e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f403594cab45dfc4de5a1fb56f8c9cb8d67ee8b8da68ef64487ef45ff6578236_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fab18be096158a97131184f91230ca5ad7a66946ad4ad527c224f279a4d413f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3e79c9035ffce3cb2f835487bd144c0976dc407890016d1fb86d1f1dc3453ed1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:70c684711eaef0d1b4f996d745c936f98707584a54b5d9920b8c25af4adec597_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8371e3f60ff9846b4249201911cad68360c81e944f753a6eff72003a17c2512a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ebae85f444356b6e695da3e3d2846bccdb8ef037b8cdc77f94128574531851b5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:0c0ffcda769ef04c9b46206aafeed9d6afe4f82ebd46751aab4b47ee6584fab4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:408f3dd8943ad4ba2ae37bc2708b698e60a150e98e1c0876e46d088832ed8d24_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5cddf09377c1fda878639186f3844bab8833fe3890f3266c79dea36faa4f11e9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bc7f21410949e77fe85c5a7330548b893706c2471d7d4e8d5c6c26a873132263_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:283596834104ae59f2780b8f0d61d90ea6128c4b09d57da03e05414203ee9245_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:53eb49907793916b8c24463ab096e15d14265a19da7a735a38bf5ec2b9625a79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6ec2c12950d227467d95fb84bbb1f9237cf8ea00b0a414371123dc524e94c71d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9fa52422e5bb14cd6eed3ae6d2a3c0ab07f801e6f92493ec59217025239a5121_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:089a4975c6964f0c0a435586733b9fa5c3c9c8a5e139580f016f7f69ab83da27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:950bee80200f2d9bdcb3f07446eb6aaebe4b31642990272178441b6f9e56a761_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ba71968598ba3fcc8dd2d9e3a861484f74804828ebbe5b7251da6706b4cbaae0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d5513c03787f261759b02454de8248faab74c402a7c8d9e948f469181dbb786d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56b40826166445e18229752bbcf65a4cf498e30c4f763110099e9adf1accb209_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:62a48fb1fc6545c57e524b1e1e3dc43b9749c024578e5266defc819d46d264e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:aa2333d5515daba8a887e66ea88370041a21a6f3c483bbc4e2bd888723c25285_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:d61549e87a7d32c426699db0e1e7f716a575427c65493f9af953a74581ce41f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:328589e1b67b3322968ac4f8b57193b936fbcac1317136e2818f8792e76a7d0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:362523f56123e0d1b18e7b3028db4d883de2c886e5796e569bffc64118577ca0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:5b18e39a6782f2bac42b00c42d88a05f19d1740d49082289aaac11aa07a48f35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:86961033ea238cdf3d061f8aa811f4559001c4e047e98165b00a8f9018b74c2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4056b49b2c42986f94456c5c3a5df02d04f8a08fc4cba8b957c040e4590fe581_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:94b1cf74b70f1ea57d939327a45cc2202783f1ca1d098ff27ac8aeefaec8f2aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b7acf9a4f00a5134eb1810f0ea70fdacfcf56549ced88a80b36abeda4435d925_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d43c576b25a46f4b13aa9968a17c93078c96acbe364e2fc13e12cbeeb334e796_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:020cd17bf8debf39db376f9f514901b1bb882de052631a01814812dd0a913f53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f857a7dde34e1082edf0e26f92be3ead9148a3c581595a5a945704697d9a9e8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ca86e79869a7ab48486107e3637aa3953201ea36b6b8559ae8b2a04041606c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7f0561027732ff639f602c3a24d89894302fd43879370658fffd01a57a99a1fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:077fa69807819b9cf9c057e592c8e75c8108ea09cb2da43d7c378dd76ae68c51_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1493ba223106394c3d89d993ed18f37af46c86aefa50d2a3da144d1ca49d10cc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3d6a4223a99f958f0fa1c4afa6f1aaa7a584a996fd95140c1bc151eddf215c57_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:917aade90b9dbdb7c59ac5c85dff49ec74b29a27aa330352c24680a6987a9a7f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0539cd95b403a48c3ba7a04e3e27da96798e7e342bb6696f65599c693a4b4297_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0a3991f02157723641d576f54823b42d424e612837f7871ceec21e40633235c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:60cda39573f604f52c427956ff45e8517e498783efee60cb8c7804ffed26a465_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a564cbff84b987d316d891c033ba1ce2299d0ebb655452671498b3de789b6f02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:23e8f2481d7c5f71053408be6bb5831e6a852ee4c9428f2e72403b6fd721068a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:38cceaff79e567296a50b816cd81cf60c695315474c62e0b380d9d0ed253eebb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6301be72ffce6f973f70fc6977632499d2930cfcf23ef6e477af59f3b283e3e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e70213ca82db398d11de723f2dd463c196059fed0639ccec30709332648efe78_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2bc4240c6a9f5abe64db9b36884b14d0a763e93a6474096e23a353cab562c400_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4a524f1fcf7c5710ceec19c651216c326ce15290848e4736d504f3247a20e1eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e2dd70d80b53776a74125790edbd091dab84b8da27545e129f9ac99d7d5d4657_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ead5377c32eb77ed07c2285ce30eccd930ee6348d19977ec8c7f8050d9b0ff04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:27a4c883fefa0bdb0033fc23d93875f3eccdda559d2813fa131a8ad3b24b9356_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67182434ce84ce97c5374f5ab962a79f67777bf02f82ae92be8f7eb5d0c2b85a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:8731368ad974fd8d1e5c954284fce9346912eb4210b01e01e6fc95893320f591_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:bc7dd594fb0d5018aa4dc0d26653f73d1859d978e07f0a1939189c5d2d654895_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:20874645efadc9cd5b6a176a6d76cc1f6ee5175404f7da5e10fea3bc98498ede_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5854e872994fcf1c4c534fb1b64f7f24ecffc120b177dc8079056b6a420ae698_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89802f2938cd3444ab90393b1046d61cbd3d05280432ea2390732a0d0520990d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f6a6951136c7faa7b9bcd0f6c892ec9658a2fa8701e0dec5e45225c3bae52bc9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0b54c713dd339589a9b1fc5e109a7b65117139bd27de833ced58f9716fce95cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0eae1a64fecdc43b68370d99fb14c369c5f0116d37bda62cba7196c0ea002116_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6b167e1a3755b0a2362ec86878e5614ee29226fcc956b2e193666a7bfc47d44b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b97afe9ff8250ec6647976373edddd171f0b362ce576087d8dcac7c4ea4054bf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3d7227cef380afdefd5f5a05001129a389029547c6f5ea8dba4fc46e20793f23_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002f5d99c5fc748401bed6ef7d0aebf2fb58d6850e7d1de4df622c84e020e87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e8d8d468ce7f75b0653d4b3e41dc63bc2fd7e231d32bd2296d08155eb258349e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ec0e7dd227d354544a2e67dd236b93970d393c87c1d6093f8191b9141c40ad01_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7807ea7a4377bbc2df491ec5bb74d324eaa66649fba9f40ba46957fe1a758081_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7a977b59ab4f908549ad66c89473f9dbb84e31eefbe6a8dfc92f5598d3f882bd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e10922bda03c19bfcb9e6b85eeb3bb0e5ad0ed717375c19e2a31c94940ef74ee_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e9101408b3219a72c3e43b88129a6bc6918df42b116ad18efce8c7a1b32e50bc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0618e1978b5b4ac2a90f578af3b8b1c471ef922a3d01d58d413215aae8c5a509_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:164e9edcf185697cf77fef80a7b26eaf42efeae25aeb04a91a7e2afe8299828a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:366eb47b3cb6c42670ceba8966f0ab119694536fb2baac881685e75e6615dc85_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6afb37d303abf20e6e100a4e472d782d6bf063ae6d131852a4ef9cdac53f7dd6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:28b92b175c80d10b33844a1466fe71cb48f48431513dd0c634f2ced57e0fa5b6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2cab2a6c6f64eafdc588cc11a5537e1a2ccdd0cb37eb84507c985cdb79855e25_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c8322ff72825fe9dcc1c4446c8c3e4dd73619c15542d7f483642789e0463fee4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d3ef2745733b13faa31084c3cc345368c89f43b80b2a76e5b10fd7bfc008bcc9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:6ca65a281af1b92df6872e052381ccf15cb51c4adb0ba9afca4c3d3041e9d9e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a387760a9151eb37055ae66aa4821ee114125536324c3404a1b4c7044beebcfb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b6f9dbf0e6927d43f45ac8efcad6913ce67b663747d509666cf0ce87455b0379_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:f7828b8fc7d451c4b252b52150b2278d310e456e4b06de990bce9d123d923b9c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:215cb8bf8d6ed22118bebdc28ed8766acfe0d8bcc2c5e8311d3b4dbf8a664d48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7077e9ed025326ff3ebc0277b0d716efd46bfcff079442d777dd572c35842ba9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7987b5ef6ba2b7e5a9fd3be756c5cab95cd2464af7c9e8459d00e527609513cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8e5fa9f4eadf03465802101457da9e3a618572e47bf8ebd2859e9b1c50310991_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0d11910863bd5a411090ddf070c1be9d58c6f8cfe94eaed1c3ebc9cbe26c3cf6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6ad8362a4cb63bb7bae0e49db53ff65fc60a16f01a414e9f2ab540606a284b08_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7f889df4c103d4fb66fdb537989e34f139c953344fda28b60920feafeb1964f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cadf5ebac4b179bbc456ebc6743a061cb44437675a0b69f825670a753ff3fb0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6d5855d82cc1db4c9b87e58fdcd0133f56d26e44942787c74d0cd27e212ddfba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fe02ef18800c00ea33cc42fd3e7bb5d5ab2855499250279c785ae222e69f537_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9bec401a9b520ec096af6673657d6265501df64d94da332e818eaab70ce54722_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ac7aa75334ba6e157584d2fc588d682c9c841ddb1cad9d03ef0df96f7274041a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0077c7ef1053ca67c87920402ca1cbf21bf54626ba4046031528822a176e0875_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1d103663fd08d4a67877ff23ec32b2d16e290f2cfa268fa89c59c3f296c3b080_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:78baab63d2e3ad8f17734423f5b10cd137d944af647104bd40401f433a9ea996_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:7ebf3a7acad88ffd14b4ae54a1a8fac1eb1d22b6f102216df4586e544d2fe1f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:07ced40602810c0a35ffbed0e120a396076ff01e1d254ba9488a8714d766319b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:080a99a5e9663712b898e49ea608d1195c8e113753e23e403954fc0852e2b8da_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:125008a0bd8a64e396b32583f34c77e15e45e212e7e623ca20f418bd89cb618d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9b8c9e0dba83ba79ff28bda01050caca261f0e723e8f222cfce4a840db29e300_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08c33ef6a9b30a565ddad8d93b0529ea8a7c29a6e0f403cb0f49face063ae162_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5928577bdfc2683410ba93dba0ec9106d1ab29bce79f56a832c06e00ef82fb48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9f0fa62bbcb4f5b18ee1ab7831d634e2faf5e945e94fcc61a204d7a4a5d39d24_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f448d0ef7d1bd805abc57fb34fd9acdae51656851126b9abd3038703592ba4a8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:21000531fed1065562e8e0d275bcf48eaaad2d35f54e81e13a03e9dbe22fce2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:41a99736bd8c61ac43d9cd84f3f21d4d174851c81e2a4039263b81d0cb3520e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:95c36149f02710b63a6c05bd3249027dea0cb332ce600226b6a7aebf4ff73e38_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:988d7aab9c210f5e09de3488b38758cac859c4619f8e8d715176c60b95993ee1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1dbaa49ed53404150877894965d638ec0558f4e17bb2b0d70933d1e93c26b713_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2bfbea264fdf5062c9454ad7efeeb799d1568071ebac6195c8138c171dacde67_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:a7a07a455ee7e89c4702fb1f15c7888945acec38d7ff1cf731129b098050a591_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b965fdf100922a0b263f372f4757fec562f0b48a8032d2c7090d9c8f19b5aca0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:54bb0200c75df26bf82e42db71faef1dc309be87095afb5de60e39d2853acd62_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:63d7e09d2367614dd7b83c41b35b538a6e3d98fb49c03a103f31355202528319_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:9557a3d19aec734063ea30485f71fc2f279b7ea77ef1b2d1cbd7e98ebf7e2938_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:de22ad5dc832ca597947d9eebd182f01721908bb26f8367e077134bc442bca68_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2568dfbc55a8a64fab947b40e160757402d1598a563bb1ea7a42103d2e6c049a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5044508d683bfb7c1fcb538293e01a54e21360f85dd3d6b6d9150be3571e4604_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7f9d5ae402c429ceb81c952f23b0898f4f768b048e87f4c7c193f970d83248a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cbde0cfe56b953fbee3a2fed6ea3cd13e6cdb0dd0fa74414b488295feecdf5bc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2ba313bef314b9e69e1b2a545ab54b0fbfec2d5a6c8b558dccf18abaa7d7e33e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9848ebd13facf8daf9ca0f32295a280ca5d4dff1d48b9f3e8c0b249b616278aa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ae1bc048acdaaf5dab22505faec4c6b0c582b97023409da8ceb84d983494a0b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f8a862ce45dd686fb79c68036e611e15ce84922dfc64f847abcf6b65aa55742a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:11d975797a78fdaca7e28cc15699aaee700b3ac8185bd5d019ecc2a51980ef10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:40debe8017daf2ff3c5b17e89a4ab7e96cb717ae7bddcec305fb1eab8bbce0bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aa195335b903dcf873590deea8e425735760fee97ab33c5b648bfea1aacfa894_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d71c752e32a996fda35a49d7c7ab959689a91197b0e229481891a03c151d48f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:666c36444702f862ad1df16b8dc76f3a8f7b4eba8d63473a4cacfcd34c7ca914_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:836090b24936b955f5b60d236ae328e50ac91ba3cc367249cb5d7762cb15ebc6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:837118a81cc9bdc984af5e9a3f4fedeae4489ba4aa98cd6513dbdaece6acea61_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8bcaefae8c33ff10f758558796e4e90193b1ce2ad3ece24a21ab93a7e685dfb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3fccc681700104f6edd949e78d406f8c10375739f4ce8c5c23c9e85b69b1f201_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac846a2c18b90026c941cc2fcd91197ca909f985f0cfc14e91fa8c0cf2b10b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:96f715b9440bfb17ea68aa161b833ac33265b372e174123bc10dac3eba00a872_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a7750c02c168c6243c3cd666816d5a4be224e3799d9f7d626cf7e64f07cf06f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:32286da133273dd699de38a8ea62c46b66fd0f0271788ba6b205ce7e34fd5ff6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:34faf675b9e5361a23ee97d02ae1257feb38fda6e287b3b2c67e0b2e4e3ab06c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:997ea290d800e3599f44e72cea8bdb65876dba2483d486938e2d024b1b9a4fae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b329d7566ac8f0b7f45be16a1b364e249036c2c8f703af70c9965240f682f808_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:309782f6dc79d9760dde0265959260871b592a5586bf4073e9561e813f316816_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:529879780fd60bb296f0d2656d7d5805459827820b0b07e839909032ec9fbc17_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9a12ba31f5a9e9e4b8114ed30bf9a067cd5b92430c35905224899a819c627741_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ee31620709847e19ee56a6187986df168cc55a41e86bee1488291ff6a0415d31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:16f45167a5407ccf892d7518ca3c7a9912d5d0cc3f07446cfd3a1de175e5321a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3ec816ffcd991bf5082f28a7edad858d9b02cd65f8e23ca2e320c41a33a0cd79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:50e0dcc3cf9d804afd0a8a3f633f36283817569fa1f5b7cad47db6cfc61c4a48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:af6e2eef8ff2eadcff4cd975245ba0cdc56f04931b248cde6d581d2d17582fd6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29b6202fa854ec12e85774564ed5da58d314916d5843aa6032428c3cbf97123f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8c019754ed9656d55c293ce39412f910b0f3ac833615aaa03e961183c4831fd3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a985f0116d10743bdde5e34fb181c4639ff0941caa66a3590713ea5d2586115c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b01b10b5836dae32a5b9938ba42fd4db2ae33a6b311da4e0c54ce0e48668ddf1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:64a243eb83f743985213e3c255f7ae58909fd3a4ab69bce80b30361bc9cd9225_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:995d3fcffd3f156dcd8831241e80223d35b6a150d9d72e89bf639b6ef6f2b81a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:aa7c8a340787569438c3c7515d62384f9a5ecdc53e400cc6768bc92c940efda5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:ee434038f9c8039bb2e2729584617a8d1b2554cb1e981f24a746badcc63c9022_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:772cccd41fa1d467cc54dec80bb7de08fc746507148f6220360c89f3f731c31f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:80c44734612ee4b1c13c995b1583a317e4742755ddd9ae515d6b9c61ecb5f152_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ae27d39fe63e4d5859648c7cc80b0fdf8ab8072bb8ecb34d21790552274a7abc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:cc9a958fbda1e4df8e235a0ae4c62d23e2e02dfcf25c3c18c3dfc8bcc787b7f3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:223602e0d30df9f086cec5c4f63562fd46f46726c44e186a5fec80f57689bc24_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7099a6800e9cd28758ace736f2c602a223f61dc00fd45def548e6d9a4bd23539_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:af138219459f8f23471300a38c65d1d0c580ab93b30c63798d51e8891a948afd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d7da61ad815088b8c671d5dde3b5878fff0083776e1618c3a11594e6f08c26b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:18eace0b9a62e03ca9e882c582a3ca9362a14488044b9b30076447ce3731206b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2dc26c9c7dd35b78f4ed2c520337631bc45fb10076d94e52d9a632dd66982765_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ad7c164753be2cf26a2c69aacb95f5d91e5b1120dac43cb2ec505794fd98fb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5b23ce65b543c607e5547f2bb71866255794752a920b7f644fb203086cabae72_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:385e0ff7ff74b73dac4393c5ed5d700cb3a1289d501917dd44a6adee10f492b9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4393f322b7404940430e70469c0ede12e724564e87c3359946e349cea2304a11_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5ba8673706092251814d05e8dc3d6de7e74faf5829c57dae0e3634cb6e80aec5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7cce8b979af738044110eae0d3f16db2e70178b32b340b7f98c339c6c1c80791_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:070167681620cee73ddfffac875e999f5a32c5ba48fca753ba907671c70e3ba3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3ae7edcafadd5fc3a2ce15754828efe17dd81a7fe95759f5d10fb843d8f0cff0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:4465d88b33622cf161e2df43aafe3fbedbd4e63f833a729df6ec5d6ffbb23b1a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f0dccb2d388210d13763e44e7aaf06712b1c463b73698566b32665030a881dec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:60a1f3345766ea95b39394925fcae2358dd8cc819a0f7b187363bff9f3bd1bad_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ea484b41505f1e5b8ddade45cf6f89e7b22ad4b81d740e9db3b4263672611398_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0a527723fa338e5204f37b50f7c3ea7f46055a91f391aa12f5ff91dfc621b45b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6fd265148a4fd19ed6f39345ae982687a6ccfadefb2dc96af15737550c46891a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1df097f85a3b46c3624fc2b59b6755ec1dd1bb6843ce84fceca2c40b8af74eda_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fb4965e61b337cbbc13b082ccfc8ba17f7c98e3a9946a2429967203a71ab5ffa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:19233828b527446a7c210823b43ab95d309ed58c124ce07bf2cc70f809a6abc4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:953d7116656841f449d6b295f0753a0d39a2474b3b6a4b6d6240d53e357ff86b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad08029d8e31a6c80b9d25947ea267b78ddc0e7f3a97dc1dbc075dc4a02283ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:e163cc3aff166d01ced5f33c6f5c9145a330cd35a7f82538017338ff9ac43f19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:039ccc1b8843a4dae1d65e616c23066e2e921f5f4693f52a6c6a9e0091ee298f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6c5f2e308f308f3892acb46179df4b6bd460b234a416f4414194005cf915ef5b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ed23039296c3dbd7ddce99ee1a538b7b83e32e827932e3d00b929d0f9de13a91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:efccb4622508c44f67b3693732b8da8bf28bf80097723497289cc3cd3180d19f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:77dfdc4b6e35954e750b90627d720a0f7a3cb6fe224459c09f5de359c589f939_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c4ad92a5a5a030bd90ad8be8df3914f70dad8fa8e2c984144791685c7150132_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:924c6a190d3e2ccf26e3486fe09b892629736bbad223bf608cb02cc4ca2b5991_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f75d1ef206cef5035c7a4e2d0f8e73330eee059919cc4283cf0ae8711a3e7865_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3daca8e471b071e56c8f9551af5d9afd8c2eb1e29cf87e09dc48214cc885e262_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4a3b3272a261a24b3fa681898aa7d0c55e8a8f67f719200e05e580b0606c16e4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:683faf9d19ecd98b5cc92545e3628a1049b13156136f86626896572e7401a356_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e294500f174a12001306f888e6bdf9e10d3d30bf8554bccd5c82f1227de196b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:08d7cbc7bf9e4d19e36b4fd5d27040329982b353032c525179227c3e15d30f32_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:58b18bfb4498e2a7890ee5979598decd1b9692168ee10ece35178e9c2191f430_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5eaf2d7d197bc327adb488bf3514d2ce6886900164bb8a7e3d8c92061baeb783_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9728bac89d23922ef66913d370ccaf943465509f8a068494d517984ff490f707_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6257b90eaa900f50cee0d5cf84c105158f70d9ad4a9829d5208cc261de3ab5e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:7b851c7bfbaaa9227d15850922fc76f76bc517f60be3c984e23d339fc2091eeb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d6142179c8354154a885955351e093aea68de58f0cbae8ec631da2d3d8cba63a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d939f022cd84850c27b617d17d71edd7dcb549908b74ff92d5115dcb5149df28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:530f79ee436e2ba7bf71f7cbc3b62c3be81665f5207555dec663565772158b99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9aad9fae53a218cf8bd83d50b3df6163a9f0ef6fe742a9527d0cc267fc8164a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c43b8d25569a9a26f77e1c1b6be0fff4467a9dbb8117ff562c2e650a2a62aeba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f0b3d8e6b527fee7bb63906136288b117ae31a38ad93aef266b7e0d84dff4f5a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26fc6ee878e8b9b76a61d203bfd0e01a61175ae9d6e350b4c8a01afc8e388080_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:93b66467306d137b06f29b307a72f45eb3a9149a15cdce0bbefd93a9034de3a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ada0c79488c2d4b388d12f9e4238054ec9e038bde604659fc70b1c368ad36964_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eaf2dff09f9cdbb55d3486888f5e18db19f535767aca754ea0ead9129bc6ca0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4a738c52c3e5bcf3c1d94b679aaea8e91b3cb3a3f981be534d8ee1274d8455c1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66d6f7a10465049938e81ddc1e4c13b2b375b2c92b39af99b2c7fb8bfe2d5e3c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:75e8df980f8d21fae7af1185852e235db098190d2e3098c7cc9086236a60eeba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e819fb1752cc974f7ec462dd49c52f9575c7b0db53f8cda50121ce1a391ef0a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5c0a5ac804bc8bc5f5e368bab64945e8e6b506358e4511387869f9bf458ba3f3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:9f541ec9efd0d0553a8648c8048c7b91854c3d8419e07c909e621d2ff5276c60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:cc987d4c88966417b6c45bc66dd878cd885b4805c9e2885fcbaca1734e7bbcb3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e88d308e0ea7524be29e017096eb77ca6df3c8b3ea58a8a6a16dd7fc2fd5949c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:231178be9e1d4d547dc7705f82f8e529672f47786de781ca53424543d9b1e073_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3dc25f71c79a131cdb79f72e3c6bd2a3c987728e52d3261c5935f15b1466150f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b05e21c1862a49132611c23c1c0b589c5ee29b98ef5711244a7c32438f55f7fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f1a5782a8202fa153b78b53324954109911991dffa9d7997229da1c6ceff7d45_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:17bcf0374c1cdded8c518835d832bac6b8ca75e05efeb0a6528e0ee49643bb35_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2873f8aca5b0ead479497c023010d6cf324fa893522eaa924f10695a63c1045d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ce52fcb8c19848e8fc81e8cfca9c47e1a257339eb96e6a5e4d214066dad9afe6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1f93b71bd8b9bd62776c67cd5c41b93f94b4b60b58a06625e7d57548518f3669_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5599c06a31ac2bdd1a8f190f5095a1614788b2aedab9fc4f454cdbdcff9bca9f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e79429feca8812a6d1bb6316906b670ccbb89c506d0f47a0ec8568cd9975a479_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32526be8ad65ea6e3f70126e66ec2494364930f90aeaae32f1ea3611ac7e167e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:9575d057a034bdd890854a08559cc08013ac76dd0aaf2ef11e26a5734be590e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d6f6a6f074d7794ed9d7015ea7937582f0ad1d07b35d983dfc07236fa3323bde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:7246b6b2f38d276340ab7d46baf8e67166639d6bcdb75aa901ddc09999fedd92_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:87a0e8e9d89cbb753a2507abcb8b0b1b3258a7a88f5d632f174e6097789cc7c6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:96069c3067b68f1e2942d7758c89426eefd21722db2d0b08ff5f1db39f2b12aa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c2401f994e1783a28eab6f7289a25a6dfb9e6edbf6b424dd0ee9320469cc3a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3eaeaa507833c96c48161f8fc13d4ade13b4ad85f397a41574326e7ef81239a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e84c44ad88440bde18b3f65817a1ffd69ce15d48f8772dd82f5984d68c73928_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6914c074989cf18597497721c5b4006874a7e9a12fff27c513f8e6ab049be83c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4b2274d948f48f8cc0df96f3bccd2d610034ac4495c977bdda82c440b65092c6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:72ba74f4ad3c5c803af1c9388ed1c7186295b74429f7466304339f22deecd40f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d47a6d11b74143b03ababf249a83e8ca576752a2ad58482a2dda2986d79e7098_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d71b697e5c67952876677ad7d89394139d322dd6320943c1bc32fef9c501c326_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:3cf00020f76f7dd6428f49aee9060f70f2d5d73a7579cf8400ba22f8a3c16364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8a9fc2fc1351bcf4a939eb506e5ac91788d65c5f1826c46d3b41e15e8ac7b3ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e16e35579e3696474f357bcd4bb3c77bdfdb1603b971c3267d08f8fd119da62a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f3623315e94aa6a0748d390674e9f2f8632bcadc5b8ccccd75bc45019cb5a9ce_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:bd3081cfa4a3a02061a6908b469dd9a0b987b5fd1dc73aa67bb2dc05ccd2c5d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c84b8c416b3b543d4406aa42eefdc1c02c12f2bdb1b7d56a3e5c0d9c549dec44_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ef6ee4f9fb6e0ebeca08a2a2dfd69cc6b5baeb5bdee0b3158f575b14398f3ad4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ffb6610a0f2627dfd68731bde61d78df97e4ef5ba769dbfb9fe723dfff0a62cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:9329715c3820b10b14bd23f2f3e89ea1172886a3c61333d8b099019701f80619_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:cb9ffb3b3c64cc43b15f52a40235df199172800aa837ee2fa136c785312126a7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:834b63c9cd783e684ce59e99d4b060af5f2d6b6027bc62793e511bd5ae91afc6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c362a8609bd2a9b6ca073545e2ffc732949b1791929dacd899faea3c4176e984_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f050a78d1622d2a10a4549fa7d2340eacdfc80e4c1a628078a4a13006df99e35_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f32061109e6d1b72145ead1598d0a2065ccecb2ae424e743dd613b03992ba030_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0650df0f1f51958baf5fecd36385b4ad6afdccfc77ff0bdb90fb140a7e6a72af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4c95f82bafd9f1a3207635da63f752252d94cf5d13405748bf9f1dc6d4e5f9bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:70ec142f9336133ffb3e4caebd30e579d59bcc3d52a3fd4c4642884103cd5134_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:11a23b0b5190d560d8a7e45c7ac015f71c18fac0f1672f2db84c55ec7d55f9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e04e8d139638d3b8444961f636909cbf640ab494b88a738cebb3c6a7805e19e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:503da2bcb8b582dd98c685b81bd031aafd71e1bbfc8962b3c8b0ea9110e9f69c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:e1e3d49db220a1e3f4f540ec89e06b8a4bb7dc72cefa4b96cb278001154cb21c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:12908e94266b5a90846f50b7fe8688d66c359fb3fc3e9c317450ddb65b455076_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:587f806a8e6500d4dcced927409c0b582a658fee0f51c31c79736f8c31c3dea7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8c53297adf899ca1152c61b10149db660a9146fe067476c82114287f564ac191_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e530b7dae37afa62a6c9def8c54b573975018b94b5a56fc88e218792b85237e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4cb9d96442ea8b54307369d340a8cca987471b191b21c9463027c9bddd754074_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:791d876a5d256f592916c167dc0919fd16e1251317356838146a5fde8fd8a6e1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a9a8d43364851f839ae1bc62a807a983421cf5b41a7488f8da7e68b7261af056_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e1571e62821f55bcfb611afb286ff61773a16ac15a67da5bf210b5d141a6b3ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:21e4959e7a52ffdfd8df79a73177f02714f8689270c9a4aab4f390be59524042_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:51a465dd014fe567fc52613a127c932e386d2a6e5f1faf4fe1cbb1e6becf7e4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:64f077c897c6ee0c9db36c7cc4f9913d1ed66afb822975974c40d98fc21bead0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ed3e46a857f509e0c8a08c750cea6e1de65bb6a1f86933165b36ca5e45171377_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4b47b7c763f063e8afe3014f0f902d55ec6d1fbe832c2fc2f0585121f68c618b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:affe71c5753db62c3117e7d4d8d3a79f3e076b740fe8895b5337211ac6809eb3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:664fcca5d05f7993a6ca81942ea48894df00d46728bae7580f534891e47fa72c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b37fe0e3a3212b0e82bb27cdf4b84f4423e4886d2a3fff5ffe46be761e98aec8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a2a838ee2839658272f41aba9d5e1b41fbb05039c1aee8a63eff7d14d7a1f0fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ffbee6c294475f3dbe6b73884fcb411b1e5303f9b549b7adfd24708b776eb306_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:43fd6e0b0d869a25c61ac074076a78a7f8f389a0c5247af03e7ce51392e90108_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:9f05231471d861b8e8a788a6f448aeeee16693fceea9521fd87e4f6a6b6d6c9d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:049dbb920b57cff7ffb88073192c4c843fef754775862e4d57d2373637e45c85_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3b801c6c05a17b0b1c763f0a87d4908ba4980ad09aa8f12dce6f3e11b8ca637b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5afc27dc982aa722303ec6aa2b10cf727f2d1b409a5a77e0f599569559275b76_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6354ab3fa4a9e9cfa2c51da14109a1a67e98a3b43c346203ba40036ef5c3665a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:22f52c4591a8ccddda25dc4a1eebcc92010f49832ffc28cf935b0873021b2f96_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ab74018d4cba5a5f1ed65e9de515209321ff6be359ae0958f2a1b73d799805b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:65b2efd1ededf1a89f9e6a3e12ee8c7085a1282b2520b2906cab1d80520c00d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:98d6f4f8d76d6dc810ca3d927fcf93740efe1a56fa6100c1ed1e80b84d1be21f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b07ab0a485d53b9ed37a1a1b244c94a70630972020176fa7206d5c9dc40d9962_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b4501412341595aa8eefec6973195073fbf3d961cd813e21e02f3cc14150e223_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c03291d932607165444321fb2fa980104e60ac414920c1c05c499a898b2afedb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e1caaa1ddc51954943c6b44448ef50d7113fcd1f8aae4a84fcb24749de315e60_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1268948f6dae5346a6a8052db8644297c1b98e1732d64b24073d959de18aa22d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:458cf14369629b17e735598d3e6c24eed47bdd8bfe054034b5a60f4f40b6ec4e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6d51ed70ff145e62ae5d22d42b7cdb071e06053d2d456bc5411da7265c29c96d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c11d63f511b868c53303849b22d71273e844679808aaf604c87b373491a99db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:043460ad9ec9a4b05671ebfac16b6b2eeb39e3ebe5f43e3867f3767b7b2f993d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:62420bf7fc2b91f60b32851f2c099ac5fda8083e6274d2a5523ccd0ece3b6a80_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:77301f40eca2b49f92f3c89a93fc6766306d39013350d635f0bfeff4b98ae012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:b86db4181d9fe036b77d0473dda243523003c19d0fa5888a54f3f19c104a7e52_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6bb49580fa2f15130fd93f51e34f31f963a4c9b8b9cd898ed573ba88ea24a60d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6caecd5a01bd49eff8acad2449074c505d07e521208af296b0cd9f0822f54911_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ca38c682197a97a075635209b6091a60ff412df3461950a24d1d881f830fb3d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dd9a440a68817b45e6d2d04b3c31feddb82304ac1d246c20c0e33355631d9624_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a251f2b5d7f716fecb5119acdbbfdbb9b535f2c6d8fd51ee0c57cef72cfa1964_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b0188af5f7dcf5f286e4ec4f331062ec77f341391c612aac52e017df26f89a89_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b3f13d71ce9dddbce566d9a5bb5783d3e5417b8fa3cae427f7f74997e4a8c8ed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d6384ac004f36838bc5b35ff63c4d1edcb3223c0a3907d4f099c5d85ab51b014_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:db20ce7a947978ea2646d479eab935796e8cfe482ddce01f3675066b221e2e3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:eaa77c0a842cf32f826c2ca19abbe4020997810c35e079c0c88a0a9361323893_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:59988d13b37880c4b79bf8622161c6e975136bdbfb59c8fe73ee8e39bc0f7fe2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:f6dd660a76715b8eef53fa459376986a60d9f2e7cd3f176b0ec5c6e8ce19cfea_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:05fb046ec30c464d04a70831316de4af2c29a226be1e7f73036c90899e6bd193_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1da080de78222a6c01704597983765a751b1b4544a81168fdbc952ab31f11a54_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:45c9e9816f3b14886661b4c82dd75f87e242f4ad3e0c1c5f264d1a1839e8cff3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2ab57f0587e4ff1adee3ac4ca2c3383955448c0b26849eb24c77aa3f4cb5e959_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:66b581d789ec455fc8bd8e01e980c7fb183bb0f6ccc09ff525ffdfa4aafd9a52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:721aa2904e0c2d5c4d0e3134fb695b6613e74809e0faf3faa949c93b68ed168f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a84aa018bfe05a74226938ca4e34b58dde33019aa093e01a7a60a8d6a4c913ca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1a255a287f3100cade2efe8d8b75ca7f031b9606f6d8ea31581a59e0ca38fde1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3778fc40b92ab82012aacfa7589247e6ff79edb9aa918caf6ba6c5fa3159ae61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:60433084081071dbf7cd337a3769f60ab109201e2ac323be2471c62178d87703_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96b873289284cbff34ea1c9f852dce31e5a72669f204d742288e266cc3a19d21_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0e2cca7da188aebd3f4445715b88a3f4727456cdfee2147e7521059722162fa2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:23043c95c32122eaef725c3e2f65ea824e4f83242614d2609e9367cd6707e454_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:68a9dd5597bb207e899a4716a7642cc28260e059ead26fc84d1e48d4e6159683_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c1a6b704c85cfb829b9a3421cbde16b5011d2c506143322e8f2563d6a5191fe2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1f6f4d1a8a3c89486253cd025f8d0e5aa34c0ef221487aed5e4e968e8d810285_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9955ec574da8c2821d783edbf833af9c4b4d4a2abcffd603b85d706333c68111_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dfcef3e2b6dfabf0abd72dd9743c91ca4c5c4bbe5bfe7488c2a85c2cbf467661_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ec5717ba7c764e22cf72a5792423078ccb9c3a3bb06b92a33eb6014f03f82fef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013f0b271dc70347bae313209781261c76127a19b3a2f8bd074d170a84e49047_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:19c6031d8609f10b2b075201c0ccbe6f26e6efd03f567b485b6b327a4f6a7fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:304cad693bfac84415c3f6311edf8234f412a4bec7635178c963e2f3fda74d44_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ee8bb516566d6a9dafaa65ae52177421adece839dd4db80426d3d2ba30a1ec10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:371a5fe6ba1f62960a89e6b1050a2d324c2c91b733704fed2fb0356ff2cd9524_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5eb44886f42c57f0e736d6259b55ba561beb6324ca58537e253581f6570b22cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:854407987817269c3069c1d1e4ebd7441465f971e28d391eddd456371162b449_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e7184c5af00f0dc4551f17ef5539952c25c37aa32d596514e463464c92ad146c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:039a4cc5025db0cacd9e5dec922d9cd51194cf0ce903904210000245c5e7c048_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6ccfe8e12098c660310fa2af574a71b7b27b23050f6b6c524e9c1787c7127110_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a5f3adb97a88b5910f2b5375e05fe3411652541687262714d50105f05ca31c34_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:de16bed38709aacd8a1c25b3e68a995631d38c12d9d28924360fffcc17adb0cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4cc2ec3ed32c991240703b0a40c6602db1320fdbd328e887b517a11474149030_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52e3ca4eb01859dcd5c4346d73339889f494576b19577fee88cb1800c84f8fc1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:949a7355b5e946e1d5c760e14244073db9df660fd8b28a3c6d06420dddccc298_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aca1f2e8b0aeb6eae4a77bf712b8c255dd50526c76e843f9960871cbd4abb6f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c075a7526723ebf1b921ceb895e63a6d5f3df60707afd79c4fcf1c9bb6f33e3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a952d0aa30010721e7a2cb903e30260a02f4a9dd9d83eb7ff02d2847f1e76e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7a7b182e9ec23abab1daeee26897eecb99e1785569a62888db4b54d6e897568e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9025051729370f663bc9231aa612b0bb51b35bc6da68f8b504dcc01c760a1fee_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0232982c7a3431d641fde0e3b3b8921f855cb872d470e5b9f69edc9b573c2714_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1e05df129e355b9a76f8bbb8aa65e9b4263fb9e888639fd2fb61f79d6d212c04_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:89451c63f28e8e515b4529c8a834f6e8e558179ed3d4f973df539a509933f942_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ace5b486176727834f9e1ca6ce46b4d0ab0bc6ddf651f4142626b543a02c61d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:007e6fe2b8d7a384cfe07309e8a523bd1b7d3cea896f3b7f29908a8d41c62f16_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3fbc6e29fc388b15dc77aa93d2623ba9a23db114399f3b07da429707a03eb8fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:42f1e088777be6853d6845aa25cee3f46df776aba71ed1209285ea853dcafb95_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:73f6897c667e3fa46703b50ec857958738442bb7d8b95fae051f761f42a01605_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:3f69c1b708c411bfdd1a2f5387e6084f2fa28e1c4bfcfe136db5b66377918bf9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:46ba8317ce0d48d6d0e8902fa4b6deea668d6f3c9c6c15c2a3aa6238cc06e52b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5e919ab71bf57a160c89b6e5964525a708a10c7cfdd87aaf911e57e6353daf23_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c706a7354b0006b9e9c7c351954f179d6c50cc2b872833bbb59214ae7148ae3e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7439625194105ec8e55d4f7b3acd13a5f2ca70da75f9c82cad5f5693b604bf28_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ffcf4fc9bf77edd7944824b25136db6027d21faef80bef9d7b126b9fb6c0574_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8540ec8af82488dd6edb249e811036b1e639a74f892af1ffac1ab5d59ceb0abf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9b497b933ce2f828025dcf4390c7d53debb2418394317da9a8c52ba82a6f2fc0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:37fa7e2453893831aa0ea8bfe068e692ca4f1ffd6f69afca37a6a4e7ad401c49_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:63db7c4a436ffd18fb03a7cda09cd47844691a8025f2ab04492ff405a85ed144_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9a30469bc5882ab2711af24dc3b3cbcbd0532f49bfa9dead772070c5fd1280e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ef2e5a237cc5d69647af1b904a902e4e216ae8480a54587357fb135b738db120_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6be6d5b27b6e178e0806938850699d1e760c4d456ae517a658b47cf5a1401a2e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9389ab668e31d432d3b2d44fe11f68df7f9d926179d0fbec8a6d1b30f489857e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ab20bef5ffe91fc06a7dad3508294cfb9a72745da8cc0342e59f515db447e264_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c5c16e51700e2c16c6fd496225946c033875f4fa4c0174ea625958bd62a7ac51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:37c574ecbe02ca7bc99355b6bbd952c392cbb2abb430db4b752257306c37bcbb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:db6cfccfb142d8f7addac06e4aec0d6686361bc15b459d169b0df831b1d00160_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e813ed4ae0135da60fc1e7e572f6a46495e03764c96ec3c095a4e61a8bdd338_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2766e79b9a9a3fae66e1d331ad2fcc2141a4108e816cb1f91557bcf2e045882c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bfcf47037dce9565700224c63e19aa2ca8935d72e355c08cc8754cbb84b41d00_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d4588b2594a2fcb58e676ea0e8d11372e0bea9deb53824b47a4d8f3c63e774bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2bb5a02fa2032146aed8fcae80961e9a6e37e1c8a13a368ea07d6b124f303519_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5998439ba17cc0cdbe1bf48e888862182d6e10400fd9df74dfab53d161f0582a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7e0233017e706ead44793f1fff610a4625a22a834de67511cd66efb208a24a47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:97bdb1cc0033381c61bc1c9abeb5f3ecaac1adc70e91b203fbcbfca9a9ae6c39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f4605b13a1cd445835bfa2bf8d2f094533e4b731ede1d00e6e15a83ca924bea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:20955243143106da7d9e730ece6e49bc84a18427ddce20cd90fb5ce712e5477e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6c27e11d2ba7f408c9ca5dc0bd898bf395b3f773931b04c558759493e0aece8f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:7f08d881878f5d69360edd1be3e1e5190a66df75a087120abb37b2c0a78b4473_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:755632416caf3e2fa4e8c24958855e78c74b12d5e3f2dcae93152ce06274d428_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:847a5098475d0ab53e351d52148f5a2211dcc8090e03e17dd7b161b7332465d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:93c4ad9c017eba69c7105c1f60cba46f201b39da79f5ded60ce13a98d7608e7d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b559c70d997c0ce2c57e2cc3f1d3160f5ec2367c53c8d1fe1d9418b142c5c577_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2674a13e799262a6ba79ba3e43c2560304a1201374272e8622aa1a5e3df33d66_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6bafd363141b2012cd318a353cfff9c109c6ccc90d227587f2d0e08316309602_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ad9865c56a3ac1997b3aa16166966f73a24b49a1a8c71edec2eeb795016b849c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c2d53d7716676842974f1dda29eba47d03b525614857591426a01b4186ad2edb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2098ea118ff218c9004be57932760642db74b9387d11fd5376593ebb3b2f13c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac90d3f60f0a9de597df5344adc3d6b1478b96d47fad0ea71a00597e8576b12_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:81c29521d2aa0a7d8a0eed047e5948d145c9e4a72fd0697fa9aa613033e7faf9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d9208e402a04781e9dffbab5c989e91804b14b6d8a5f5f29a79cc54f85782e24_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:71602c5c8069030db0fa7373e496c7bc23bba707756f57a082d7eea44f61c9cb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:72d17c4acb7d58df68ccc1ccd8d7334f35df3091d8bd8e25a949e3c7f528de1d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8817af94a399c898fea21c34bdd60dd2c927ba3613436f79aab4906ecfc92cfc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f9d6ccdb270a01e408d70d01d692955ba92282ec5e577fd695f6c51289edce2a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:005773da78ed8522b96f69d9e53c961811e79340b54d49dffdce92c59a0cea2e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:502e2c5f47b1b95e0ce1e3922306ee37c604845d1d1accd92181342b473d3b3e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6c68854cff5a2b94527d6230740551ccc74d1161e7a1bd82d8119065e9e764d3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6ff88655c6a7e78def695735bde806319fe65b5fb68ee0c3ec2a82c6d80a9b00_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:179c818cc5f2021988e1b71e4edaed742e62d398da747cb548896697617254a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a75ee91ea3ee181623a22f9e54b00c5d4b2e6cf3f222a912c8aff5a29dde1376_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:eeffe28791e4306c642f156e83c6035bebdff5d1232174d56ccb09b805f9271c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:fec4f6e102887cd0d47167eecfee667e3161dd21a13383e96ef3b36f8e319076_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:167bea17ac181347213db54ace41bd0191b77ad20a3a355e56c90fefcfef0c1f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:734b7d0af02c1b79781846ffd3c617b27728ae053941b112d544c73e0bf3a3b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a7cc1cc44f13ea307fb79522996cc56264a0e036bd5ab9134b24e4a0f6639843_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ca75fc486998027f4903a313c7bd742711e2b7bd11e55b1e0c557582ca3d1dbd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5d23f5103a7bb7c71ab5b79c2149be46e4ce746f3556508933593a94f15ba945_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b2dcf4c5a2b14b677212eaecf6ec3fbba8bef7e21d51a437449456979b5fb551_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b692ee1154fd6b6a8fae68467ae87ad89c8a528d50599db14f614c7f08831d81_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fe7bd87ddcdf1ec088e780a9e3421286cc0e4aefcccabf17d1c50e4a4656b2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1775e9ce012c333caee47c4df8f9187d85d8b47f6300e3a7ddf6d83af462986e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5403330e0c28b3af4b3fda34ea84b3e6edced89649cd00bf6ff7f8352d2f7708_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7e13f7a4f2a67e74b36e39b5e582b54a8979c270158789c658974993ad351262_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ad1b944c7135118573159adb6eb359face5ab141e8328420eaca3999fabd8575_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22ed10b10973b3a91b30a7269a88013439964eca8e6954fd515442d543bb74af_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:74dfd09f047da2dcdbdaf8b16a3aba913df216cae2f26898c4f9fe423ff6e330_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d7f0f0b52c3c3c7feed13d3ab9d70fdfdb89af06210b90650123b362444a292_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:88732e8c96326c07670db570f1b1549412775fd07a66b0816f227d1d4320a27c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3e0bc6b1b9cfd488a3cf5fd19d5a6d2839d37bd609c08e6a5a7a9da869ab3cbb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7efa402118210c406818a1791109dae10962706df8c04b290561d0c784f8a57d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:8872db8f65a31459cc63eaec8f03d40ff2b21e95871e59e3bff97b6b0bc9b9d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bc298ee8cd84ce0a44f51ba31cefe4052b67cbf9ea559fac77de3ca7a02762fe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:1715daa2ffc4a6ea78b5de1a1ffe556d27e3e9aa1cca1d6ec9e53217f27b7ffc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:32d4fbd0cbd715ed35ef290d459834423dcf6203374a2a480fc5513b3764873f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d22fe92972f9d9303f541977a3d753750554e6675545ad7e511b723c3869c4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a51b74a21651e21c9d8d8538c2cbf9272d09696abe8244cd2b1290777ad452b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2a82548bcb003f718c669be20b0abf13183fccb5d7d4e34a17e9be6ee08dc2cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2bb613f365004e6cca2c81baa7a59ff75a08efff24294779f54a51296a4f1afe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2e010df4822fc8ce8b452dd6d9381d38b1dced3c0e429a9d88e02ac61384c825_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a8ff1c3b2fa1dd0d849d5cd35526a5ef2135bfd6c551ecade04e4744ac595453_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:86e68bbe22d576839fa35f704596b2f643c09e3cd755fae8effe90935f65ab10_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d48fa90ded7d3c77d535abf9eb8f56d32e1567a3c292686a7f76c6ac39b5c6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f781a380867adf7f20c38114cc8d7c751cc84faba5fbcbfc67b721793f017339_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f9d1a4c9d0a5404e8493a84f94fc1715d6226b22b672f0e378157405f5a7204e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0696026a1a59a9227aaac743602e83017e0281e6726d94d46c20c69e61bb6ee3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:18ead28e318b6a165c6988639f9361dfdb3b7936c026f6043b66996e806be30c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:64802d951a8cc8294fa9194e5778fd8ba178cc2dff80234d85234121013ee58b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e6adba899b629ba8eea41574e66d8ed2eaac9169aae5fcb789aff787f0724b73_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:06d3718842b1f074dd7b6477dd8e738e91ad243e06e466cd9cf8b08d7b7fa024_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:220e8b87b16dc9219b324fe7b97208869a17d1039e620bc91cdb5aec19d4a0c2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d85785005a4cf5e4bc26adabdddffe345fa8827a0db2240d01cf64a49747675_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fb190187adc311919da380eef951373ed4f907a07606af0797e96cd7d253f20b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5882d9e24bf330ab1bd022877c1f3b711a41b329c46c64652105a1b0a1c24cbe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:a7f9b163518a7508adb281ab052ca9e1c233c9ee5efe37efad238eb0febad187_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:059a0c17ca865b86ef3b3c19cf641d3dd43b007de861583f5c160083dc52a012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7fd099e945dc79ff47d6aef25ab62b66920ae6e7338ef2da01ec5865970bb62b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:2461d40854f69f775c2643a67eb8676729f4fde44b8ad6f106b86b8a66342f67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:c69c4ec8cd052eeca122726323294481522580372cc3c948fbeace53beb74765_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:05f0aaebb8307b693452309341fef6e3bfe6912a34c1a9d7ced1be398d81351f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:0a46ca252418f181a86af41b48cbabda464d51f9d9f44792efea11e54ed2167d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8e9b9f7048b849a45ea2edbfcdbc1601d8a11cb4260d5c1d89d85b5ed462e7ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:cc9d2ebecaf2c78d99104d0a3ff23cf7748e42f13d00215783cac971193b1f69_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:25e957fc0f6723e791625c55d1b251f6b7a894e15d74e7af29e004add4e3a6bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:42a64c335c5af6c607f435c9a09411e789ba8b66d4df1201d532f27df5b9dc04_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7c98311b8e0f89f03a4250cbcc60ff62ffe65c4ee1bd8c34c31b623442f348e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:abdd622e2447490b74f285cf653b9f6900b904aa6750b34bf9a39f09dc6337de_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6a3350010ffc87ac68f2c8eff3ccd707bef4d9295be9aa7d5633e83b3fdcec1d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9ce9629c6a48384d0dd7d325fd61cf62b8c290db57b2917a8ed671f7e3d4fa9d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a71526c9cd2f4c5f9a397348f1ebc08590caad252cf3bce6e5d07ee6c77274c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9cce3c5b53509924dd37d4d3a250925226372f26b45bb52a9dcb46526b1f3d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:137c1f39ca66f98cd37c8a9deb3279d0acd18c24d70a88b6e8d9033a1926fc0a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a38f0412ab643c849826b9600b42aa8975f4d77546ed3b36e92e7b2dce237e4a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:de2eb4f5453b3a0463c333a1770034a9016eadddbe8a07c2666c3d58367ce3f9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e463a6ace53d6f8eeb652db6a69ecda86245cf3a87cf10ec7735738375d17c9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:348c8fad1c84cc45b10e7add9d5bb5c37057b699d6466e18c3bec3d593e1adde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:37bcb5a159c17e1241a4e5add6d5276512ce99418b2f779c1e2a976a099de7a3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5653e3a360eb8e725d483a152ef0510d5e1f7142666cc5c6e27f62965f6cd08c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:57ea23e19a26640f9e8bebcef70419d22c23ff334878e89d4b77a894acc2ce7b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0d0633b8cb1de498ee1441b5e28b4ac6aba808f6ad37d3c2bac9f01c94ff33ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:702219e963a769b7dbe97a0f9ea6a20dfd1415097dd6f38cf31cea657b1e4936_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:aa9dc51ef8366806a19116f700448b4c0ea9dc1de7fc9f2b8191872de744e591_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:dc192484377ead9c1805632aa8a8252186c4f5f0649bc30ce521b67f521c66a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:02a58199e4b61c2d8854772359ea02b3abe946e3e67d1cea7ff753c49b0ad3e7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:35e90ec749853c76f098be940be10e29e25401c6a1064a27843f09cac052378f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5fdb8a778fc61b0900436f22aacadd59f7da453af25b9b2eb9c22aca76bc9b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4554e982ba99a234ce6c3717e3447b817fc1c35a384e8fae9766dbb4f22b868_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:3d5ff34a3f9281202e3c0c9593b481d9b16a8321020caca71fa4e3b4d6527579_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:423f3c92919536202042249d0e3911b30e777ad4616ae8f6ca9968c87e14c33d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bcc604910483ac005899662bc05a597cbc8af51dd0c1dbaa05d521b95cc2ee94_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d76ee581c268ee313f9815c181bbbaa91f976c2da68a7a5dfd304e62f4e4a003_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:213608462f3f06ee113095a0b0be07ab8b1e8c194824a11f56c67392729e906d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5f1fd024087262006ea5a3a03b1eaae1590be13fede1f318987921df0c2c3800_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a5d235485bcf72b816bafa06ed24b596b2b72f543e17e845ac8b79dc16f88a86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ac8a2e047872045fba2fc0ea483a700de6c6398ae2cd184bfbdb021969d6eb6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:58dc4f0cae516c3613bcb01833e42399b2db12bf7f82c68701baace24fc77b12_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5c793d527449dfb1b10921bc56e8a31ad3d0f8e05dfd19a1782a67025b89879d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5ce2fa8d80f65f80b35fdce9568eb02d1a30252222f8593f60d3d2ab85ca9a7d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ec31e82b039af04deb6b8f9c13810a61281a3cedd616aaeb03315bd3abdb2d6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14d78d97d80007bbfb90b2db94a3d0aab2c5f73e1785fb27ce570cfc5e31c964_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5ed57df32a4594d7acd4e4411b009c6bcfc54b2e90a337f809b8a6a53e858480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:69275336a4bb1cd9093233541e6f1e29ccecbb8096673ad0b1880d81ae454ef0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b889a52cecf44d33e496bb09da6073217d856dfbe6fe78149669ec2af3dd4f63_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:39348b1628d4c75591d22648681ae23c441338241b48d2ed748df691a56dcd36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6964ff070c67d6f71068014ba253466e6ede36b043cd0f8e3908a32d91953f87_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a274ec689248b4fe3431501c0045736e3b24df4afafcf86ea6d0704e22586c27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ad6f9a3b78b0e98bab747ece64657e69f301337f4966e3f40d3fe0588d1a530b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c28651ad376814116ca3592e5df4853dc0cb04402d825a2d12812ea6df06a4b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6fa533909fe009e146d0522a95259e7f80399cea0ced183c308e146bc51fd9bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:30c988074c30420793cecbd4d3912868197661b61f00d01bb8fb86f4aae2aeab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3dd6b992e2620c2d08de3ac99c687a9b1562d1a46bc9159a14e34abae9d40f36_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1200e38684ea24ad9e98352ad84e3c3791be192f08f22c77197987e548c02939_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2fa632f63034c5e2ba411ecd6a6655da1f1b5cd65e05dd1c2063893c77fdfb9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6f9a533d4e52e87336542eaeea992cd22d2979888f7c96d1537fe89a7a186a8c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:784e009ef59f00cf7e127d811f2cbb30f8c4b5c489c9d51985c8385400ce97fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:3576099906e843ef0a4639ab2563ea90c9c875d6be59b1bb687f59cdcff0acb3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6d0bedcf0cfc56da79f55effbb2315fa7da2a126347bf0fa3b21fe96b9c3f037_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7aab0df04151b6970f04174e2b257a77615be9eb724121ff29b59347f8edc8b7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b9a4f7fc7ef59029d19640802db410d32d52a35bf7c8a5ad229ce1e0b559614b_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-04-29T08:06:12+00:00",
"details": "For OpenShift Container Platform 4.19 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:4e97f1a9f5f5e751c7795ab6638723b064447106845f3d75d35b03a1a6c9488c\n\n (For s390x architecture)\n The image digest is sha256:38ce542dda6ecfabbc74da4052af74b63a2e6e00ba3c58ccb2e8610ee4fa3ba1\n\n (For ppc64le architecture)\n The image digest is sha256:1dc485424fa4a6fbe7864c44d2b527351d53b9f7d7bd24d349e6b25325624bdb\n\n (For aarch64 architecture)\n The image digest is sha256:4f700acd8ac54c1ff151c27ea9042606fef35a7874204732503656bc88e19fda\n\nAll OpenShift Container Platform 4.19 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1d5caff7082d26409e72c3d18b018f01178321f3922a0868af8058f839261d3b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a0968a8bb5df2b0b41bf55b06f11397a4d0c0ec290d22bde93fcf631923091a0_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:10093"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3198e3a7911d65997d84ae2c4a4756213bd6169408f8e5b4d4fcfc1312ec221f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:75b581b7faaa791148cfc9a5e5b4c87faf3a809d2baa0fbcec38bac757007b49_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:af1751213d6286401c0e1d177bb2952715b50a255dd0072452cfcd1a239c9be9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fdc295c04d946e1294cbc811e5ee20827cce284c7a5358c9c6c926f5afb5fc7b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1fbf0bae66e3d3feafd7a5d800ffdc203ad1171d41da344c7bc899fa9df0c439_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a83b03a6cc820386376a5e0b5ac0bc43147338cd0f77ba6b20284b93cde06b63_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ab5dc4b258e7a47d4a05f2f4975324ecdb53481bf591d41dad10543be93ac59c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f6fa7b17816eb0b9d73c00dbf4715a26458d784e65858ebba255b032a5a2b3f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:565239690ed2974560e390d87055eb74f793a4d2abe8dcfcf0d40c4b1d3e4334_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5769b6120ec44707f7b98ec0ba5e90dc8dee0cf14a2795a0785435cb01711fa1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9640a22ea7f43b46c281d8271b89480a9df2b5c9ef500b3b9600c5373ebdade6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9e682bfd352c260c9127e3f2affa6dd16af28b3abb8ee7303753eb0ade31c1e8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a84a096bab105b8e51bdc5f2d93c011a8a6a32e0ccf5b3a5ee2cbb2abeeb2aa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ef77e97f9b16035db985cc79029fc5c3bcd6004ecaee9fec9c05e354ac1e599_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5f3011e69a519014b7801d2acf0897f95635dbe17492a09216673ebd4a1c791b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:eaa84214ab82626dee31c0f652f6d4d980065a920932eb8e69f2e078c8fc16b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2684c0efc9838adc240b08c8b263d829bec71acd381dcb4147d8c45eb1d08d08_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:31b01092a5183808a2a97430743d04941f034388254cc7007e74c4ce3083df25_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5699e966b38060569e298ccd084fe89bd719302ca70e2ceeb4bb9b6ca5be8991_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d052315ad81d7689a02be445c9a1df8d296fc3c32a33e3975dcc4297fffa2bfa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:4b16fcfd326efb0618351bc9ddb2c3206b18e189c188e5c9fcf27f3ca8f3afa7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:511bd02437b2ab8480a54dfe2ed3e8c11c3d9d2b332212cb455c8540678665da_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6d971be6c49127312d1568f9619c9f4684254c64b77a047f6e24e1caa83e9416_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7df6d4e5830f60779a607ad0ce8716034f168d5d9c6b563bf098dbdf3b2fae05_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:274d4e7ca8dc6003a3d18d931e63a4a0b4d5f80582351fadccef4195de8b847a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:2bd57947814981b16996f8d12e40d5a5670dad3eae9fffbd57e700c39c1b1155_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7339fa5d4a95cd617046d6dc06a2e97b78c2448353f2ee464095e787a3a2fcca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cd93cbcc8568e8bc3965cfdf4c989a91782a08c38c6affb64a0a3121fabb7075_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:04e57127605538ba40496972299b81737cc2e5197a2ec97fba0b34d74fc9ab5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4c9055e26a32fd7f824d0e0c5dc605c6e59ee22369812ab8331f7572e5154ac5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e8d4c571e3c88206979f8e3c28aaec2fb961b028df0d499ea236c494c0c4096_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ffef56a2b3d651b521f8cfd8024babe6fdd9e8987df4b37fd3d1945d1dff1a64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1dbb201ad9ba579d5fec8a6cd23834d0c1ad9c4d44927b1c90ae448458ecccfe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:2057e81c225d137b781788c9df16ecc5bab9a103a029a47196b9e2c53d4171bb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d66f70ef41f4cb5cabd1e1c36cf32923cd0f228687925ef8c1b08348dff12ea7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e61c5aaa06056181b140e49b24b25835c806df7a51efd7597d3d29c8504dfe3e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2dade7bac074ae0b6d6b8a47004a3c534c6b1a484a822c45001f5d4083742aa2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:40132843fd968f729205f908824489fd67b9b0e5bfba1717840f661147af6adc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53c8d86e293208c966c8e7e4fd3435c9d8806e97ebb31c3e963f26456fc38600_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a310f85c49c19cd35070957d0621694e30215432b5d01e035ed3e8242f82c283_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:29247ef394a58b75aabdd5cc168e578fc2347c8e0c1d779b7b355848a97df2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:795a0b596a024d3793c0d211f8e2acf771ae79d4c5d47decef1facba2d5a318b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b5277a1b6205eb2ef3c75d691272da6f070b2d10fb1f27558f9241941471cc8d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:d2acb9e2a03e0c2873f562605b1e9c9d32215d1d9d265ce18bd262c7c4263f20_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:874eab1c9150b030a11a0742589008c00cd6f8af8fe188ffbbe28ee6b90f7bf6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:9ee41a2f3a833a077416d0bdd181d767145830fde45cc6fa5c31196ef749b1e4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a2dfbd0198e34753e82c002abf31d92585dff3b8093d77fd38d8369cb4c44ba9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b4f9122a9571ebe6e0da7465f498ae3e74cf7c77dd6062a675105f4c437e29df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:054e6260810a05bbcb889e80cf6a4f3668409bcfaf6302148c1230b443fcd8a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3d0ceefebed5e66f56692e62fde1a1b435cfaf596932058d0f2768d7141b6bc9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:499f3d65ea6972937bfed0d482a782ebbf807c4c0cc369e81d53dfa72c591657_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c08cf8ce6baf72aee6019b7318106e3a02e635f4b385a71a2e58387e706a2cbe_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:97af951210f4ac7395effe942732418e9999e7b8e54c9db5317eadee25491b3d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a80d32903c82085a1904b088453a13c88202d53c26626a0ad3663c784f36230e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a913a01a437d7a6d0ec6cd6eddccf25f064e161b07ed3f9fb0510b485130df08_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbe31a367bd21946e4dc641324c5091a85bf3ae3befb4f40bdd59b00c23bd67f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0d7dd7c2f034bca5dcb69cbf5d8e1989e10076fb4187e9c144201b2afec28a2c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:11286a96806113bfbc34db1b1e230fb678f11135da1809bf7162cee01bfcd267_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6fc448b6852cb86de3661f170f364c99940a004d1f85f9e0d546f24aba812fad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:82b0dd3db731b7a84ac6b7ff11c2407ab0020e30ef04cea06b25a007be5cae31_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1aac0c8d30f9ceb91a9ef3cd76fe90c338568b6408656687fe168a8c9a48d628_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7062eb071701245aabc8f0839c966e7b4b5fb1673a0f5713b44d82cd726f3ef9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:79de159f6b1033732145619c507f29b09fa50f2709fffaa5a10f6554c6818651_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c56ca8e906e3b544e0dbdeca92c33ad8a7b0a846378e3b6c9ecb050bf60f2d7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:11c374a767b0cdcb1eee64e69900ca970dbd67f814a76ce9648f578862db2dfd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:1ae113ba4a4f5c2e2d9a2abf69d37ea047da7e879486ddf25303ab709648bc79_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:64ba60275b58312a1a2472ddc46894c40e746014eef5ea4379f71c0b6d7c96a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a0a1e7e812c0f1280e24cf4feff8dabaf299f110a8e8e695dd2e3dfb98c1c698_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29de1fa9e82a64eb363bfa664dfac943e9531a5cc46ca5c2e2c41b93d8b7fee2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:2eee252e29fc035c3d8b5b91ea2e08a63d96b9f11c6d29961cb738cf1ca73d19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bc0fd93c51986738cb1f49fa4a31f066ea2ccccfd45c36a2ae7066244cf1e351_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:ce46c15516097e435174ffdd74a4a89f1c9d44b256f0ab5ea84b846ca2f339d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bbb9f7761a83c0face258f4c056fc8276f1e84e37e533ceee3cd1ac11367ed1d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:d23edb6ed5bae7f0f2be4e09cc70e031579e06bb2d42cb1c507727c319deb38e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ed2a405c06a57740f0f44a8c3cd9b7e3aedd0bfa372d85e06852082f4ce87ae0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f360847ce5b67a5ca834ace7da710150d47786dc10eea85494e467cd4d6ef908_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1d3073d76a6486e752c91e90ff6030c0c0993e9b09ca8f9efa44e5decfd52d97_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4c49749a0ead346171f842c37c832cb6c2457f6812fb487728d561aa85d262e9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f1f47f29cbc61ddc25a846d4c7d9caa18b91cfcf0e089989883a28ad86b1f2b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fc01321fe5597aa44e732fdb7e99670d525a47dc7a0e0a37546f4b28fd697b60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3b5506219e72fab36ad67c982bd7f9bd2d462070214a71b4fd115ced29aab710_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:465009fe0147ff5370183ee02173f430d0b9cfae5d579aec78bedbd3cb9d5dad_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:607051d5881ef1f78d6a62e3ebdeb761f83988788f7898d869482c22773dbe9b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f12bc532130dc5fa8c8392d3885bde80ca93ba9700844bf9fe54f4878ac53f46_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:33e52f2ae99d85b6fc05d53efb17d0a72540a782a33fa91e766fe2e47a878a9a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6d03501991d6fc5efd43a6c73cb0e3c8630db1f690bf07253c7e7d17a3de07c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:97598836bf560759a9ff39d9675e5c7f18a03e14500982e442ea93514cbf3677_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f24128b82f5c31b4eaf4f7198e4b8c0c702588f0568221b07df121175066372b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:671d23e3d686856a4d47efc6c410ace8deffff06134c979c042fde8e9de487a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9b9e3e354b0218bc54258ca7a8f7117cfe164c2311965769847e83e7f6c15d78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d59d91a2af93c1c7b2dd66e5cb98cd8ccc29c3c64b2cf016dea1d2828a6e06a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ff08f965b67efb7ff451665a77a7bc0f247cde4ca9038d5558393686bc037c39_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5e4971e899f775e21b6e1a91f00f633c9467d31bdbf4b71038be98520600a625_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ae63547bd2f56fb1f1efe75e17413e43cf503fc7089dff3fecb68d2fc50bef97_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:80154aeefda9559b46845fb40f50aa723f75f29485cfb4846995d08b0c0bceb6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:fe5558e0b36855d11e4a57511f878702f87a3d907f79bcca226e99a0c8052628_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0ee0d97e5b746a6df7d95ee4ef32075b52a235cd285039e2460f6ad084b1f5e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d80a021dbf04d702b2bc9736f036c0436191ab4ab3510749ccd03c533e9b5aeb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6898ceb180df4a46da74c974cdd105e3bcbc5ddd1575e3cabe53a43dc676258e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d4c950b548bc3ed89ba8e5e216115bda1600c67d5c35fc9979fb4155415a7b42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:39af594e6f2fd164192c69bab214557cad92989f21e059cf66f00e455c7f816d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f94694f0d2db1759fa507fdde4594e6b4025a61e3c3f8f2e6caad509a77f6709_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5033eb3bcb9c08972c36d6e19b8d192d85822373e76eb3b54cc9168d86ea62b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:a9fb56ddfaafe28542fd8a824923257122500903fc18626f90d84b7e9b2da856_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:0f4d2bd2755eb5467e25d30ef813275b15ec77c1433d406250af5294b8b49f55_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8a2d63e97b83cac2d12e809ea63398ba1c188dd996a00189664c5dd009551860_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:10847c520f582706d956c48a95e6e2fac51cce89aa8a3d4fee316fb1ec97e140_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:73d3bc342e17226fc6e47dfaf448d09e394ea53ec199bef1ba42abf3e0be8c5c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:11f214e396caf556ca08273015712fc739d1df22b550812d079ef51af642d311_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b8a8e237f5827d7935e0dd8dafe0f59157cdada056580d74feb4ac1b9e05b683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:26422066656afd16e5e36afeb7e4b5a92cb6888d550ab0a0071da9a198f290d5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3a2ee96fcf0963d55d4c1b6ffb874be6c3552ea0b9917b410976bd59e4a58efb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:2f41d30f61ee12bd34b94ba6d37a517eacb2dc4a51c938f588a87c1f4333b924_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:b49b52eea375dce5ee2b1fa3aca1facd6ed65b94e44ab235753eebfd917fdf58_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91e0a641719fea07fe1185250e91b13f8ece46fe371bb603308306fa9bbfc5d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a0839939275e2b68712d77224d5a7612b10a1bf0152a6f57050f179a1c492f70_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:bd2d266a384c88aeff5ef7174ecb532b24aa2a9d6d17a2e5c01ec384102571d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:fcbec489ae513f599fd533e30672085aacb0f937b7d3ecb8f97a39b24d0e3143_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a37378e201c50cfd94eddd0ca6163650e8af46e7c3a4f97d821aff530ea5374_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:22eb07d776eed9b364e0f8843dd2eed75c4295cd9c5d3567cb76b5e5ce20b725_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:73622f6358a99c5b2666edc3f8b680b4cc3906e2f198c67709973dfcd7cbb0df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b18d10d989d149b9bf1e94be6b115ec3445541d5d0cee0358b0fdaf634f93378_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d1772e78e5b5aed465c12a05548f9eff106f7a1e00d3d913830f8dee427fa4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e9ca0475950b50db7e62be4c43d82cb25734b00fb081359208323067c511c19e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f403594cab45dfc4de5a1fb56f8c9cb8d67ee8b8da68ef64487ef45ff6578236_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fab18be096158a97131184f91230ca5ad7a66946ad4ad527c224f279a4d413f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3e79c9035ffce3cb2f835487bd144c0976dc407890016d1fb86d1f1dc3453ed1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:70c684711eaef0d1b4f996d745c936f98707584a54b5d9920b8c25af4adec597_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8371e3f60ff9846b4249201911cad68360c81e944f753a6eff72003a17c2512a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ebae85f444356b6e695da3e3d2846bccdb8ef037b8cdc77f94128574531851b5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:0c0ffcda769ef04c9b46206aafeed9d6afe4f82ebd46751aab4b47ee6584fab4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:408f3dd8943ad4ba2ae37bc2708b698e60a150e98e1c0876e46d088832ed8d24_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5cddf09377c1fda878639186f3844bab8833fe3890f3266c79dea36faa4f11e9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bc7f21410949e77fe85c5a7330548b893706c2471d7d4e8d5c6c26a873132263_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:283596834104ae59f2780b8f0d61d90ea6128c4b09d57da03e05414203ee9245_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:53eb49907793916b8c24463ab096e15d14265a19da7a735a38bf5ec2b9625a79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6ec2c12950d227467d95fb84bbb1f9237cf8ea00b0a414371123dc524e94c71d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9fa52422e5bb14cd6eed3ae6d2a3c0ab07f801e6f92493ec59217025239a5121_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:089a4975c6964f0c0a435586733b9fa5c3c9c8a5e139580f016f7f69ab83da27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:950bee80200f2d9bdcb3f07446eb6aaebe4b31642990272178441b6f9e56a761_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ba71968598ba3fcc8dd2d9e3a861484f74804828ebbe5b7251da6706b4cbaae0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d5513c03787f261759b02454de8248faab74c402a7c8d9e948f469181dbb786d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56b40826166445e18229752bbcf65a4cf498e30c4f763110099e9adf1accb209_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:62a48fb1fc6545c57e524b1e1e3dc43b9749c024578e5266defc819d46d264e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:aa2333d5515daba8a887e66ea88370041a21a6f3c483bbc4e2bd888723c25285_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:d61549e87a7d32c426699db0e1e7f716a575427c65493f9af953a74581ce41f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:328589e1b67b3322968ac4f8b57193b936fbcac1317136e2818f8792e76a7d0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:362523f56123e0d1b18e7b3028db4d883de2c886e5796e569bffc64118577ca0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:5b18e39a6782f2bac42b00c42d88a05f19d1740d49082289aaac11aa07a48f35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:86961033ea238cdf3d061f8aa811f4559001c4e047e98165b00a8f9018b74c2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4056b49b2c42986f94456c5c3a5df02d04f8a08fc4cba8b957c040e4590fe581_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:94b1cf74b70f1ea57d939327a45cc2202783f1ca1d098ff27ac8aeefaec8f2aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b7acf9a4f00a5134eb1810f0ea70fdacfcf56549ced88a80b36abeda4435d925_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d43c576b25a46f4b13aa9968a17c93078c96acbe364e2fc13e12cbeeb334e796_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:020cd17bf8debf39db376f9f514901b1bb882de052631a01814812dd0a913f53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f857a7dde34e1082edf0e26f92be3ead9148a3c581595a5a945704697d9a9e8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ca86e79869a7ab48486107e3637aa3953201ea36b6b8559ae8b2a04041606c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7f0561027732ff639f602c3a24d89894302fd43879370658fffd01a57a99a1fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:077fa69807819b9cf9c057e592c8e75c8108ea09cb2da43d7c378dd76ae68c51_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1493ba223106394c3d89d993ed18f37af46c86aefa50d2a3da144d1ca49d10cc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3d6a4223a99f958f0fa1c4afa6f1aaa7a584a996fd95140c1bc151eddf215c57_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:917aade90b9dbdb7c59ac5c85dff49ec74b29a27aa330352c24680a6987a9a7f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0539cd95b403a48c3ba7a04e3e27da96798e7e342bb6696f65599c693a4b4297_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0a3991f02157723641d576f54823b42d424e612837f7871ceec21e40633235c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:60cda39573f604f52c427956ff45e8517e498783efee60cb8c7804ffed26a465_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a564cbff84b987d316d891c033ba1ce2299d0ebb655452671498b3de789b6f02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:23e8f2481d7c5f71053408be6bb5831e6a852ee4c9428f2e72403b6fd721068a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:38cceaff79e567296a50b816cd81cf60c695315474c62e0b380d9d0ed253eebb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6301be72ffce6f973f70fc6977632499d2930cfcf23ef6e477af59f3b283e3e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e70213ca82db398d11de723f2dd463c196059fed0639ccec30709332648efe78_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2bc4240c6a9f5abe64db9b36884b14d0a763e93a6474096e23a353cab562c400_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4a524f1fcf7c5710ceec19c651216c326ce15290848e4736d504f3247a20e1eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e2dd70d80b53776a74125790edbd091dab84b8da27545e129f9ac99d7d5d4657_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ead5377c32eb77ed07c2285ce30eccd930ee6348d19977ec8c7f8050d9b0ff04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:27a4c883fefa0bdb0033fc23d93875f3eccdda559d2813fa131a8ad3b24b9356_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67182434ce84ce97c5374f5ab962a79f67777bf02f82ae92be8f7eb5d0c2b85a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:8731368ad974fd8d1e5c954284fce9346912eb4210b01e01e6fc95893320f591_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:bc7dd594fb0d5018aa4dc0d26653f73d1859d978e07f0a1939189c5d2d654895_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:20874645efadc9cd5b6a176a6d76cc1f6ee5175404f7da5e10fea3bc98498ede_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5854e872994fcf1c4c534fb1b64f7f24ecffc120b177dc8079056b6a420ae698_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89802f2938cd3444ab90393b1046d61cbd3d05280432ea2390732a0d0520990d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f6a6951136c7faa7b9bcd0f6c892ec9658a2fa8701e0dec5e45225c3bae52bc9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0b54c713dd339589a9b1fc5e109a7b65117139bd27de833ced58f9716fce95cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0eae1a64fecdc43b68370d99fb14c369c5f0116d37bda62cba7196c0ea002116_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6b167e1a3755b0a2362ec86878e5614ee29226fcc956b2e193666a7bfc47d44b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b97afe9ff8250ec6647976373edddd171f0b362ce576087d8dcac7c4ea4054bf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3d7227cef380afdefd5f5a05001129a389029547c6f5ea8dba4fc46e20793f23_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002f5d99c5fc748401bed6ef7d0aebf2fb58d6850e7d1de4df622c84e020e87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e8d8d468ce7f75b0653d4b3e41dc63bc2fd7e231d32bd2296d08155eb258349e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ec0e7dd227d354544a2e67dd236b93970d393c87c1d6093f8191b9141c40ad01_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7807ea7a4377bbc2df491ec5bb74d324eaa66649fba9f40ba46957fe1a758081_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7a977b59ab4f908549ad66c89473f9dbb84e31eefbe6a8dfc92f5598d3f882bd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e10922bda03c19bfcb9e6b85eeb3bb0e5ad0ed717375c19e2a31c94940ef74ee_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e9101408b3219a72c3e43b88129a6bc6918df42b116ad18efce8c7a1b32e50bc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0618e1978b5b4ac2a90f578af3b8b1c471ef922a3d01d58d413215aae8c5a509_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:164e9edcf185697cf77fef80a7b26eaf42efeae25aeb04a91a7e2afe8299828a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:366eb47b3cb6c42670ceba8966f0ab119694536fb2baac881685e75e6615dc85_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6afb37d303abf20e6e100a4e472d782d6bf063ae6d131852a4ef9cdac53f7dd6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:28b92b175c80d10b33844a1466fe71cb48f48431513dd0c634f2ced57e0fa5b6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2cab2a6c6f64eafdc588cc11a5537e1a2ccdd0cb37eb84507c985cdb79855e25_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c8322ff72825fe9dcc1c4446c8c3e4dd73619c15542d7f483642789e0463fee4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d3ef2745733b13faa31084c3cc345368c89f43b80b2a76e5b10fd7bfc008bcc9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:6ca65a281af1b92df6872e052381ccf15cb51c4adb0ba9afca4c3d3041e9d9e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a387760a9151eb37055ae66aa4821ee114125536324c3404a1b4c7044beebcfb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b6f9dbf0e6927d43f45ac8efcad6913ce67b663747d509666cf0ce87455b0379_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:f7828b8fc7d451c4b252b52150b2278d310e456e4b06de990bce9d123d923b9c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:215cb8bf8d6ed22118bebdc28ed8766acfe0d8bcc2c5e8311d3b4dbf8a664d48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7077e9ed025326ff3ebc0277b0d716efd46bfcff079442d777dd572c35842ba9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7987b5ef6ba2b7e5a9fd3be756c5cab95cd2464af7c9e8459d00e527609513cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8e5fa9f4eadf03465802101457da9e3a618572e47bf8ebd2859e9b1c50310991_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0d11910863bd5a411090ddf070c1be9d58c6f8cfe94eaed1c3ebc9cbe26c3cf6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6ad8362a4cb63bb7bae0e49db53ff65fc60a16f01a414e9f2ab540606a284b08_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7f889df4c103d4fb66fdb537989e34f139c953344fda28b60920feafeb1964f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cadf5ebac4b179bbc456ebc6743a061cb44437675a0b69f825670a753ff3fb0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6d5855d82cc1db4c9b87e58fdcd0133f56d26e44942787c74d0cd27e212ddfba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fe02ef18800c00ea33cc42fd3e7bb5d5ab2855499250279c785ae222e69f537_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9bec401a9b520ec096af6673657d6265501df64d94da332e818eaab70ce54722_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ac7aa75334ba6e157584d2fc588d682c9c841ddb1cad9d03ef0df96f7274041a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0077c7ef1053ca67c87920402ca1cbf21bf54626ba4046031528822a176e0875_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1d103663fd08d4a67877ff23ec32b2d16e290f2cfa268fa89c59c3f296c3b080_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:78baab63d2e3ad8f17734423f5b10cd137d944af647104bd40401f433a9ea996_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:7ebf3a7acad88ffd14b4ae54a1a8fac1eb1d22b6f102216df4586e544d2fe1f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:07ced40602810c0a35ffbed0e120a396076ff01e1d254ba9488a8714d766319b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:080a99a5e9663712b898e49ea608d1195c8e113753e23e403954fc0852e2b8da_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:125008a0bd8a64e396b32583f34c77e15e45e212e7e623ca20f418bd89cb618d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9b8c9e0dba83ba79ff28bda01050caca261f0e723e8f222cfce4a840db29e300_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08c33ef6a9b30a565ddad8d93b0529ea8a7c29a6e0f403cb0f49face063ae162_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5928577bdfc2683410ba93dba0ec9106d1ab29bce79f56a832c06e00ef82fb48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9f0fa62bbcb4f5b18ee1ab7831d634e2faf5e945e94fcc61a204d7a4a5d39d24_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f448d0ef7d1bd805abc57fb34fd9acdae51656851126b9abd3038703592ba4a8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:21000531fed1065562e8e0d275bcf48eaaad2d35f54e81e13a03e9dbe22fce2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:41a99736bd8c61ac43d9cd84f3f21d4d174851c81e2a4039263b81d0cb3520e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:95c36149f02710b63a6c05bd3249027dea0cb332ce600226b6a7aebf4ff73e38_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:988d7aab9c210f5e09de3488b38758cac859c4619f8e8d715176c60b95993ee1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1dbaa49ed53404150877894965d638ec0558f4e17bb2b0d70933d1e93c26b713_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2bfbea264fdf5062c9454ad7efeeb799d1568071ebac6195c8138c171dacde67_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:a7a07a455ee7e89c4702fb1f15c7888945acec38d7ff1cf731129b098050a591_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b965fdf100922a0b263f372f4757fec562f0b48a8032d2c7090d9c8f19b5aca0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:54bb0200c75df26bf82e42db71faef1dc309be87095afb5de60e39d2853acd62_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:63d7e09d2367614dd7b83c41b35b538a6e3d98fb49c03a103f31355202528319_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:9557a3d19aec734063ea30485f71fc2f279b7ea77ef1b2d1cbd7e98ebf7e2938_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:de22ad5dc832ca597947d9eebd182f01721908bb26f8367e077134bc442bca68_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2568dfbc55a8a64fab947b40e160757402d1598a563bb1ea7a42103d2e6c049a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5044508d683bfb7c1fcb538293e01a54e21360f85dd3d6b6d9150be3571e4604_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7f9d5ae402c429ceb81c952f23b0898f4f768b048e87f4c7c193f970d83248a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cbde0cfe56b953fbee3a2fed6ea3cd13e6cdb0dd0fa74414b488295feecdf5bc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2ba313bef314b9e69e1b2a545ab54b0fbfec2d5a6c8b558dccf18abaa7d7e33e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9848ebd13facf8daf9ca0f32295a280ca5d4dff1d48b9f3e8c0b249b616278aa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ae1bc048acdaaf5dab22505faec4c6b0c582b97023409da8ceb84d983494a0b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f8a862ce45dd686fb79c68036e611e15ce84922dfc64f847abcf6b65aa55742a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:11d975797a78fdaca7e28cc15699aaee700b3ac8185bd5d019ecc2a51980ef10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:40debe8017daf2ff3c5b17e89a4ab7e96cb717ae7bddcec305fb1eab8bbce0bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aa195335b903dcf873590deea8e425735760fee97ab33c5b648bfea1aacfa894_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d71c752e32a996fda35a49d7c7ab959689a91197b0e229481891a03c151d48f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:666c36444702f862ad1df16b8dc76f3a8f7b4eba8d63473a4cacfcd34c7ca914_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:836090b24936b955f5b60d236ae328e50ac91ba3cc367249cb5d7762cb15ebc6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:837118a81cc9bdc984af5e9a3f4fedeae4489ba4aa98cd6513dbdaece6acea61_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8bcaefae8c33ff10f758558796e4e90193b1ce2ad3ece24a21ab93a7e685dfb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3fccc681700104f6edd949e78d406f8c10375739f4ce8c5c23c9e85b69b1f201_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac846a2c18b90026c941cc2fcd91197ca909f985f0cfc14e91fa8c0cf2b10b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:96f715b9440bfb17ea68aa161b833ac33265b372e174123bc10dac3eba00a872_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a7750c02c168c6243c3cd666816d5a4be224e3799d9f7d626cf7e64f07cf06f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:32286da133273dd699de38a8ea62c46b66fd0f0271788ba6b205ce7e34fd5ff6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:34faf675b9e5361a23ee97d02ae1257feb38fda6e287b3b2c67e0b2e4e3ab06c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:997ea290d800e3599f44e72cea8bdb65876dba2483d486938e2d024b1b9a4fae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b329d7566ac8f0b7f45be16a1b364e249036c2c8f703af70c9965240f682f808_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:309782f6dc79d9760dde0265959260871b592a5586bf4073e9561e813f316816_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:529879780fd60bb296f0d2656d7d5805459827820b0b07e839909032ec9fbc17_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9a12ba31f5a9e9e4b8114ed30bf9a067cd5b92430c35905224899a819c627741_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ee31620709847e19ee56a6187986df168cc55a41e86bee1488291ff6a0415d31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:16f45167a5407ccf892d7518ca3c7a9912d5d0cc3f07446cfd3a1de175e5321a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3ec816ffcd991bf5082f28a7edad858d9b02cd65f8e23ca2e320c41a33a0cd79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:50e0dcc3cf9d804afd0a8a3f633f36283817569fa1f5b7cad47db6cfc61c4a48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:af6e2eef8ff2eadcff4cd975245ba0cdc56f04931b248cde6d581d2d17582fd6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29b6202fa854ec12e85774564ed5da58d314916d5843aa6032428c3cbf97123f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8c019754ed9656d55c293ce39412f910b0f3ac833615aaa03e961183c4831fd3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a985f0116d10743bdde5e34fb181c4639ff0941caa66a3590713ea5d2586115c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b01b10b5836dae32a5b9938ba42fd4db2ae33a6b311da4e0c54ce0e48668ddf1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:64a243eb83f743985213e3c255f7ae58909fd3a4ab69bce80b30361bc9cd9225_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:995d3fcffd3f156dcd8831241e80223d35b6a150d9d72e89bf639b6ef6f2b81a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:aa7c8a340787569438c3c7515d62384f9a5ecdc53e400cc6768bc92c940efda5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:ee434038f9c8039bb2e2729584617a8d1b2554cb1e981f24a746badcc63c9022_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:772cccd41fa1d467cc54dec80bb7de08fc746507148f6220360c89f3f731c31f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:80c44734612ee4b1c13c995b1583a317e4742755ddd9ae515d6b9c61ecb5f152_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ae27d39fe63e4d5859648c7cc80b0fdf8ab8072bb8ecb34d21790552274a7abc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:cc9a958fbda1e4df8e235a0ae4c62d23e2e02dfcf25c3c18c3dfc8bcc787b7f3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:223602e0d30df9f086cec5c4f63562fd46f46726c44e186a5fec80f57689bc24_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7099a6800e9cd28758ace736f2c602a223f61dc00fd45def548e6d9a4bd23539_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:af138219459f8f23471300a38c65d1d0c580ab93b30c63798d51e8891a948afd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d7da61ad815088b8c671d5dde3b5878fff0083776e1618c3a11594e6f08c26b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:18eace0b9a62e03ca9e882c582a3ca9362a14488044b9b30076447ce3731206b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2dc26c9c7dd35b78f4ed2c520337631bc45fb10076d94e52d9a632dd66982765_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ad7c164753be2cf26a2c69aacb95f5d91e5b1120dac43cb2ec505794fd98fb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5b23ce65b543c607e5547f2bb71866255794752a920b7f644fb203086cabae72_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:385e0ff7ff74b73dac4393c5ed5d700cb3a1289d501917dd44a6adee10f492b9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4393f322b7404940430e70469c0ede12e724564e87c3359946e349cea2304a11_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5ba8673706092251814d05e8dc3d6de7e74faf5829c57dae0e3634cb6e80aec5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7cce8b979af738044110eae0d3f16db2e70178b32b340b7f98c339c6c1c80791_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:070167681620cee73ddfffac875e999f5a32c5ba48fca753ba907671c70e3ba3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3ae7edcafadd5fc3a2ce15754828efe17dd81a7fe95759f5d10fb843d8f0cff0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:4465d88b33622cf161e2df43aafe3fbedbd4e63f833a729df6ec5d6ffbb23b1a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f0dccb2d388210d13763e44e7aaf06712b1c463b73698566b32665030a881dec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:60a1f3345766ea95b39394925fcae2358dd8cc819a0f7b187363bff9f3bd1bad_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ea484b41505f1e5b8ddade45cf6f89e7b22ad4b81d740e9db3b4263672611398_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0a527723fa338e5204f37b50f7c3ea7f46055a91f391aa12f5ff91dfc621b45b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6fd265148a4fd19ed6f39345ae982687a6ccfadefb2dc96af15737550c46891a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1df097f85a3b46c3624fc2b59b6755ec1dd1bb6843ce84fceca2c40b8af74eda_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fb4965e61b337cbbc13b082ccfc8ba17f7c98e3a9946a2429967203a71ab5ffa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:19233828b527446a7c210823b43ab95d309ed58c124ce07bf2cc70f809a6abc4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:953d7116656841f449d6b295f0753a0d39a2474b3b6a4b6d6240d53e357ff86b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad08029d8e31a6c80b9d25947ea267b78ddc0e7f3a97dc1dbc075dc4a02283ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:e163cc3aff166d01ced5f33c6f5c9145a330cd35a7f82538017338ff9ac43f19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:039ccc1b8843a4dae1d65e616c23066e2e921f5f4693f52a6c6a9e0091ee298f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6c5f2e308f308f3892acb46179df4b6bd460b234a416f4414194005cf915ef5b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ed23039296c3dbd7ddce99ee1a538b7b83e32e827932e3d00b929d0f9de13a91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:efccb4622508c44f67b3693732b8da8bf28bf80097723497289cc3cd3180d19f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:77dfdc4b6e35954e750b90627d720a0f7a3cb6fe224459c09f5de359c589f939_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c4ad92a5a5a030bd90ad8be8df3914f70dad8fa8e2c984144791685c7150132_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:924c6a190d3e2ccf26e3486fe09b892629736bbad223bf608cb02cc4ca2b5991_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f75d1ef206cef5035c7a4e2d0f8e73330eee059919cc4283cf0ae8711a3e7865_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3daca8e471b071e56c8f9551af5d9afd8c2eb1e29cf87e09dc48214cc885e262_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4a3b3272a261a24b3fa681898aa7d0c55e8a8f67f719200e05e580b0606c16e4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:683faf9d19ecd98b5cc92545e3628a1049b13156136f86626896572e7401a356_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e294500f174a12001306f888e6bdf9e10d3d30bf8554bccd5c82f1227de196b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:08d7cbc7bf9e4d19e36b4fd5d27040329982b353032c525179227c3e15d30f32_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:58b18bfb4498e2a7890ee5979598decd1b9692168ee10ece35178e9c2191f430_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5eaf2d7d197bc327adb488bf3514d2ce6886900164bb8a7e3d8c92061baeb783_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9728bac89d23922ef66913d370ccaf943465509f8a068494d517984ff490f707_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6257b90eaa900f50cee0d5cf84c105158f70d9ad4a9829d5208cc261de3ab5e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:7b851c7bfbaaa9227d15850922fc76f76bc517f60be3c984e23d339fc2091eeb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d6142179c8354154a885955351e093aea68de58f0cbae8ec631da2d3d8cba63a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d939f022cd84850c27b617d17d71edd7dcb549908b74ff92d5115dcb5149df28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:530f79ee436e2ba7bf71f7cbc3b62c3be81665f5207555dec663565772158b99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9aad9fae53a218cf8bd83d50b3df6163a9f0ef6fe742a9527d0cc267fc8164a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c43b8d25569a9a26f77e1c1b6be0fff4467a9dbb8117ff562c2e650a2a62aeba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f0b3d8e6b527fee7bb63906136288b117ae31a38ad93aef266b7e0d84dff4f5a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26fc6ee878e8b9b76a61d203bfd0e01a61175ae9d6e350b4c8a01afc8e388080_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:93b66467306d137b06f29b307a72f45eb3a9149a15cdce0bbefd93a9034de3a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ada0c79488c2d4b388d12f9e4238054ec9e038bde604659fc70b1c368ad36964_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eaf2dff09f9cdbb55d3486888f5e18db19f535767aca754ea0ead9129bc6ca0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4a738c52c3e5bcf3c1d94b679aaea8e91b3cb3a3f981be534d8ee1274d8455c1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66d6f7a10465049938e81ddc1e4c13b2b375b2c92b39af99b2c7fb8bfe2d5e3c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:75e8df980f8d21fae7af1185852e235db098190d2e3098c7cc9086236a60eeba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e819fb1752cc974f7ec462dd49c52f9575c7b0db53f8cda50121ce1a391ef0a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5c0a5ac804bc8bc5f5e368bab64945e8e6b506358e4511387869f9bf458ba3f3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:9f541ec9efd0d0553a8648c8048c7b91854c3d8419e07c909e621d2ff5276c60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:cc987d4c88966417b6c45bc66dd878cd885b4805c9e2885fcbaca1734e7bbcb3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e88d308e0ea7524be29e017096eb77ca6df3c8b3ea58a8a6a16dd7fc2fd5949c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:231178be9e1d4d547dc7705f82f8e529672f47786de781ca53424543d9b1e073_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3dc25f71c79a131cdb79f72e3c6bd2a3c987728e52d3261c5935f15b1466150f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b05e21c1862a49132611c23c1c0b589c5ee29b98ef5711244a7c32438f55f7fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f1a5782a8202fa153b78b53324954109911991dffa9d7997229da1c6ceff7d45_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:17bcf0374c1cdded8c518835d832bac6b8ca75e05efeb0a6528e0ee49643bb35_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2873f8aca5b0ead479497c023010d6cf324fa893522eaa924f10695a63c1045d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ce52fcb8c19848e8fc81e8cfca9c47e1a257339eb96e6a5e4d214066dad9afe6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1f93b71bd8b9bd62776c67cd5c41b93f94b4b60b58a06625e7d57548518f3669_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5599c06a31ac2bdd1a8f190f5095a1614788b2aedab9fc4f454cdbdcff9bca9f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e79429feca8812a6d1bb6316906b670ccbb89c506d0f47a0ec8568cd9975a479_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32526be8ad65ea6e3f70126e66ec2494364930f90aeaae32f1ea3611ac7e167e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:9575d057a034bdd890854a08559cc08013ac76dd0aaf2ef11e26a5734be590e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d6f6a6f074d7794ed9d7015ea7937582f0ad1d07b35d983dfc07236fa3323bde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:7246b6b2f38d276340ab7d46baf8e67166639d6bcdb75aa901ddc09999fedd92_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:87a0e8e9d89cbb753a2507abcb8b0b1b3258a7a88f5d632f174e6097789cc7c6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:96069c3067b68f1e2942d7758c89426eefd21722db2d0b08ff5f1db39f2b12aa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c2401f994e1783a28eab6f7289a25a6dfb9e6edbf6b424dd0ee9320469cc3a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3eaeaa507833c96c48161f8fc13d4ade13b4ad85f397a41574326e7ef81239a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e84c44ad88440bde18b3f65817a1ffd69ce15d48f8772dd82f5984d68c73928_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6914c074989cf18597497721c5b4006874a7e9a12fff27c513f8e6ab049be83c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4b2274d948f48f8cc0df96f3bccd2d610034ac4495c977bdda82c440b65092c6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:72ba74f4ad3c5c803af1c9388ed1c7186295b74429f7466304339f22deecd40f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d47a6d11b74143b03ababf249a83e8ca576752a2ad58482a2dda2986d79e7098_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d71b697e5c67952876677ad7d89394139d322dd6320943c1bc32fef9c501c326_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:3cf00020f76f7dd6428f49aee9060f70f2d5d73a7579cf8400ba22f8a3c16364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8a9fc2fc1351bcf4a939eb506e5ac91788d65c5f1826c46d3b41e15e8ac7b3ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e16e35579e3696474f357bcd4bb3c77bdfdb1603b971c3267d08f8fd119da62a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f3623315e94aa6a0748d390674e9f2f8632bcadc5b8ccccd75bc45019cb5a9ce_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:bd3081cfa4a3a02061a6908b469dd9a0b987b5fd1dc73aa67bb2dc05ccd2c5d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c84b8c416b3b543d4406aa42eefdc1c02c12f2bdb1b7d56a3e5c0d9c549dec44_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ef6ee4f9fb6e0ebeca08a2a2dfd69cc6b5baeb5bdee0b3158f575b14398f3ad4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ffb6610a0f2627dfd68731bde61d78df97e4ef5ba769dbfb9fe723dfff0a62cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:9329715c3820b10b14bd23f2f3e89ea1172886a3c61333d8b099019701f80619_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:cb9ffb3b3c64cc43b15f52a40235df199172800aa837ee2fa136c785312126a7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:834b63c9cd783e684ce59e99d4b060af5f2d6b6027bc62793e511bd5ae91afc6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c362a8609bd2a9b6ca073545e2ffc732949b1791929dacd899faea3c4176e984_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f050a78d1622d2a10a4549fa7d2340eacdfc80e4c1a628078a4a13006df99e35_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f32061109e6d1b72145ead1598d0a2065ccecb2ae424e743dd613b03992ba030_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0650df0f1f51958baf5fecd36385b4ad6afdccfc77ff0bdb90fb140a7e6a72af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4c95f82bafd9f1a3207635da63f752252d94cf5d13405748bf9f1dc6d4e5f9bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:70ec142f9336133ffb3e4caebd30e579d59bcc3d52a3fd4c4642884103cd5134_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:11a23b0b5190d560d8a7e45c7ac015f71c18fac0f1672f2db84c55ec7d55f9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e04e8d139638d3b8444961f636909cbf640ab494b88a738cebb3c6a7805e19e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:503da2bcb8b582dd98c685b81bd031aafd71e1bbfc8962b3c8b0ea9110e9f69c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:e1e3d49db220a1e3f4f540ec89e06b8a4bb7dc72cefa4b96cb278001154cb21c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:12908e94266b5a90846f50b7fe8688d66c359fb3fc3e9c317450ddb65b455076_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:587f806a8e6500d4dcced927409c0b582a658fee0f51c31c79736f8c31c3dea7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8c53297adf899ca1152c61b10149db660a9146fe067476c82114287f564ac191_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e530b7dae37afa62a6c9def8c54b573975018b94b5a56fc88e218792b85237e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4cb9d96442ea8b54307369d340a8cca987471b191b21c9463027c9bddd754074_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:791d876a5d256f592916c167dc0919fd16e1251317356838146a5fde8fd8a6e1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a9a8d43364851f839ae1bc62a807a983421cf5b41a7488f8da7e68b7261af056_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e1571e62821f55bcfb611afb286ff61773a16ac15a67da5bf210b5d141a6b3ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:21e4959e7a52ffdfd8df79a73177f02714f8689270c9a4aab4f390be59524042_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:51a465dd014fe567fc52613a127c932e386d2a6e5f1faf4fe1cbb1e6becf7e4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:64f077c897c6ee0c9db36c7cc4f9913d1ed66afb822975974c40d98fc21bead0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ed3e46a857f509e0c8a08c750cea6e1de65bb6a1f86933165b36ca5e45171377_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4b47b7c763f063e8afe3014f0f902d55ec6d1fbe832c2fc2f0585121f68c618b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:affe71c5753db62c3117e7d4d8d3a79f3e076b740fe8895b5337211ac6809eb3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:664fcca5d05f7993a6ca81942ea48894df00d46728bae7580f534891e47fa72c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b37fe0e3a3212b0e82bb27cdf4b84f4423e4886d2a3fff5ffe46be761e98aec8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a2a838ee2839658272f41aba9d5e1b41fbb05039c1aee8a63eff7d14d7a1f0fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ffbee6c294475f3dbe6b73884fcb411b1e5303f9b549b7adfd24708b776eb306_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:43fd6e0b0d869a25c61ac074076a78a7f8f389a0c5247af03e7ce51392e90108_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:9f05231471d861b8e8a788a6f448aeeee16693fceea9521fd87e4f6a6b6d6c9d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:049dbb920b57cff7ffb88073192c4c843fef754775862e4d57d2373637e45c85_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3b801c6c05a17b0b1c763f0a87d4908ba4980ad09aa8f12dce6f3e11b8ca637b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5afc27dc982aa722303ec6aa2b10cf727f2d1b409a5a77e0f599569559275b76_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6354ab3fa4a9e9cfa2c51da14109a1a67e98a3b43c346203ba40036ef5c3665a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:22f52c4591a8ccddda25dc4a1eebcc92010f49832ffc28cf935b0873021b2f96_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ab74018d4cba5a5f1ed65e9de515209321ff6be359ae0958f2a1b73d799805b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:65b2efd1ededf1a89f9e6a3e12ee8c7085a1282b2520b2906cab1d80520c00d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:98d6f4f8d76d6dc810ca3d927fcf93740efe1a56fa6100c1ed1e80b84d1be21f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b07ab0a485d53b9ed37a1a1b244c94a70630972020176fa7206d5c9dc40d9962_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b4501412341595aa8eefec6973195073fbf3d961cd813e21e02f3cc14150e223_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c03291d932607165444321fb2fa980104e60ac414920c1c05c499a898b2afedb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e1caaa1ddc51954943c6b44448ef50d7113fcd1f8aae4a84fcb24749de315e60_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1268948f6dae5346a6a8052db8644297c1b98e1732d64b24073d959de18aa22d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:458cf14369629b17e735598d3e6c24eed47bdd8bfe054034b5a60f4f40b6ec4e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6d51ed70ff145e62ae5d22d42b7cdb071e06053d2d456bc5411da7265c29c96d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c11d63f511b868c53303849b22d71273e844679808aaf604c87b373491a99db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:043460ad9ec9a4b05671ebfac16b6b2eeb39e3ebe5f43e3867f3767b7b2f993d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:62420bf7fc2b91f60b32851f2c099ac5fda8083e6274d2a5523ccd0ece3b6a80_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:77301f40eca2b49f92f3c89a93fc6766306d39013350d635f0bfeff4b98ae012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:b86db4181d9fe036b77d0473dda243523003c19d0fa5888a54f3f19c104a7e52_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6bb49580fa2f15130fd93f51e34f31f963a4c9b8b9cd898ed573ba88ea24a60d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6caecd5a01bd49eff8acad2449074c505d07e521208af296b0cd9f0822f54911_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ca38c682197a97a075635209b6091a60ff412df3461950a24d1d881f830fb3d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dd9a440a68817b45e6d2d04b3c31feddb82304ac1d246c20c0e33355631d9624_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a251f2b5d7f716fecb5119acdbbfdbb9b535f2c6d8fd51ee0c57cef72cfa1964_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b0188af5f7dcf5f286e4ec4f331062ec77f341391c612aac52e017df26f89a89_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b3f13d71ce9dddbce566d9a5bb5783d3e5417b8fa3cae427f7f74997e4a8c8ed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d6384ac004f36838bc5b35ff63c4d1edcb3223c0a3907d4f099c5d85ab51b014_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:db20ce7a947978ea2646d479eab935796e8cfe482ddce01f3675066b221e2e3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:eaa77c0a842cf32f826c2ca19abbe4020997810c35e079c0c88a0a9361323893_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:59988d13b37880c4b79bf8622161c6e975136bdbfb59c8fe73ee8e39bc0f7fe2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:f6dd660a76715b8eef53fa459376986a60d9f2e7cd3f176b0ec5c6e8ce19cfea_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:05fb046ec30c464d04a70831316de4af2c29a226be1e7f73036c90899e6bd193_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1da080de78222a6c01704597983765a751b1b4544a81168fdbc952ab31f11a54_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:45c9e9816f3b14886661b4c82dd75f87e242f4ad3e0c1c5f264d1a1839e8cff3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2ab57f0587e4ff1adee3ac4ca2c3383955448c0b26849eb24c77aa3f4cb5e959_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:66b581d789ec455fc8bd8e01e980c7fb183bb0f6ccc09ff525ffdfa4aafd9a52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:721aa2904e0c2d5c4d0e3134fb695b6613e74809e0faf3faa949c93b68ed168f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a84aa018bfe05a74226938ca4e34b58dde33019aa093e01a7a60a8d6a4c913ca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1a255a287f3100cade2efe8d8b75ca7f031b9606f6d8ea31581a59e0ca38fde1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3778fc40b92ab82012aacfa7589247e6ff79edb9aa918caf6ba6c5fa3159ae61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:60433084081071dbf7cd337a3769f60ab109201e2ac323be2471c62178d87703_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96b873289284cbff34ea1c9f852dce31e5a72669f204d742288e266cc3a19d21_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0e2cca7da188aebd3f4445715b88a3f4727456cdfee2147e7521059722162fa2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:23043c95c32122eaef725c3e2f65ea824e4f83242614d2609e9367cd6707e454_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:68a9dd5597bb207e899a4716a7642cc28260e059ead26fc84d1e48d4e6159683_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c1a6b704c85cfb829b9a3421cbde16b5011d2c506143322e8f2563d6a5191fe2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1f6f4d1a8a3c89486253cd025f8d0e5aa34c0ef221487aed5e4e968e8d810285_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9955ec574da8c2821d783edbf833af9c4b4d4a2abcffd603b85d706333c68111_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dfcef3e2b6dfabf0abd72dd9743c91ca4c5c4bbe5bfe7488c2a85c2cbf467661_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ec5717ba7c764e22cf72a5792423078ccb9c3a3bb06b92a33eb6014f03f82fef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013f0b271dc70347bae313209781261c76127a19b3a2f8bd074d170a84e49047_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:19c6031d8609f10b2b075201c0ccbe6f26e6efd03f567b485b6b327a4f6a7fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:304cad693bfac84415c3f6311edf8234f412a4bec7635178c963e2f3fda74d44_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ee8bb516566d6a9dafaa65ae52177421adece839dd4db80426d3d2ba30a1ec10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:371a5fe6ba1f62960a89e6b1050a2d324c2c91b733704fed2fb0356ff2cd9524_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5eb44886f42c57f0e736d6259b55ba561beb6324ca58537e253581f6570b22cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:854407987817269c3069c1d1e4ebd7441465f971e28d391eddd456371162b449_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e7184c5af00f0dc4551f17ef5539952c25c37aa32d596514e463464c92ad146c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:039a4cc5025db0cacd9e5dec922d9cd51194cf0ce903904210000245c5e7c048_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6ccfe8e12098c660310fa2af574a71b7b27b23050f6b6c524e9c1787c7127110_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a5f3adb97a88b5910f2b5375e05fe3411652541687262714d50105f05ca31c34_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:de16bed38709aacd8a1c25b3e68a995631d38c12d9d28924360fffcc17adb0cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4cc2ec3ed32c991240703b0a40c6602db1320fdbd328e887b517a11474149030_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52e3ca4eb01859dcd5c4346d73339889f494576b19577fee88cb1800c84f8fc1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:949a7355b5e946e1d5c760e14244073db9df660fd8b28a3c6d06420dddccc298_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aca1f2e8b0aeb6eae4a77bf712b8c255dd50526c76e843f9960871cbd4abb6f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c075a7526723ebf1b921ceb895e63a6d5f3df60707afd79c4fcf1c9bb6f33e3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a952d0aa30010721e7a2cb903e30260a02f4a9dd9d83eb7ff02d2847f1e76e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7a7b182e9ec23abab1daeee26897eecb99e1785569a62888db4b54d6e897568e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9025051729370f663bc9231aa612b0bb51b35bc6da68f8b504dcc01c760a1fee_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0232982c7a3431d641fde0e3b3b8921f855cb872d470e5b9f69edc9b573c2714_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1e05df129e355b9a76f8bbb8aa65e9b4263fb9e888639fd2fb61f79d6d212c04_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:89451c63f28e8e515b4529c8a834f6e8e558179ed3d4f973df539a509933f942_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ace5b486176727834f9e1ca6ce46b4d0ab0bc6ddf651f4142626b543a02c61d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:007e6fe2b8d7a384cfe07309e8a523bd1b7d3cea896f3b7f29908a8d41c62f16_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3fbc6e29fc388b15dc77aa93d2623ba9a23db114399f3b07da429707a03eb8fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:42f1e088777be6853d6845aa25cee3f46df776aba71ed1209285ea853dcafb95_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:73f6897c667e3fa46703b50ec857958738442bb7d8b95fae051f761f42a01605_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:3f69c1b708c411bfdd1a2f5387e6084f2fa28e1c4bfcfe136db5b66377918bf9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:46ba8317ce0d48d6d0e8902fa4b6deea668d6f3c9c6c15c2a3aa6238cc06e52b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5e919ab71bf57a160c89b6e5964525a708a10c7cfdd87aaf911e57e6353daf23_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c706a7354b0006b9e9c7c351954f179d6c50cc2b872833bbb59214ae7148ae3e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7439625194105ec8e55d4f7b3acd13a5f2ca70da75f9c82cad5f5693b604bf28_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ffcf4fc9bf77edd7944824b25136db6027d21faef80bef9d7b126b9fb6c0574_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8540ec8af82488dd6edb249e811036b1e639a74f892af1ffac1ab5d59ceb0abf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9b497b933ce2f828025dcf4390c7d53debb2418394317da9a8c52ba82a6f2fc0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:37fa7e2453893831aa0ea8bfe068e692ca4f1ffd6f69afca37a6a4e7ad401c49_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:63db7c4a436ffd18fb03a7cda09cd47844691a8025f2ab04492ff405a85ed144_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9a30469bc5882ab2711af24dc3b3cbcbd0532f49bfa9dead772070c5fd1280e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ef2e5a237cc5d69647af1b904a902e4e216ae8480a54587357fb135b738db120_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6be6d5b27b6e178e0806938850699d1e760c4d456ae517a658b47cf5a1401a2e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9389ab668e31d432d3b2d44fe11f68df7f9d926179d0fbec8a6d1b30f489857e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ab20bef5ffe91fc06a7dad3508294cfb9a72745da8cc0342e59f515db447e264_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c5c16e51700e2c16c6fd496225946c033875f4fa4c0174ea625958bd62a7ac51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:37c574ecbe02ca7bc99355b6bbd952c392cbb2abb430db4b752257306c37bcbb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:db6cfccfb142d8f7addac06e4aec0d6686361bc15b459d169b0df831b1d00160_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e813ed4ae0135da60fc1e7e572f6a46495e03764c96ec3c095a4e61a8bdd338_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2766e79b9a9a3fae66e1d331ad2fcc2141a4108e816cb1f91557bcf2e045882c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bfcf47037dce9565700224c63e19aa2ca8935d72e355c08cc8754cbb84b41d00_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d4588b2594a2fcb58e676ea0e8d11372e0bea9deb53824b47a4d8f3c63e774bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2bb5a02fa2032146aed8fcae80961e9a6e37e1c8a13a368ea07d6b124f303519_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5998439ba17cc0cdbe1bf48e888862182d6e10400fd9df74dfab53d161f0582a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7e0233017e706ead44793f1fff610a4625a22a834de67511cd66efb208a24a47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:97bdb1cc0033381c61bc1c9abeb5f3ecaac1adc70e91b203fbcbfca9a9ae6c39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f4605b13a1cd445835bfa2bf8d2f094533e4b731ede1d00e6e15a83ca924bea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:20955243143106da7d9e730ece6e49bc84a18427ddce20cd90fb5ce712e5477e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6c27e11d2ba7f408c9ca5dc0bd898bf395b3f773931b04c558759493e0aece8f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:7f08d881878f5d69360edd1be3e1e5190a66df75a087120abb37b2c0a78b4473_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:755632416caf3e2fa4e8c24958855e78c74b12d5e3f2dcae93152ce06274d428_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:847a5098475d0ab53e351d52148f5a2211dcc8090e03e17dd7b161b7332465d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:93c4ad9c017eba69c7105c1f60cba46f201b39da79f5ded60ce13a98d7608e7d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b559c70d997c0ce2c57e2cc3f1d3160f5ec2367c53c8d1fe1d9418b142c5c577_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2674a13e799262a6ba79ba3e43c2560304a1201374272e8622aa1a5e3df33d66_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6bafd363141b2012cd318a353cfff9c109c6ccc90d227587f2d0e08316309602_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ad9865c56a3ac1997b3aa16166966f73a24b49a1a8c71edec2eeb795016b849c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c2d53d7716676842974f1dda29eba47d03b525614857591426a01b4186ad2edb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2098ea118ff218c9004be57932760642db74b9387d11fd5376593ebb3b2f13c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac90d3f60f0a9de597df5344adc3d6b1478b96d47fad0ea71a00597e8576b12_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:81c29521d2aa0a7d8a0eed047e5948d145c9e4a72fd0697fa9aa613033e7faf9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d9208e402a04781e9dffbab5c989e91804b14b6d8a5f5f29a79cc54f85782e24_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:71602c5c8069030db0fa7373e496c7bc23bba707756f57a082d7eea44f61c9cb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:72d17c4acb7d58df68ccc1ccd8d7334f35df3091d8bd8e25a949e3c7f528de1d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8817af94a399c898fea21c34bdd60dd2c927ba3613436f79aab4906ecfc92cfc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f9d6ccdb270a01e408d70d01d692955ba92282ec5e577fd695f6c51289edce2a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:005773da78ed8522b96f69d9e53c961811e79340b54d49dffdce92c59a0cea2e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:502e2c5f47b1b95e0ce1e3922306ee37c604845d1d1accd92181342b473d3b3e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6c68854cff5a2b94527d6230740551ccc74d1161e7a1bd82d8119065e9e764d3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6ff88655c6a7e78def695735bde806319fe65b5fb68ee0c3ec2a82c6d80a9b00_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:179c818cc5f2021988e1b71e4edaed742e62d398da747cb548896697617254a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a75ee91ea3ee181623a22f9e54b00c5d4b2e6cf3f222a912c8aff5a29dde1376_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:eeffe28791e4306c642f156e83c6035bebdff5d1232174d56ccb09b805f9271c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:fec4f6e102887cd0d47167eecfee667e3161dd21a13383e96ef3b36f8e319076_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:167bea17ac181347213db54ace41bd0191b77ad20a3a355e56c90fefcfef0c1f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:734b7d0af02c1b79781846ffd3c617b27728ae053941b112d544c73e0bf3a3b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a7cc1cc44f13ea307fb79522996cc56264a0e036bd5ab9134b24e4a0f6639843_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ca75fc486998027f4903a313c7bd742711e2b7bd11e55b1e0c557582ca3d1dbd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5d23f5103a7bb7c71ab5b79c2149be46e4ce746f3556508933593a94f15ba945_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b2dcf4c5a2b14b677212eaecf6ec3fbba8bef7e21d51a437449456979b5fb551_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b692ee1154fd6b6a8fae68467ae87ad89c8a528d50599db14f614c7f08831d81_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fe7bd87ddcdf1ec088e780a9e3421286cc0e4aefcccabf17d1c50e4a4656b2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1775e9ce012c333caee47c4df8f9187d85d8b47f6300e3a7ddf6d83af462986e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5403330e0c28b3af4b3fda34ea84b3e6edced89649cd00bf6ff7f8352d2f7708_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7e13f7a4f2a67e74b36e39b5e582b54a8979c270158789c658974993ad351262_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ad1b944c7135118573159adb6eb359face5ab141e8328420eaca3999fabd8575_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22ed10b10973b3a91b30a7269a88013439964eca8e6954fd515442d543bb74af_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:74dfd09f047da2dcdbdaf8b16a3aba913df216cae2f26898c4f9fe423ff6e330_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d7f0f0b52c3c3c7feed13d3ab9d70fdfdb89af06210b90650123b362444a292_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:88732e8c96326c07670db570f1b1549412775fd07a66b0816f227d1d4320a27c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3e0bc6b1b9cfd488a3cf5fd19d5a6d2839d37bd609c08e6a5a7a9da869ab3cbb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7efa402118210c406818a1791109dae10962706df8c04b290561d0c784f8a57d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:8872db8f65a31459cc63eaec8f03d40ff2b21e95871e59e3bff97b6b0bc9b9d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bc298ee8cd84ce0a44f51ba31cefe4052b67cbf9ea559fac77de3ca7a02762fe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:1715daa2ffc4a6ea78b5de1a1ffe556d27e3e9aa1cca1d6ec9e53217f27b7ffc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:32d4fbd0cbd715ed35ef290d459834423dcf6203374a2a480fc5513b3764873f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d22fe92972f9d9303f541977a3d753750554e6675545ad7e511b723c3869c4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a51b74a21651e21c9d8d8538c2cbf9272d09696abe8244cd2b1290777ad452b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2a82548bcb003f718c669be20b0abf13183fccb5d7d4e34a17e9be6ee08dc2cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2bb613f365004e6cca2c81baa7a59ff75a08efff24294779f54a51296a4f1afe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2e010df4822fc8ce8b452dd6d9381d38b1dced3c0e429a9d88e02ac61384c825_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a8ff1c3b2fa1dd0d849d5cd35526a5ef2135bfd6c551ecade04e4744ac595453_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:86e68bbe22d576839fa35f704596b2f643c09e3cd755fae8effe90935f65ab10_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d48fa90ded7d3c77d535abf9eb8f56d32e1567a3c292686a7f76c6ac39b5c6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f781a380867adf7f20c38114cc8d7c751cc84faba5fbcbfc67b721793f017339_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f9d1a4c9d0a5404e8493a84f94fc1715d6226b22b672f0e378157405f5a7204e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0696026a1a59a9227aaac743602e83017e0281e6726d94d46c20c69e61bb6ee3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:18ead28e318b6a165c6988639f9361dfdb3b7936c026f6043b66996e806be30c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:64802d951a8cc8294fa9194e5778fd8ba178cc2dff80234d85234121013ee58b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e6adba899b629ba8eea41574e66d8ed2eaac9169aae5fcb789aff787f0724b73_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:06d3718842b1f074dd7b6477dd8e738e91ad243e06e466cd9cf8b08d7b7fa024_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:220e8b87b16dc9219b324fe7b97208869a17d1039e620bc91cdb5aec19d4a0c2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d85785005a4cf5e4bc26adabdddffe345fa8827a0db2240d01cf64a49747675_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fb190187adc311919da380eef951373ed4f907a07606af0797e96cd7d253f20b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1d5caff7082d26409e72c3d18b018f01178321f3922a0868af8058f839261d3b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a0968a8bb5df2b0b41bf55b06f11397a4d0c0ec290d22bde93fcf631923091a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5882d9e24bf330ab1bd022877c1f3b711a41b329c46c64652105a1b0a1c24cbe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:a7f9b163518a7508adb281ab052ca9e1c233c9ee5efe37efad238eb0febad187_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:059a0c17ca865b86ef3b3c19cf641d3dd43b007de861583f5c160083dc52a012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7fd099e945dc79ff47d6aef25ab62b66920ae6e7338ef2da01ec5865970bb62b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:2461d40854f69f775c2643a67eb8676729f4fde44b8ad6f106b86b8a66342f67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:c69c4ec8cd052eeca122726323294481522580372cc3c948fbeace53beb74765_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:05f0aaebb8307b693452309341fef6e3bfe6912a34c1a9d7ced1be398d81351f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:0a46ca252418f181a86af41b48cbabda464d51f9d9f44792efea11e54ed2167d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8e9b9f7048b849a45ea2edbfcdbc1601d8a11cb4260d5c1d89d85b5ed462e7ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:cc9d2ebecaf2c78d99104d0a3ff23cf7748e42f13d00215783cac971193b1f69_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:25e957fc0f6723e791625c55d1b251f6b7a894e15d74e7af29e004add4e3a6bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:42a64c335c5af6c607f435c9a09411e789ba8b66d4df1201d532f27df5b9dc04_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7c98311b8e0f89f03a4250cbcc60ff62ffe65c4ee1bd8c34c31b623442f348e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:abdd622e2447490b74f285cf653b9f6900b904aa6750b34bf9a39f09dc6337de_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6a3350010ffc87ac68f2c8eff3ccd707bef4d9295be9aa7d5633e83b3fdcec1d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9ce9629c6a48384d0dd7d325fd61cf62b8c290db57b2917a8ed671f7e3d4fa9d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a71526c9cd2f4c5f9a397348f1ebc08590caad252cf3bce6e5d07ee6c77274c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9cce3c5b53509924dd37d4d3a250925226372f26b45bb52a9dcb46526b1f3d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:137c1f39ca66f98cd37c8a9deb3279d0acd18c24d70a88b6e8d9033a1926fc0a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a38f0412ab643c849826b9600b42aa8975f4d77546ed3b36e92e7b2dce237e4a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:de2eb4f5453b3a0463c333a1770034a9016eadddbe8a07c2666c3d58367ce3f9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e463a6ace53d6f8eeb652db6a69ecda86245cf3a87cf10ec7735738375d17c9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:348c8fad1c84cc45b10e7add9d5bb5c37057b699d6466e18c3bec3d593e1adde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:37bcb5a159c17e1241a4e5add6d5276512ce99418b2f779c1e2a976a099de7a3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5653e3a360eb8e725d483a152ef0510d5e1f7142666cc5c6e27f62965f6cd08c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:57ea23e19a26640f9e8bebcef70419d22c23ff334878e89d4b77a894acc2ce7b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0d0633b8cb1de498ee1441b5e28b4ac6aba808f6ad37d3c2bac9f01c94ff33ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:702219e963a769b7dbe97a0f9ea6a20dfd1415097dd6f38cf31cea657b1e4936_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:aa9dc51ef8366806a19116f700448b4c0ea9dc1de7fc9f2b8191872de744e591_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:dc192484377ead9c1805632aa8a8252186c4f5f0649bc30ce521b67f521c66a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:02a58199e4b61c2d8854772359ea02b3abe946e3e67d1cea7ff753c49b0ad3e7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:35e90ec749853c76f098be940be10e29e25401c6a1064a27843f09cac052378f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5fdb8a778fc61b0900436f22aacadd59f7da453af25b9b2eb9c22aca76bc9b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4554e982ba99a234ce6c3717e3447b817fc1c35a384e8fae9766dbb4f22b868_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:3d5ff34a3f9281202e3c0c9593b481d9b16a8321020caca71fa4e3b4d6527579_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:423f3c92919536202042249d0e3911b30e777ad4616ae8f6ca9968c87e14c33d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bcc604910483ac005899662bc05a597cbc8af51dd0c1dbaa05d521b95cc2ee94_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d76ee581c268ee313f9815c181bbbaa91f976c2da68a7a5dfd304e62f4e4a003_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:213608462f3f06ee113095a0b0be07ab8b1e8c194824a11f56c67392729e906d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5f1fd024087262006ea5a3a03b1eaae1590be13fede1f318987921df0c2c3800_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a5d235485bcf72b816bafa06ed24b596b2b72f543e17e845ac8b79dc16f88a86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ac8a2e047872045fba2fc0ea483a700de6c6398ae2cd184bfbdb021969d6eb6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:58dc4f0cae516c3613bcb01833e42399b2db12bf7f82c68701baace24fc77b12_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5c793d527449dfb1b10921bc56e8a31ad3d0f8e05dfd19a1782a67025b89879d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5ce2fa8d80f65f80b35fdce9568eb02d1a30252222f8593f60d3d2ab85ca9a7d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ec31e82b039af04deb6b8f9c13810a61281a3cedd616aaeb03315bd3abdb2d6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14d78d97d80007bbfb90b2db94a3d0aab2c5f73e1785fb27ce570cfc5e31c964_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5ed57df32a4594d7acd4e4411b009c6bcfc54b2e90a337f809b8a6a53e858480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:69275336a4bb1cd9093233541e6f1e29ccecbb8096673ad0b1880d81ae454ef0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b889a52cecf44d33e496bb09da6073217d856dfbe6fe78149669ec2af3dd4f63_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:39348b1628d4c75591d22648681ae23c441338241b48d2ed748df691a56dcd36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6964ff070c67d6f71068014ba253466e6ede36b043cd0f8e3908a32d91953f87_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a274ec689248b4fe3431501c0045736e3b24df4afafcf86ea6d0704e22586c27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ad6f9a3b78b0e98bab747ece64657e69f301337f4966e3f40d3fe0588d1a530b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c28651ad376814116ca3592e5df4853dc0cb04402d825a2d12812ea6df06a4b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6fa533909fe009e146d0522a95259e7f80399cea0ced183c308e146bc51fd9bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:30c988074c30420793cecbd4d3912868197661b61f00d01bb8fb86f4aae2aeab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3dd6b992e2620c2d08de3ac99c687a9b1562d1a46bc9159a14e34abae9d40f36_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1200e38684ea24ad9e98352ad84e3c3791be192f08f22c77197987e548c02939_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2fa632f63034c5e2ba411ecd6a6655da1f1b5cd65e05dd1c2063893c77fdfb9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6f9a533d4e52e87336542eaeea992cd22d2979888f7c96d1537fe89a7a186a8c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:784e009ef59f00cf7e127d811f2cbb30f8c4b5c489c9d51985c8385400ce97fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:3576099906e843ef0a4639ab2563ea90c9c875d6be59b1bb687f59cdcff0acb3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6d0bedcf0cfc56da79f55effbb2315fa7da2a126347bf0fa3b21fe96b9c3f037_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7aab0df04151b6970f04174e2b257a77615be9eb724121ff29b59347f8edc8b7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b9a4f7fc7ef59029d19640802db410d32d52a35bf7c8a5ad229ce1e0b559614b_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3198e3a7911d65997d84ae2c4a4756213bd6169408f8e5b4d4fcfc1312ec221f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:75b581b7faaa791148cfc9a5e5b4c87faf3a809d2baa0fbcec38bac757007b49_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:af1751213d6286401c0e1d177bb2952715b50a255dd0072452cfcd1a239c9be9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fdc295c04d946e1294cbc811e5ee20827cce284c7a5358c9c6c926f5afb5fc7b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1fbf0bae66e3d3feafd7a5d800ffdc203ad1171d41da344c7bc899fa9df0c439_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a83b03a6cc820386376a5e0b5ac0bc43147338cd0f77ba6b20284b93cde06b63_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ab5dc4b258e7a47d4a05f2f4975324ecdb53481bf591d41dad10543be93ac59c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f6fa7b17816eb0b9d73c00dbf4715a26458d784e65858ebba255b032a5a2b3f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:565239690ed2974560e390d87055eb74f793a4d2abe8dcfcf0d40c4b1d3e4334_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5769b6120ec44707f7b98ec0ba5e90dc8dee0cf14a2795a0785435cb01711fa1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9640a22ea7f43b46c281d8271b89480a9df2b5c9ef500b3b9600c5373ebdade6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9e682bfd352c260c9127e3f2affa6dd16af28b3abb8ee7303753eb0ade31c1e8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a84a096bab105b8e51bdc5f2d93c011a8a6a32e0ccf5b3a5ee2cbb2abeeb2aa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ef77e97f9b16035db985cc79029fc5c3bcd6004ecaee9fec9c05e354ac1e599_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5f3011e69a519014b7801d2acf0897f95635dbe17492a09216673ebd4a1c791b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:eaa84214ab82626dee31c0f652f6d4d980065a920932eb8e69f2e078c8fc16b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2684c0efc9838adc240b08c8b263d829bec71acd381dcb4147d8c45eb1d08d08_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:31b01092a5183808a2a97430743d04941f034388254cc7007e74c4ce3083df25_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5699e966b38060569e298ccd084fe89bd719302ca70e2ceeb4bb9b6ca5be8991_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d052315ad81d7689a02be445c9a1df8d296fc3c32a33e3975dcc4297fffa2bfa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:4b16fcfd326efb0618351bc9ddb2c3206b18e189c188e5c9fcf27f3ca8f3afa7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:511bd02437b2ab8480a54dfe2ed3e8c11c3d9d2b332212cb455c8540678665da_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6d971be6c49127312d1568f9619c9f4684254c64b77a047f6e24e1caa83e9416_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7df6d4e5830f60779a607ad0ce8716034f168d5d9c6b563bf098dbdf3b2fae05_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:274d4e7ca8dc6003a3d18d931e63a4a0b4d5f80582351fadccef4195de8b847a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:2bd57947814981b16996f8d12e40d5a5670dad3eae9fffbd57e700c39c1b1155_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7339fa5d4a95cd617046d6dc06a2e97b78c2448353f2ee464095e787a3a2fcca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cd93cbcc8568e8bc3965cfdf4c989a91782a08c38c6affb64a0a3121fabb7075_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:04e57127605538ba40496972299b81737cc2e5197a2ec97fba0b34d74fc9ab5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4c9055e26a32fd7f824d0e0c5dc605c6e59ee22369812ab8331f7572e5154ac5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e8d4c571e3c88206979f8e3c28aaec2fb961b028df0d499ea236c494c0c4096_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ffef56a2b3d651b521f8cfd8024babe6fdd9e8987df4b37fd3d1945d1dff1a64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1dbb201ad9ba579d5fec8a6cd23834d0c1ad9c4d44927b1c90ae448458ecccfe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:2057e81c225d137b781788c9df16ecc5bab9a103a029a47196b9e2c53d4171bb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d66f70ef41f4cb5cabd1e1c36cf32923cd0f228687925ef8c1b08348dff12ea7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e61c5aaa06056181b140e49b24b25835c806df7a51efd7597d3d29c8504dfe3e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:2dade7bac074ae0b6d6b8a47004a3c534c6b1a484a822c45001f5d4083742aa2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:40132843fd968f729205f908824489fd67b9b0e5bfba1717840f661147af6adc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53c8d86e293208c966c8e7e4fd3435c9d8806e97ebb31c3e963f26456fc38600_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a310f85c49c19cd35070957d0621694e30215432b5d01e035ed3e8242f82c283_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:29247ef394a58b75aabdd5cc168e578fc2347c8e0c1d779b7b355848a97df2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:795a0b596a024d3793c0d211f8e2acf771ae79d4c5d47decef1facba2d5a318b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b5277a1b6205eb2ef3c75d691272da6f070b2d10fb1f27558f9241941471cc8d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:d2acb9e2a03e0c2873f562605b1e9c9d32215d1d9d265ce18bd262c7c4263f20_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:874eab1c9150b030a11a0742589008c00cd6f8af8fe188ffbbe28ee6b90f7bf6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:9ee41a2f3a833a077416d0bdd181d767145830fde45cc6fa5c31196ef749b1e4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a2dfbd0198e34753e82c002abf31d92585dff3b8093d77fd38d8369cb4c44ba9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b4f9122a9571ebe6e0da7465f498ae3e74cf7c77dd6062a675105f4c437e29df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:054e6260810a05bbcb889e80cf6a4f3668409bcfaf6302148c1230b443fcd8a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3d0ceefebed5e66f56692e62fde1a1b435cfaf596932058d0f2768d7141b6bc9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:499f3d65ea6972937bfed0d482a782ebbf807c4c0cc369e81d53dfa72c591657_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c08cf8ce6baf72aee6019b7318106e3a02e635f4b385a71a2e58387e706a2cbe_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:97af951210f4ac7395effe942732418e9999e7b8e54c9db5317eadee25491b3d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a80d32903c82085a1904b088453a13c88202d53c26626a0ad3663c784f36230e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a913a01a437d7a6d0ec6cd6eddccf25f064e161b07ed3f9fb0510b485130df08_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbe31a367bd21946e4dc641324c5091a85bf3ae3befb4f40bdd59b00c23bd67f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0d7dd7c2f034bca5dcb69cbf5d8e1989e10076fb4187e9c144201b2afec28a2c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:11286a96806113bfbc34db1b1e230fb678f11135da1809bf7162cee01bfcd267_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6fc448b6852cb86de3661f170f364c99940a004d1f85f9e0d546f24aba812fad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:82b0dd3db731b7a84ac6b7ff11c2407ab0020e30ef04cea06b25a007be5cae31_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:1aac0c8d30f9ceb91a9ef3cd76fe90c338568b6408656687fe168a8c9a48d628_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7062eb071701245aabc8f0839c966e7b4b5fb1673a0f5713b44d82cd726f3ef9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:79de159f6b1033732145619c507f29b09fa50f2709fffaa5a10f6554c6818651_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c56ca8e906e3b544e0dbdeca92c33ad8a7b0a846378e3b6c9ecb050bf60f2d7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:11c374a767b0cdcb1eee64e69900ca970dbd67f814a76ce9648f578862db2dfd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:1ae113ba4a4f5c2e2d9a2abf69d37ea047da7e879486ddf25303ab709648bc79_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:64ba60275b58312a1a2472ddc46894c40e746014eef5ea4379f71c0b6d7c96a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a0a1e7e812c0f1280e24cf4feff8dabaf299f110a8e8e695dd2e3dfb98c1c698_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29de1fa9e82a64eb363bfa664dfac943e9531a5cc46ca5c2e2c41b93d8b7fee2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:2eee252e29fc035c3d8b5b91ea2e08a63d96b9f11c6d29961cb738cf1ca73d19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bc0fd93c51986738cb1f49fa4a31f066ea2ccccfd45c36a2ae7066244cf1e351_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:ce46c15516097e435174ffdd74a4a89f1c9d44b256f0ab5ea84b846ca2f339d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bbb9f7761a83c0face258f4c056fc8276f1e84e37e533ceee3cd1ac11367ed1d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:d23edb6ed5bae7f0f2be4e09cc70e031579e06bb2d42cb1c507727c319deb38e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ed2a405c06a57740f0f44a8c3cd9b7e3aedd0bfa372d85e06852082f4ce87ae0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f360847ce5b67a5ca834ace7da710150d47786dc10eea85494e467cd4d6ef908_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1d3073d76a6486e752c91e90ff6030c0c0993e9b09ca8f9efa44e5decfd52d97_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4c49749a0ead346171f842c37c832cb6c2457f6812fb487728d561aa85d262e9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f1f47f29cbc61ddc25a846d4c7d9caa18b91cfcf0e089989883a28ad86b1f2b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fc01321fe5597aa44e732fdb7e99670d525a47dc7a0e0a37546f4b28fd697b60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3b5506219e72fab36ad67c982bd7f9bd2d462070214a71b4fd115ced29aab710_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:465009fe0147ff5370183ee02173f430d0b9cfae5d579aec78bedbd3cb9d5dad_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:607051d5881ef1f78d6a62e3ebdeb761f83988788f7898d869482c22773dbe9b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f12bc532130dc5fa8c8392d3885bde80ca93ba9700844bf9fe54f4878ac53f46_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:33e52f2ae99d85b6fc05d53efb17d0a72540a782a33fa91e766fe2e47a878a9a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:6d03501991d6fc5efd43a6c73cb0e3c8630db1f690bf07253c7e7d17a3de07c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:97598836bf560759a9ff39d9675e5c7f18a03e14500982e442ea93514cbf3677_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f24128b82f5c31b4eaf4f7198e4b8c0c702588f0568221b07df121175066372b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:671d23e3d686856a4d47efc6c410ace8deffff06134c979c042fde8e9de487a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9b9e3e354b0218bc54258ca7a8f7117cfe164c2311965769847e83e7f6c15d78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d59d91a2af93c1c7b2dd66e5cb98cd8ccc29c3c64b2cf016dea1d2828a6e06a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ff08f965b67efb7ff451665a77a7bc0f247cde4ca9038d5558393686bc037c39_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:5e4971e899f775e21b6e1a91f00f633c9467d31bdbf4b71038be98520600a625_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ae63547bd2f56fb1f1efe75e17413e43cf503fc7089dff3fecb68d2fc50bef97_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:80154aeefda9559b46845fb40f50aa723f75f29485cfb4846995d08b0c0bceb6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:fe5558e0b36855d11e4a57511f878702f87a3d907f79bcca226e99a0c8052628_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:0ee0d97e5b746a6df7d95ee4ef32075b52a235cd285039e2460f6ad084b1f5e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d80a021dbf04d702b2bc9736f036c0436191ab4ab3510749ccd03c533e9b5aeb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:6898ceb180df4a46da74c974cdd105e3bcbc5ddd1575e3cabe53a43dc676258e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d4c950b548bc3ed89ba8e5e216115bda1600c67d5c35fc9979fb4155415a7b42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:39af594e6f2fd164192c69bab214557cad92989f21e059cf66f00e455c7f816d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f94694f0d2db1759fa507fdde4594e6b4025a61e3c3f8f2e6caad509a77f6709_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5033eb3bcb9c08972c36d6e19b8d192d85822373e76eb3b54cc9168d86ea62b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:a9fb56ddfaafe28542fd8a824923257122500903fc18626f90d84b7e9b2da856_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:0f4d2bd2755eb5467e25d30ef813275b15ec77c1433d406250af5294b8b49f55_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8a2d63e97b83cac2d12e809ea63398ba1c188dd996a00189664c5dd009551860_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:10847c520f582706d956c48a95e6e2fac51cce89aa8a3d4fee316fb1ec97e140_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:73d3bc342e17226fc6e47dfaf448d09e394ea53ec199bef1ba42abf3e0be8c5c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:11f214e396caf556ca08273015712fc739d1df22b550812d079ef51af642d311_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b8a8e237f5827d7935e0dd8dafe0f59157cdada056580d74feb4ac1b9e05b683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:26422066656afd16e5e36afeb7e4b5a92cb6888d550ab0a0071da9a198f290d5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:3a2ee96fcf0963d55d4c1b6ffb874be6c3552ea0b9917b410976bd59e4a58efb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:2f41d30f61ee12bd34b94ba6d37a517eacb2dc4a51c938f588a87c1f4333b924_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:b49b52eea375dce5ee2b1fa3aca1facd6ed65b94e44ab235753eebfd917fdf58_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91e0a641719fea07fe1185250e91b13f8ece46fe371bb603308306fa9bbfc5d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a0839939275e2b68712d77224d5a7612b10a1bf0152a6f57050f179a1c492f70_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:bd2d266a384c88aeff5ef7174ecb532b24aa2a9d6d17a2e5c01ec384102571d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:fcbec489ae513f599fd533e30672085aacb0f937b7d3ecb8f97a39b24d0e3143_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a37378e201c50cfd94eddd0ca6163650e8af46e7c3a4f97d821aff530ea5374_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:22eb07d776eed9b364e0f8843dd2eed75c4295cd9c5d3567cb76b5e5ce20b725_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:73622f6358a99c5b2666edc3f8b680b4cc3906e2f198c67709973dfcd7cbb0df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b18d10d989d149b9bf1e94be6b115ec3445541d5d0cee0358b0fdaf634f93378_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d1772e78e5b5aed465c12a05548f9eff106f7a1e00d3d913830f8dee427fa4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e9ca0475950b50db7e62be4c43d82cb25734b00fb081359208323067c511c19e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f403594cab45dfc4de5a1fb56f8c9cb8d67ee8b8da68ef64487ef45ff6578236_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fab18be096158a97131184f91230ca5ad7a66946ad4ad527c224f279a4d413f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3e79c9035ffce3cb2f835487bd144c0976dc407890016d1fb86d1f1dc3453ed1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:70c684711eaef0d1b4f996d745c936f98707584a54b5d9920b8c25af4adec597_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8371e3f60ff9846b4249201911cad68360c81e944f753a6eff72003a17c2512a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ebae85f444356b6e695da3e3d2846bccdb8ef037b8cdc77f94128574531851b5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:0c0ffcda769ef04c9b46206aafeed9d6afe4f82ebd46751aab4b47ee6584fab4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:408f3dd8943ad4ba2ae37bc2708b698e60a150e98e1c0876e46d088832ed8d24_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5cddf09377c1fda878639186f3844bab8833fe3890f3266c79dea36faa4f11e9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bc7f21410949e77fe85c5a7330548b893706c2471d7d4e8d5c6c26a873132263_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:283596834104ae59f2780b8f0d61d90ea6128c4b09d57da03e05414203ee9245_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:53eb49907793916b8c24463ab096e15d14265a19da7a735a38bf5ec2b9625a79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6ec2c12950d227467d95fb84bbb1f9237cf8ea00b0a414371123dc524e94c71d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9fa52422e5bb14cd6eed3ae6d2a3c0ab07f801e6f92493ec59217025239a5121_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:089a4975c6964f0c0a435586733b9fa5c3c9c8a5e139580f016f7f69ab83da27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:950bee80200f2d9bdcb3f07446eb6aaebe4b31642990272178441b6f9e56a761_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ba71968598ba3fcc8dd2d9e3a861484f74804828ebbe5b7251da6706b4cbaae0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d5513c03787f261759b02454de8248faab74c402a7c8d9e948f469181dbb786d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56b40826166445e18229752bbcf65a4cf498e30c4f763110099e9adf1accb209_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:62a48fb1fc6545c57e524b1e1e3dc43b9749c024578e5266defc819d46d264e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:aa2333d5515daba8a887e66ea88370041a21a6f3c483bbc4e2bd888723c25285_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:d61549e87a7d32c426699db0e1e7f716a575427c65493f9af953a74581ce41f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:328589e1b67b3322968ac4f8b57193b936fbcac1317136e2818f8792e76a7d0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:362523f56123e0d1b18e7b3028db4d883de2c886e5796e569bffc64118577ca0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:5b18e39a6782f2bac42b00c42d88a05f19d1740d49082289aaac11aa07a48f35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:86961033ea238cdf3d061f8aa811f4559001c4e047e98165b00a8f9018b74c2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4056b49b2c42986f94456c5c3a5df02d04f8a08fc4cba8b957c040e4590fe581_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:94b1cf74b70f1ea57d939327a45cc2202783f1ca1d098ff27ac8aeefaec8f2aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b7acf9a4f00a5134eb1810f0ea70fdacfcf56549ced88a80b36abeda4435d925_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d43c576b25a46f4b13aa9968a17c93078c96acbe364e2fc13e12cbeeb334e796_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:020cd17bf8debf39db376f9f514901b1bb882de052631a01814812dd0a913f53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2f857a7dde34e1082edf0e26f92be3ead9148a3c581595a5a945704697d9a9e8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ca86e79869a7ab48486107e3637aa3953201ea36b6b8559ae8b2a04041606c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7f0561027732ff639f602c3a24d89894302fd43879370658fffd01a57a99a1fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:077fa69807819b9cf9c057e592c8e75c8108ea09cb2da43d7c378dd76ae68c51_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1493ba223106394c3d89d993ed18f37af46c86aefa50d2a3da144d1ca49d10cc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:3d6a4223a99f958f0fa1c4afa6f1aaa7a584a996fd95140c1bc151eddf215c57_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:917aade90b9dbdb7c59ac5c85dff49ec74b29a27aa330352c24680a6987a9a7f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0539cd95b403a48c3ba7a04e3e27da96798e7e342bb6696f65599c693a4b4297_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0a3991f02157723641d576f54823b42d424e612837f7871ceec21e40633235c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:60cda39573f604f52c427956ff45e8517e498783efee60cb8c7804ffed26a465_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a564cbff84b987d316d891c033ba1ce2299d0ebb655452671498b3de789b6f02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:23e8f2481d7c5f71053408be6bb5831e6a852ee4c9428f2e72403b6fd721068a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:38cceaff79e567296a50b816cd81cf60c695315474c62e0b380d9d0ed253eebb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6301be72ffce6f973f70fc6977632499d2930cfcf23ef6e477af59f3b283e3e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e70213ca82db398d11de723f2dd463c196059fed0639ccec30709332648efe78_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2bc4240c6a9f5abe64db9b36884b14d0a763e93a6474096e23a353cab562c400_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4a524f1fcf7c5710ceec19c651216c326ce15290848e4736d504f3247a20e1eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e2dd70d80b53776a74125790edbd091dab84b8da27545e129f9ac99d7d5d4657_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ead5377c32eb77ed07c2285ce30eccd930ee6348d19977ec8c7f8050d9b0ff04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:27a4c883fefa0bdb0033fc23d93875f3eccdda559d2813fa131a8ad3b24b9356_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67182434ce84ce97c5374f5ab962a79f67777bf02f82ae92be8f7eb5d0c2b85a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:8731368ad974fd8d1e5c954284fce9346912eb4210b01e01e6fc95893320f591_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:bc7dd594fb0d5018aa4dc0d26653f73d1859d978e07f0a1939189c5d2d654895_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:20874645efadc9cd5b6a176a6d76cc1f6ee5175404f7da5e10fea3bc98498ede_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5854e872994fcf1c4c534fb1b64f7f24ecffc120b177dc8079056b6a420ae698_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89802f2938cd3444ab90393b1046d61cbd3d05280432ea2390732a0d0520990d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f6a6951136c7faa7b9bcd0f6c892ec9658a2fa8701e0dec5e45225c3bae52bc9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0b54c713dd339589a9b1fc5e109a7b65117139bd27de833ced58f9716fce95cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0eae1a64fecdc43b68370d99fb14c369c5f0116d37bda62cba7196c0ea002116_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6b167e1a3755b0a2362ec86878e5614ee29226fcc956b2e193666a7bfc47d44b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b97afe9ff8250ec6647976373edddd171f0b362ce576087d8dcac7c4ea4054bf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3d7227cef380afdefd5f5a05001129a389029547c6f5ea8dba4fc46e20793f23_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002f5d99c5fc748401bed6ef7d0aebf2fb58d6850e7d1de4df622c84e020e87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e8d8d468ce7f75b0653d4b3e41dc63bc2fd7e231d32bd2296d08155eb258349e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ec0e7dd227d354544a2e67dd236b93970d393c87c1d6093f8191b9141c40ad01_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7807ea7a4377bbc2df491ec5bb74d324eaa66649fba9f40ba46957fe1a758081_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7a977b59ab4f908549ad66c89473f9dbb84e31eefbe6a8dfc92f5598d3f882bd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e10922bda03c19bfcb9e6b85eeb3bb0e5ad0ed717375c19e2a31c94940ef74ee_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e9101408b3219a72c3e43b88129a6bc6918df42b116ad18efce8c7a1b32e50bc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0618e1978b5b4ac2a90f578af3b8b1c471ef922a3d01d58d413215aae8c5a509_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:164e9edcf185697cf77fef80a7b26eaf42efeae25aeb04a91a7e2afe8299828a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:366eb47b3cb6c42670ceba8966f0ab119694536fb2baac881685e75e6615dc85_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6afb37d303abf20e6e100a4e472d782d6bf063ae6d131852a4ef9cdac53f7dd6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:28b92b175c80d10b33844a1466fe71cb48f48431513dd0c634f2ced57e0fa5b6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2cab2a6c6f64eafdc588cc11a5537e1a2ccdd0cb37eb84507c985cdb79855e25_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:c8322ff72825fe9dcc1c4446c8c3e4dd73619c15542d7f483642789e0463fee4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d3ef2745733b13faa31084c3cc345368c89f43b80b2a76e5b10fd7bfc008bcc9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:6ca65a281af1b92df6872e052381ccf15cb51c4adb0ba9afca4c3d3041e9d9e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a387760a9151eb37055ae66aa4821ee114125536324c3404a1b4c7044beebcfb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b6f9dbf0e6927d43f45ac8efcad6913ce67b663747d509666cf0ce87455b0379_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:f7828b8fc7d451c4b252b52150b2278d310e456e4b06de990bce9d123d923b9c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:215cb8bf8d6ed22118bebdc28ed8766acfe0d8bcc2c5e8311d3b4dbf8a664d48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7077e9ed025326ff3ebc0277b0d716efd46bfcff079442d777dd572c35842ba9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7987b5ef6ba2b7e5a9fd3be756c5cab95cd2464af7c9e8459d00e527609513cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8e5fa9f4eadf03465802101457da9e3a618572e47bf8ebd2859e9b1c50310991_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0d11910863bd5a411090ddf070c1be9d58c6f8cfe94eaed1c3ebc9cbe26c3cf6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6ad8362a4cb63bb7bae0e49db53ff65fc60a16f01a414e9f2ab540606a284b08_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7f889df4c103d4fb66fdb537989e34f139c953344fda28b60920feafeb1964f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cadf5ebac4b179bbc456ebc6743a061cb44437675a0b69f825670a753ff3fb0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6d5855d82cc1db4c9b87e58fdcd0133f56d26e44942787c74d0cd27e212ddfba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fe02ef18800c00ea33cc42fd3e7bb5d5ab2855499250279c785ae222e69f537_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9bec401a9b520ec096af6673657d6265501df64d94da332e818eaab70ce54722_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ac7aa75334ba6e157584d2fc588d682c9c841ddb1cad9d03ef0df96f7274041a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0077c7ef1053ca67c87920402ca1cbf21bf54626ba4046031528822a176e0875_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1d103663fd08d4a67877ff23ec32b2d16e290f2cfa268fa89c59c3f296c3b080_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:78baab63d2e3ad8f17734423f5b10cd137d944af647104bd40401f433a9ea996_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:7ebf3a7acad88ffd14b4ae54a1a8fac1eb1d22b6f102216df4586e544d2fe1f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:07ced40602810c0a35ffbed0e120a396076ff01e1d254ba9488a8714d766319b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:080a99a5e9663712b898e49ea608d1195c8e113753e23e403954fc0852e2b8da_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:125008a0bd8a64e396b32583f34c77e15e45e212e7e623ca20f418bd89cb618d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9b8c9e0dba83ba79ff28bda01050caca261f0e723e8f222cfce4a840db29e300_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08c33ef6a9b30a565ddad8d93b0529ea8a7c29a6e0f403cb0f49face063ae162_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:5928577bdfc2683410ba93dba0ec9106d1ab29bce79f56a832c06e00ef82fb48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9f0fa62bbcb4f5b18ee1ab7831d634e2faf5e945e94fcc61a204d7a4a5d39d24_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f448d0ef7d1bd805abc57fb34fd9acdae51656851126b9abd3038703592ba4a8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:21000531fed1065562e8e0d275bcf48eaaad2d35f54e81e13a03e9dbe22fce2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:41a99736bd8c61ac43d9cd84f3f21d4d174851c81e2a4039263b81d0cb3520e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:95c36149f02710b63a6c05bd3249027dea0cb332ce600226b6a7aebf4ff73e38_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:988d7aab9c210f5e09de3488b38758cac859c4619f8e8d715176c60b95993ee1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1dbaa49ed53404150877894965d638ec0558f4e17bb2b0d70933d1e93c26b713_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2bfbea264fdf5062c9454ad7efeeb799d1568071ebac6195c8138c171dacde67_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:a7a07a455ee7e89c4702fb1f15c7888945acec38d7ff1cf731129b098050a591_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b965fdf100922a0b263f372f4757fec562f0b48a8032d2c7090d9c8f19b5aca0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:54bb0200c75df26bf82e42db71faef1dc309be87095afb5de60e39d2853acd62_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:63d7e09d2367614dd7b83c41b35b538a6e3d98fb49c03a103f31355202528319_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:9557a3d19aec734063ea30485f71fc2f279b7ea77ef1b2d1cbd7e98ebf7e2938_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:de22ad5dc832ca597947d9eebd182f01721908bb26f8367e077134bc442bca68_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2568dfbc55a8a64fab947b40e160757402d1598a563bb1ea7a42103d2e6c049a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5044508d683bfb7c1fcb538293e01a54e21360f85dd3d6b6d9150be3571e4604_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7f9d5ae402c429ceb81c952f23b0898f4f768b048e87f4c7c193f970d83248a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cbde0cfe56b953fbee3a2fed6ea3cd13e6cdb0dd0fa74414b488295feecdf5bc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2ba313bef314b9e69e1b2a545ab54b0fbfec2d5a6c8b558dccf18abaa7d7e33e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:9848ebd13facf8daf9ca0f32295a280ca5d4dff1d48b9f3e8c0b249b616278aa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ae1bc048acdaaf5dab22505faec4c6b0c582b97023409da8ceb84d983494a0b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f8a862ce45dd686fb79c68036e611e15ce84922dfc64f847abcf6b65aa55742a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:11d975797a78fdaca7e28cc15699aaee700b3ac8185bd5d019ecc2a51980ef10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:40debe8017daf2ff3c5b17e89a4ab7e96cb717ae7bddcec305fb1eab8bbce0bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aa195335b903dcf873590deea8e425735760fee97ab33c5b648bfea1aacfa894_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d71c752e32a996fda35a49d7c7ab959689a91197b0e229481891a03c151d48f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:666c36444702f862ad1df16b8dc76f3a8f7b4eba8d63473a4cacfcd34c7ca914_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:836090b24936b955f5b60d236ae328e50ac91ba3cc367249cb5d7762cb15ebc6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:837118a81cc9bdc984af5e9a3f4fedeae4489ba4aa98cd6513dbdaece6acea61_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8bcaefae8c33ff10f758558796e4e90193b1ce2ad3ece24a21ab93a7e685dfb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3fccc681700104f6edd949e78d406f8c10375739f4ce8c5c23c9e85b69b1f201_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac846a2c18b90026c941cc2fcd91197ca909f985f0cfc14e91fa8c0cf2b10b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:96f715b9440bfb17ea68aa161b833ac33265b372e174123bc10dac3eba00a872_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a7750c02c168c6243c3cd666816d5a4be224e3799d9f7d626cf7e64f07cf06f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:32286da133273dd699de38a8ea62c46b66fd0f0271788ba6b205ce7e34fd5ff6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:34faf675b9e5361a23ee97d02ae1257feb38fda6e287b3b2c67e0b2e4e3ab06c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:997ea290d800e3599f44e72cea8bdb65876dba2483d486938e2d024b1b9a4fae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b329d7566ac8f0b7f45be16a1b364e249036c2c8f703af70c9965240f682f808_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:309782f6dc79d9760dde0265959260871b592a5586bf4073e9561e813f316816_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:529879780fd60bb296f0d2656d7d5805459827820b0b07e839909032ec9fbc17_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9a12ba31f5a9e9e4b8114ed30bf9a067cd5b92430c35905224899a819c627741_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ee31620709847e19ee56a6187986df168cc55a41e86bee1488291ff6a0415d31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:16f45167a5407ccf892d7518ca3c7a9912d5d0cc3f07446cfd3a1de175e5321a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:3ec816ffcd991bf5082f28a7edad858d9b02cd65f8e23ca2e320c41a33a0cd79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:50e0dcc3cf9d804afd0a8a3f633f36283817569fa1f5b7cad47db6cfc61c4a48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:af6e2eef8ff2eadcff4cd975245ba0cdc56f04931b248cde6d581d2d17582fd6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29b6202fa854ec12e85774564ed5da58d314916d5843aa6032428c3cbf97123f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8c019754ed9656d55c293ce39412f910b0f3ac833615aaa03e961183c4831fd3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a985f0116d10743bdde5e34fb181c4639ff0941caa66a3590713ea5d2586115c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b01b10b5836dae32a5b9938ba42fd4db2ae33a6b311da4e0c54ce0e48668ddf1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:64a243eb83f743985213e3c255f7ae58909fd3a4ab69bce80b30361bc9cd9225_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:995d3fcffd3f156dcd8831241e80223d35b6a150d9d72e89bf639b6ef6f2b81a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:aa7c8a340787569438c3c7515d62384f9a5ecdc53e400cc6768bc92c940efda5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:ee434038f9c8039bb2e2729584617a8d1b2554cb1e981f24a746badcc63c9022_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:772cccd41fa1d467cc54dec80bb7de08fc746507148f6220360c89f3f731c31f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:80c44734612ee4b1c13c995b1583a317e4742755ddd9ae515d6b9c61ecb5f152_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ae27d39fe63e4d5859648c7cc80b0fdf8ab8072bb8ecb34d21790552274a7abc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:cc9a958fbda1e4df8e235a0ae4c62d23e2e02dfcf25c3c18c3dfc8bcc787b7f3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:223602e0d30df9f086cec5c4f63562fd46f46726c44e186a5fec80f57689bc24_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7099a6800e9cd28758ace736f2c602a223f61dc00fd45def548e6d9a4bd23539_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:af138219459f8f23471300a38c65d1d0c580ab93b30c63798d51e8891a948afd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d7da61ad815088b8c671d5dde3b5878fff0083776e1618c3a11594e6f08c26b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:18eace0b9a62e03ca9e882c582a3ca9362a14488044b9b30076447ce3731206b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2dc26c9c7dd35b78f4ed2c520337631bc45fb10076d94e52d9a632dd66982765_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3ad7c164753be2cf26a2c69aacb95f5d91e5b1120dac43cb2ec505794fd98fb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5b23ce65b543c607e5547f2bb71866255794752a920b7f644fb203086cabae72_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:385e0ff7ff74b73dac4393c5ed5d700cb3a1289d501917dd44a6adee10f492b9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4393f322b7404940430e70469c0ede12e724564e87c3359946e349cea2304a11_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:5ba8673706092251814d05e8dc3d6de7e74faf5829c57dae0e3634cb6e80aec5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7cce8b979af738044110eae0d3f16db2e70178b32b340b7f98c339c6c1c80791_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:070167681620cee73ddfffac875e999f5a32c5ba48fca753ba907671c70e3ba3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3ae7edcafadd5fc3a2ce15754828efe17dd81a7fe95759f5d10fb843d8f0cff0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:4465d88b33622cf161e2df43aafe3fbedbd4e63f833a729df6ec5d6ffbb23b1a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f0dccb2d388210d13763e44e7aaf06712b1c463b73698566b32665030a881dec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:60a1f3345766ea95b39394925fcae2358dd8cc819a0f7b187363bff9f3bd1bad_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ea484b41505f1e5b8ddade45cf6f89e7b22ad4b81d740e9db3b4263672611398_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:0a527723fa338e5204f37b50f7c3ea7f46055a91f391aa12f5ff91dfc621b45b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6fd265148a4fd19ed6f39345ae982687a6ccfadefb2dc96af15737550c46891a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1df097f85a3b46c3624fc2b59b6755ec1dd1bb6843ce84fceca2c40b8af74eda_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fb4965e61b337cbbc13b082ccfc8ba17f7c98e3a9946a2429967203a71ab5ffa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:19233828b527446a7c210823b43ab95d309ed58c124ce07bf2cc70f809a6abc4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:953d7116656841f449d6b295f0753a0d39a2474b3b6a4b6d6240d53e357ff86b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad08029d8e31a6c80b9d25947ea267b78ddc0e7f3a97dc1dbc075dc4a02283ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:e163cc3aff166d01ced5f33c6f5c9145a330cd35a7f82538017338ff9ac43f19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:039ccc1b8843a4dae1d65e616c23066e2e921f5f4693f52a6c6a9e0091ee298f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6c5f2e308f308f3892acb46179df4b6bd460b234a416f4414194005cf915ef5b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ed23039296c3dbd7ddce99ee1a538b7b83e32e827932e3d00b929d0f9de13a91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:efccb4622508c44f67b3693732b8da8bf28bf80097723497289cc3cd3180d19f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:77dfdc4b6e35954e750b90627d720a0f7a3cb6fe224459c09f5de359c589f939_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:8c4ad92a5a5a030bd90ad8be8df3914f70dad8fa8e2c984144791685c7150132_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:924c6a190d3e2ccf26e3486fe09b892629736bbad223bf608cb02cc4ca2b5991_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f75d1ef206cef5035c7a4e2d0f8e73330eee059919cc4283cf0ae8711a3e7865_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3daca8e471b071e56c8f9551af5d9afd8c2eb1e29cf87e09dc48214cc885e262_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4a3b3272a261a24b3fa681898aa7d0c55e8a8f67f719200e05e580b0606c16e4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:683faf9d19ecd98b5cc92545e3628a1049b13156136f86626896572e7401a356_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e294500f174a12001306f888e6bdf9e10d3d30bf8554bccd5c82f1227de196b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:08d7cbc7bf9e4d19e36b4fd5d27040329982b353032c525179227c3e15d30f32_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:58b18bfb4498e2a7890ee5979598decd1b9692168ee10ece35178e9c2191f430_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5eaf2d7d197bc327adb488bf3514d2ce6886900164bb8a7e3d8c92061baeb783_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9728bac89d23922ef66913d370ccaf943465509f8a068494d517984ff490f707_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6257b90eaa900f50cee0d5cf84c105158f70d9ad4a9829d5208cc261de3ab5e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:7b851c7bfbaaa9227d15850922fc76f76bc517f60be3c984e23d339fc2091eeb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d6142179c8354154a885955351e093aea68de58f0cbae8ec631da2d3d8cba63a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d939f022cd84850c27b617d17d71edd7dcb549908b74ff92d5115dcb5149df28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:530f79ee436e2ba7bf71f7cbc3b62c3be81665f5207555dec663565772158b99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:9aad9fae53a218cf8bd83d50b3df6163a9f0ef6fe742a9527d0cc267fc8164a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c43b8d25569a9a26f77e1c1b6be0fff4467a9dbb8117ff562c2e650a2a62aeba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f0b3d8e6b527fee7bb63906136288b117ae31a38ad93aef266b7e0d84dff4f5a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26fc6ee878e8b9b76a61d203bfd0e01a61175ae9d6e350b4c8a01afc8e388080_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:93b66467306d137b06f29b307a72f45eb3a9149a15cdce0bbefd93a9034de3a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ada0c79488c2d4b388d12f9e4238054ec9e038bde604659fc70b1c368ad36964_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eaf2dff09f9cdbb55d3486888f5e18db19f535767aca754ea0ead9129bc6ca0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4a738c52c3e5bcf3c1d94b679aaea8e91b3cb3a3f981be534d8ee1274d8455c1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66d6f7a10465049938e81ddc1e4c13b2b375b2c92b39af99b2c7fb8bfe2d5e3c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:75e8df980f8d21fae7af1185852e235db098190d2e3098c7cc9086236a60eeba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e819fb1752cc974f7ec462dd49c52f9575c7b0db53f8cda50121ce1a391ef0a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5c0a5ac804bc8bc5f5e368bab64945e8e6b506358e4511387869f9bf458ba3f3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:9f541ec9efd0d0553a8648c8048c7b91854c3d8419e07c909e621d2ff5276c60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:cc987d4c88966417b6c45bc66dd878cd885b4805c9e2885fcbaca1734e7bbcb3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:e88d308e0ea7524be29e017096eb77ca6df3c8b3ea58a8a6a16dd7fc2fd5949c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:231178be9e1d4d547dc7705f82f8e529672f47786de781ca53424543d9b1e073_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3dc25f71c79a131cdb79f72e3c6bd2a3c987728e52d3261c5935f15b1466150f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b05e21c1862a49132611c23c1c0b589c5ee29b98ef5711244a7c32438f55f7fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:f1a5782a8202fa153b78b53324954109911991dffa9d7997229da1c6ceff7d45_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:17bcf0374c1cdded8c518835d832bac6b8ca75e05efeb0a6528e0ee49643bb35_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:2873f8aca5b0ead479497c023010d6cf324fa893522eaa924f10695a63c1045d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ce52fcb8c19848e8fc81e8cfca9c47e1a257339eb96e6a5e4d214066dad9afe6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1f93b71bd8b9bd62776c67cd5c41b93f94b4b60b58a06625e7d57548518f3669_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5599c06a31ac2bdd1a8f190f5095a1614788b2aedab9fc4f454cdbdcff9bca9f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e79429feca8812a6d1bb6316906b670ccbb89c506d0f47a0ec8568cd9975a479_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32526be8ad65ea6e3f70126e66ec2494364930f90aeaae32f1ea3611ac7e167e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:9575d057a034bdd890854a08559cc08013ac76dd0aaf2ef11e26a5734be590e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d6f6a6f074d7794ed9d7015ea7937582f0ad1d07b35d983dfc07236fa3323bde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:7246b6b2f38d276340ab7d46baf8e67166639d6bcdb75aa901ddc09999fedd92_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:87a0e8e9d89cbb753a2507abcb8b0b1b3258a7a88f5d632f174e6097789cc7c6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:96069c3067b68f1e2942d7758c89426eefd21722db2d0b08ff5f1db39f2b12aa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c2401f994e1783a28eab6f7289a25a6dfb9e6edbf6b424dd0ee9320469cc3a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3eaeaa507833c96c48161f8fc13d4ade13b4ad85f397a41574326e7ef81239a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e84c44ad88440bde18b3f65817a1ffd69ce15d48f8772dd82f5984d68c73928_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6914c074989cf18597497721c5b4006874a7e9a12fff27c513f8e6ab049be83c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4b2274d948f48f8cc0df96f3bccd2d610034ac4495c977bdda82c440b65092c6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:72ba74f4ad3c5c803af1c9388ed1c7186295b74429f7466304339f22deecd40f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d47a6d11b74143b03ababf249a83e8ca576752a2ad58482a2dda2986d79e7098_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d71b697e5c67952876677ad7d89394139d322dd6320943c1bc32fef9c501c326_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:3cf00020f76f7dd6428f49aee9060f70f2d5d73a7579cf8400ba22f8a3c16364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8a9fc2fc1351bcf4a939eb506e5ac91788d65c5f1826c46d3b41e15e8ac7b3ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e16e35579e3696474f357bcd4bb3c77bdfdb1603b971c3267d08f8fd119da62a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f3623315e94aa6a0748d390674e9f2f8632bcadc5b8ccccd75bc45019cb5a9ce_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:bd3081cfa4a3a02061a6908b469dd9a0b987b5fd1dc73aa67bb2dc05ccd2c5d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c84b8c416b3b543d4406aa42eefdc1c02c12f2bdb1b7d56a3e5c0d9c549dec44_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ef6ee4f9fb6e0ebeca08a2a2dfd69cc6b5baeb5bdee0b3158f575b14398f3ad4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ffb6610a0f2627dfd68731bde61d78df97e4ef5ba769dbfb9fe723dfff0a62cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:9329715c3820b10b14bd23f2f3e89ea1172886a3c61333d8b099019701f80619_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:cb9ffb3b3c64cc43b15f52a40235df199172800aa837ee2fa136c785312126a7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:834b63c9cd783e684ce59e99d4b060af5f2d6b6027bc62793e511bd5ae91afc6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c362a8609bd2a9b6ca073545e2ffc732949b1791929dacd899faea3c4176e984_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f050a78d1622d2a10a4549fa7d2340eacdfc80e4c1a628078a4a13006df99e35_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f32061109e6d1b72145ead1598d0a2065ccecb2ae424e743dd613b03992ba030_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0650df0f1f51958baf5fecd36385b4ad6afdccfc77ff0bdb90fb140a7e6a72af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:4c95f82bafd9f1a3207635da63f752252d94cf5d13405748bf9f1dc6d4e5f9bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:70ec142f9336133ffb3e4caebd30e579d59bcc3d52a3fd4c4642884103cd5134_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:11a23b0b5190d560d8a7e45c7ac015f71c18fac0f1672f2db84c55ec7d55f9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:e04e8d139638d3b8444961f636909cbf640ab494b88a738cebb3c6a7805e19e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:503da2bcb8b582dd98c685b81bd031aafd71e1bbfc8962b3c8b0ea9110e9f69c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:e1e3d49db220a1e3f4f540ec89e06b8a4bb7dc72cefa4b96cb278001154cb21c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:12908e94266b5a90846f50b7fe8688d66c359fb3fc3e9c317450ddb65b455076_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:587f806a8e6500d4dcced927409c0b582a658fee0f51c31c79736f8c31c3dea7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8c53297adf899ca1152c61b10149db660a9146fe067476c82114287f564ac191_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e530b7dae37afa62a6c9def8c54b573975018b94b5a56fc88e218792b85237e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4cb9d96442ea8b54307369d340a8cca987471b191b21c9463027c9bddd754074_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:791d876a5d256f592916c167dc0919fd16e1251317356838146a5fde8fd8a6e1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a9a8d43364851f839ae1bc62a807a983421cf5b41a7488f8da7e68b7261af056_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e1571e62821f55bcfb611afb286ff61773a16ac15a67da5bf210b5d141a6b3ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:21e4959e7a52ffdfd8df79a73177f02714f8689270c9a4aab4f390be59524042_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:51a465dd014fe567fc52613a127c932e386d2a6e5f1faf4fe1cbb1e6becf7e4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:64f077c897c6ee0c9db36c7cc4f9913d1ed66afb822975974c40d98fc21bead0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ed3e46a857f509e0c8a08c750cea6e1de65bb6a1f86933165b36ca5e45171377_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4b47b7c763f063e8afe3014f0f902d55ec6d1fbe832c2fc2f0585121f68c618b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:affe71c5753db62c3117e7d4d8d3a79f3e076b740fe8895b5337211ac6809eb3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:664fcca5d05f7993a6ca81942ea48894df00d46728bae7580f534891e47fa72c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b37fe0e3a3212b0e82bb27cdf4b84f4423e4886d2a3fff5ffe46be761e98aec8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a2a838ee2839658272f41aba9d5e1b41fbb05039c1aee8a63eff7d14d7a1f0fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ffbee6c294475f3dbe6b73884fcb411b1e5303f9b549b7adfd24708b776eb306_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:43fd6e0b0d869a25c61ac074076a78a7f8f389a0c5247af03e7ce51392e90108_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:9f05231471d861b8e8a788a6f448aeeee16693fceea9521fd87e4f6a6b6d6c9d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:049dbb920b57cff7ffb88073192c4c843fef754775862e4d57d2373637e45c85_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3b801c6c05a17b0b1c763f0a87d4908ba4980ad09aa8f12dce6f3e11b8ca637b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5afc27dc982aa722303ec6aa2b10cf727f2d1b409a5a77e0f599569559275b76_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6354ab3fa4a9e9cfa2c51da14109a1a67e98a3b43c346203ba40036ef5c3665a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:22f52c4591a8ccddda25dc4a1eebcc92010f49832ffc28cf935b0873021b2f96_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ab74018d4cba5a5f1ed65e9de515209321ff6be359ae0958f2a1b73d799805b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:65b2efd1ededf1a89f9e6a3e12ee8c7085a1282b2520b2906cab1d80520c00d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:98d6f4f8d76d6dc810ca3d927fcf93740efe1a56fa6100c1ed1e80b84d1be21f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b07ab0a485d53b9ed37a1a1b244c94a70630972020176fa7206d5c9dc40d9962_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b4501412341595aa8eefec6973195073fbf3d961cd813e21e02f3cc14150e223_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c03291d932607165444321fb2fa980104e60ac414920c1c05c499a898b2afedb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e1caaa1ddc51954943c6b44448ef50d7113fcd1f8aae4a84fcb24749de315e60_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1268948f6dae5346a6a8052db8644297c1b98e1732d64b24073d959de18aa22d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:458cf14369629b17e735598d3e6c24eed47bdd8bfe054034b5a60f4f40b6ec4e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6d51ed70ff145e62ae5d22d42b7cdb071e06053d2d456bc5411da7265c29c96d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c11d63f511b868c53303849b22d71273e844679808aaf604c87b373491a99db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:043460ad9ec9a4b05671ebfac16b6b2eeb39e3ebe5f43e3867f3767b7b2f993d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:62420bf7fc2b91f60b32851f2c099ac5fda8083e6274d2a5523ccd0ece3b6a80_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:77301f40eca2b49f92f3c89a93fc6766306d39013350d635f0bfeff4b98ae012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:b86db4181d9fe036b77d0473dda243523003c19d0fa5888a54f3f19c104a7e52_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6bb49580fa2f15130fd93f51e34f31f963a4c9b8b9cd898ed573ba88ea24a60d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:6caecd5a01bd49eff8acad2449074c505d07e521208af296b0cd9f0822f54911_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ca38c682197a97a075635209b6091a60ff412df3461950a24d1d881f830fb3d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:dd9a440a68817b45e6d2d04b3c31feddb82304ac1d246c20c0e33355631d9624_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a251f2b5d7f716fecb5119acdbbfdbb9b535f2c6d8fd51ee0c57cef72cfa1964_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b0188af5f7dcf5f286e4ec4f331062ec77f341391c612aac52e017df26f89a89_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b3f13d71ce9dddbce566d9a5bb5783d3e5417b8fa3cae427f7f74997e4a8c8ed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d6384ac004f36838bc5b35ff63c4d1edcb3223c0a3907d4f099c5d85ab51b014_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:db20ce7a947978ea2646d479eab935796e8cfe482ddce01f3675066b221e2e3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:eaa77c0a842cf32f826c2ca19abbe4020997810c35e079c0c88a0a9361323893_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:59988d13b37880c4b79bf8622161c6e975136bdbfb59c8fe73ee8e39bc0f7fe2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:f6dd660a76715b8eef53fa459376986a60d9f2e7cd3f176b0ec5c6e8ce19cfea_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:05fb046ec30c464d04a70831316de4af2c29a226be1e7f73036c90899e6bd193_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1da080de78222a6c01704597983765a751b1b4544a81168fdbc952ab31f11a54_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:45c9e9816f3b14886661b4c82dd75f87e242f4ad3e0c1c5f264d1a1839e8cff3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2ab57f0587e4ff1adee3ac4ca2c3383955448c0b26849eb24c77aa3f4cb5e959_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:66b581d789ec455fc8bd8e01e980c7fb183bb0f6ccc09ff525ffdfa4aafd9a52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:721aa2904e0c2d5c4d0e3134fb695b6613e74809e0faf3faa949c93b68ed168f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a84aa018bfe05a74226938ca4e34b58dde33019aa093e01a7a60a8d6a4c913ca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:1a255a287f3100cade2efe8d8b75ca7f031b9606f6d8ea31581a59e0ca38fde1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:3778fc40b92ab82012aacfa7589247e6ff79edb9aa918caf6ba6c5fa3159ae61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:60433084081071dbf7cd337a3769f60ab109201e2ac323be2471c62178d87703_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96b873289284cbff34ea1c9f852dce31e5a72669f204d742288e266cc3a19d21_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0e2cca7da188aebd3f4445715b88a3f4727456cdfee2147e7521059722162fa2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:23043c95c32122eaef725c3e2f65ea824e4f83242614d2609e9367cd6707e454_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:68a9dd5597bb207e899a4716a7642cc28260e059ead26fc84d1e48d4e6159683_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c1a6b704c85cfb829b9a3421cbde16b5011d2c506143322e8f2563d6a5191fe2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1f6f4d1a8a3c89486253cd025f8d0e5aa34c0ef221487aed5e4e968e8d810285_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9955ec574da8c2821d783edbf833af9c4b4d4a2abcffd603b85d706333c68111_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dfcef3e2b6dfabf0abd72dd9743c91ca4c5c4bbe5bfe7488c2a85c2cbf467661_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ec5717ba7c764e22cf72a5792423078ccb9c3a3bb06b92a33eb6014f03f82fef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013f0b271dc70347bae313209781261c76127a19b3a2f8bd074d170a84e49047_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:19c6031d8609f10b2b075201c0ccbe6f26e6efd03f567b485b6b327a4f6a7fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:304cad693bfac84415c3f6311edf8234f412a4bec7635178c963e2f3fda74d44_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ee8bb516566d6a9dafaa65ae52177421adece839dd4db80426d3d2ba30a1ec10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:371a5fe6ba1f62960a89e6b1050a2d324c2c91b733704fed2fb0356ff2cd9524_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5eb44886f42c57f0e736d6259b55ba561beb6324ca58537e253581f6570b22cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:854407987817269c3069c1d1e4ebd7441465f971e28d391eddd456371162b449_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e7184c5af00f0dc4551f17ef5539952c25c37aa32d596514e463464c92ad146c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:039a4cc5025db0cacd9e5dec922d9cd51194cf0ce903904210000245c5e7c048_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6ccfe8e12098c660310fa2af574a71b7b27b23050f6b6c524e9c1787c7127110_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a5f3adb97a88b5910f2b5375e05fe3411652541687262714d50105f05ca31c34_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:de16bed38709aacd8a1c25b3e68a995631d38c12d9d28924360fffcc17adb0cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4cc2ec3ed32c991240703b0a40c6602db1320fdbd328e887b517a11474149030_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52e3ca4eb01859dcd5c4346d73339889f494576b19577fee88cb1800c84f8fc1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:949a7355b5e946e1d5c760e14244073db9df660fd8b28a3c6d06420dddccc298_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aca1f2e8b0aeb6eae4a77bf712b8c255dd50526c76e843f9960871cbd4abb6f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c075a7526723ebf1b921ceb895e63a6d5f3df60707afd79c4fcf1c9bb6f33e3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a952d0aa30010721e7a2cb903e30260a02f4a9dd9d83eb7ff02d2847f1e76e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7a7b182e9ec23abab1daeee26897eecb99e1785569a62888db4b54d6e897568e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9025051729370f663bc9231aa612b0bb51b35bc6da68f8b504dcc01c760a1fee_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0232982c7a3431d641fde0e3b3b8921f855cb872d470e5b9f69edc9b573c2714_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1e05df129e355b9a76f8bbb8aa65e9b4263fb9e888639fd2fb61f79d6d212c04_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:89451c63f28e8e515b4529c8a834f6e8e558179ed3d4f973df539a509933f942_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ace5b486176727834f9e1ca6ce46b4d0ab0bc6ddf651f4142626b543a02c61d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:007e6fe2b8d7a384cfe07309e8a523bd1b7d3cea896f3b7f29908a8d41c62f16_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3fbc6e29fc388b15dc77aa93d2623ba9a23db114399f3b07da429707a03eb8fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:42f1e088777be6853d6845aa25cee3f46df776aba71ed1209285ea853dcafb95_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:73f6897c667e3fa46703b50ec857958738442bb7d8b95fae051f761f42a01605_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:3f69c1b708c411bfdd1a2f5387e6084f2fa28e1c4bfcfe136db5b66377918bf9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:46ba8317ce0d48d6d0e8902fa4b6deea668d6f3c9c6c15c2a3aa6238cc06e52b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5e919ab71bf57a160c89b6e5964525a708a10c7cfdd87aaf911e57e6353daf23_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c706a7354b0006b9e9c7c351954f179d6c50cc2b872833bbb59214ae7148ae3e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7439625194105ec8e55d4f7b3acd13a5f2ca70da75f9c82cad5f5693b604bf28_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ffcf4fc9bf77edd7944824b25136db6027d21faef80bef9d7b126b9fb6c0574_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8540ec8af82488dd6edb249e811036b1e639a74f892af1ffac1ab5d59ceb0abf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9b497b933ce2f828025dcf4390c7d53debb2418394317da9a8c52ba82a6f2fc0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:37fa7e2453893831aa0ea8bfe068e692ca4f1ffd6f69afca37a6a4e7ad401c49_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:63db7c4a436ffd18fb03a7cda09cd47844691a8025f2ab04492ff405a85ed144_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9a30469bc5882ab2711af24dc3b3cbcbd0532f49bfa9dead772070c5fd1280e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ef2e5a237cc5d69647af1b904a902e4e216ae8480a54587357fb135b738db120_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6be6d5b27b6e178e0806938850699d1e760c4d456ae517a658b47cf5a1401a2e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:9389ab668e31d432d3b2d44fe11f68df7f9d926179d0fbec8a6d1b30f489857e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ab20bef5ffe91fc06a7dad3508294cfb9a72745da8cc0342e59f515db447e264_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c5c16e51700e2c16c6fd496225946c033875f4fa4c0174ea625958bd62a7ac51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:37c574ecbe02ca7bc99355b6bbd952c392cbb2abb430db4b752257306c37bcbb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:db6cfccfb142d8f7addac06e4aec0d6686361bc15b459d169b0df831b1d00160_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e813ed4ae0135da60fc1e7e572f6a46495e03764c96ec3c095a4e61a8bdd338_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2766e79b9a9a3fae66e1d331ad2fcc2141a4108e816cb1f91557bcf2e045882c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bfcf47037dce9565700224c63e19aa2ca8935d72e355c08cc8754cbb84b41d00_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d4588b2594a2fcb58e676ea0e8d11372e0bea9deb53824b47a4d8f3c63e774bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2bb5a02fa2032146aed8fcae80961e9a6e37e1c8a13a368ea07d6b124f303519_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5998439ba17cc0cdbe1bf48e888862182d6e10400fd9df74dfab53d161f0582a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7e0233017e706ead44793f1fff610a4625a22a834de67511cd66efb208a24a47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:97bdb1cc0033381c61bc1c9abeb5f3ecaac1adc70e91b203fbcbfca9a9ae6c39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f4605b13a1cd445835bfa2bf8d2f094533e4b731ede1d00e6e15a83ca924bea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:20955243143106da7d9e730ece6e49bc84a18427ddce20cd90fb5ce712e5477e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6c27e11d2ba7f408c9ca5dc0bd898bf395b3f773931b04c558759493e0aece8f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:7f08d881878f5d69360edd1be3e1e5190a66df75a087120abb37b2c0a78b4473_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:755632416caf3e2fa4e8c24958855e78c74b12d5e3f2dcae93152ce06274d428_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:847a5098475d0ab53e351d52148f5a2211dcc8090e03e17dd7b161b7332465d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:93c4ad9c017eba69c7105c1f60cba46f201b39da79f5ded60ce13a98d7608e7d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b559c70d997c0ce2c57e2cc3f1d3160f5ec2367c53c8d1fe1d9418b142c5c577_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2674a13e799262a6ba79ba3e43c2560304a1201374272e8622aa1a5e3df33d66_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6bafd363141b2012cd318a353cfff9c109c6ccc90d227587f2d0e08316309602_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ad9865c56a3ac1997b3aa16166966f73a24b49a1a8c71edec2eeb795016b849c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:c2d53d7716676842974f1dda29eba47d03b525614857591426a01b4186ad2edb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2098ea118ff218c9004be57932760642db74b9387d11fd5376593ebb3b2f13c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac90d3f60f0a9de597df5344adc3d6b1478b96d47fad0ea71a00597e8576b12_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:81c29521d2aa0a7d8a0eed047e5948d145c9e4a72fd0697fa9aa613033e7faf9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d9208e402a04781e9dffbab5c989e91804b14b6d8a5f5f29a79cc54f85782e24_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:71602c5c8069030db0fa7373e496c7bc23bba707756f57a082d7eea44f61c9cb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:72d17c4acb7d58df68ccc1ccd8d7334f35df3091d8bd8e25a949e3c7f528de1d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8817af94a399c898fea21c34bdd60dd2c927ba3613436f79aab4906ecfc92cfc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f9d6ccdb270a01e408d70d01d692955ba92282ec5e577fd695f6c51289edce2a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:005773da78ed8522b96f69d9e53c961811e79340b54d49dffdce92c59a0cea2e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:502e2c5f47b1b95e0ce1e3922306ee37c604845d1d1accd92181342b473d3b3e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6c68854cff5a2b94527d6230740551ccc74d1161e7a1bd82d8119065e9e764d3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6ff88655c6a7e78def695735bde806319fe65b5fb68ee0c3ec2a82c6d80a9b00_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:179c818cc5f2021988e1b71e4edaed742e62d398da747cb548896697617254a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a75ee91ea3ee181623a22f9e54b00c5d4b2e6cf3f222a912c8aff5a29dde1376_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:eeffe28791e4306c642f156e83c6035bebdff5d1232174d56ccb09b805f9271c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:fec4f6e102887cd0d47167eecfee667e3161dd21a13383e96ef3b36f8e319076_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:167bea17ac181347213db54ace41bd0191b77ad20a3a355e56c90fefcfef0c1f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:734b7d0af02c1b79781846ffd3c617b27728ae053941b112d544c73e0bf3a3b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a7cc1cc44f13ea307fb79522996cc56264a0e036bd5ab9134b24e4a0f6639843_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ca75fc486998027f4903a313c7bd742711e2b7bd11e55b1e0c557582ca3d1dbd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5d23f5103a7bb7c71ab5b79c2149be46e4ce746f3556508933593a94f15ba945_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b2dcf4c5a2b14b677212eaecf6ec3fbba8bef7e21d51a437449456979b5fb551_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b692ee1154fd6b6a8fae68467ae87ad89c8a528d50599db14f614c7f08831d81_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:fe7bd87ddcdf1ec088e780a9e3421286cc0e4aefcccabf17d1c50e4a4656b2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1775e9ce012c333caee47c4df8f9187d85d8b47f6300e3a7ddf6d83af462986e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5403330e0c28b3af4b3fda34ea84b3e6edced89649cd00bf6ff7f8352d2f7708_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7e13f7a4f2a67e74b36e39b5e582b54a8979c270158789c658974993ad351262_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ad1b944c7135118573159adb6eb359face5ab141e8328420eaca3999fabd8575_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22ed10b10973b3a91b30a7269a88013439964eca8e6954fd515442d543bb74af_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:74dfd09f047da2dcdbdaf8b16a3aba913df216cae2f26898c4f9fe423ff6e330_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d7f0f0b52c3c3c7feed13d3ab9d70fdfdb89af06210b90650123b362444a292_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:88732e8c96326c07670db570f1b1549412775fd07a66b0816f227d1d4320a27c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3e0bc6b1b9cfd488a3cf5fd19d5a6d2839d37bd609c08e6a5a7a9da869ab3cbb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7efa402118210c406818a1791109dae10962706df8c04b290561d0c784f8a57d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:8872db8f65a31459cc63eaec8f03d40ff2b21e95871e59e3bff97b6b0bc9b9d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bc298ee8cd84ce0a44f51ba31cefe4052b67cbf9ea559fac77de3ca7a02762fe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:1715daa2ffc4a6ea78b5de1a1ffe556d27e3e9aa1cca1d6ec9e53217f27b7ffc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:32d4fbd0cbd715ed35ef290d459834423dcf6203374a2a480fc5513b3764873f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d22fe92972f9d9303f541977a3d753750554e6675545ad7e511b723c3869c4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a51b74a21651e21c9d8d8538c2cbf9272d09696abe8244cd2b1290777ad452b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2a82548bcb003f718c669be20b0abf13183fccb5d7d4e34a17e9be6ee08dc2cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2bb613f365004e6cca2c81baa7a59ff75a08efff24294779f54a51296a4f1afe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:2e010df4822fc8ce8b452dd6d9381d38b1dced3c0e429a9d88e02ac61384c825_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:a8ff1c3b2fa1dd0d849d5cd35526a5ef2135bfd6c551ecade04e4744ac595453_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:86e68bbe22d576839fa35f704596b2f643c09e3cd755fae8effe90935f65ab10_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d48fa90ded7d3c77d535abf9eb8f56d32e1567a3c292686a7f76c6ac39b5c6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f781a380867adf7f20c38114cc8d7c751cc84faba5fbcbfc67b721793f017339_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f9d1a4c9d0a5404e8493a84f94fc1715d6226b22b672f0e378157405f5a7204e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0696026a1a59a9227aaac743602e83017e0281e6726d94d46c20c69e61bb6ee3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:18ead28e318b6a165c6988639f9361dfdb3b7936c026f6043b66996e806be30c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:64802d951a8cc8294fa9194e5778fd8ba178cc2dff80234d85234121013ee58b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e6adba899b629ba8eea41574e66d8ed2eaac9169aae5fcb789aff787f0724b73_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:06d3718842b1f074dd7b6477dd8e738e91ad243e06e466cd9cf8b08d7b7fa024_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:220e8b87b16dc9219b324fe7b97208869a17d1039e620bc91cdb5aec19d4a0c2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d85785005a4cf5e4bc26adabdddffe345fa8827a0db2240d01cf64a49747675_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fb190187adc311919da380eef951373ed4f907a07606af0797e96cd7d253f20b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:1d5caff7082d26409e72c3d18b018f01178321f3922a0868af8058f839261d3b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:a0968a8bb5df2b0b41bf55b06f11397a4d0c0ec290d22bde93fcf631923091a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5882d9e24bf330ab1bd022877c1f3b711a41b329c46c64652105a1b0a1c24cbe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:a7f9b163518a7508adb281ab052ca9e1c233c9ee5efe37efad238eb0febad187_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:059a0c17ca865b86ef3b3c19cf641d3dd43b007de861583f5c160083dc52a012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7fd099e945dc79ff47d6aef25ab62b66920ae6e7338ef2da01ec5865970bb62b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:2461d40854f69f775c2643a67eb8676729f4fde44b8ad6f106b86b8a66342f67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:c69c4ec8cd052eeca122726323294481522580372cc3c948fbeace53beb74765_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:05f0aaebb8307b693452309341fef6e3bfe6912a34c1a9d7ced1be398d81351f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:0a46ca252418f181a86af41b48cbabda464d51f9d9f44792efea11e54ed2167d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8e9b9f7048b849a45ea2edbfcdbc1601d8a11cb4260d5c1d89d85b5ed462e7ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:cc9d2ebecaf2c78d99104d0a3ff23cf7748e42f13d00215783cac971193b1f69_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:25e957fc0f6723e791625c55d1b251f6b7a894e15d74e7af29e004add4e3a6bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:42a64c335c5af6c607f435c9a09411e789ba8b66d4df1201d532f27df5b9dc04_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7c98311b8e0f89f03a4250cbcc60ff62ffe65c4ee1bd8c34c31b623442f348e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:abdd622e2447490b74f285cf653b9f6900b904aa6750b34bf9a39f09dc6337de_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6a3350010ffc87ac68f2c8eff3ccd707bef4d9295be9aa7d5633e83b3fdcec1d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9ce9629c6a48384d0dd7d325fd61cf62b8c290db57b2917a8ed671f7e3d4fa9d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a71526c9cd2f4c5f9a397348f1ebc08590caad252cf3bce6e5d07ee6c77274c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c9cce3c5b53509924dd37d4d3a250925226372f26b45bb52a9dcb46526b1f3d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:137c1f39ca66f98cd37c8a9deb3279d0acd18c24d70a88b6e8d9033a1926fc0a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a38f0412ab643c849826b9600b42aa8975f4d77546ed3b36e92e7b2dce237e4a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:de2eb4f5453b3a0463c333a1770034a9016eadddbe8a07c2666c3d58367ce3f9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e463a6ace53d6f8eeb652db6a69ecda86245cf3a87cf10ec7735738375d17c9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:348c8fad1c84cc45b10e7add9d5bb5c37057b699d6466e18c3bec3d593e1adde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:37bcb5a159c17e1241a4e5add6d5276512ce99418b2f779c1e2a976a099de7a3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5653e3a360eb8e725d483a152ef0510d5e1f7142666cc5c6e27f62965f6cd08c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:57ea23e19a26640f9e8bebcef70419d22c23ff334878e89d4b77a894acc2ce7b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0d0633b8cb1de498ee1441b5e28b4ac6aba808f6ad37d3c2bac9f01c94ff33ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:702219e963a769b7dbe97a0f9ea6a20dfd1415097dd6f38cf31cea657b1e4936_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:aa9dc51ef8366806a19116f700448b4c0ea9dc1de7fc9f2b8191872de744e591_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:dc192484377ead9c1805632aa8a8252186c4f5f0649bc30ce521b67f521c66a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:02a58199e4b61c2d8854772359ea02b3abe946e3e67d1cea7ff753c49b0ad3e7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:35e90ec749853c76f098be940be10e29e25401c6a1064a27843f09cac052378f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4b5fdb8a778fc61b0900436f22aacadd59f7da453af25b9b2eb9c22aca76bc9b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4554e982ba99a234ce6c3717e3447b817fc1c35a384e8fae9766dbb4f22b868_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:3d5ff34a3f9281202e3c0c9593b481d9b16a8321020caca71fa4e3b4d6527579_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:423f3c92919536202042249d0e3911b30e777ad4616ae8f6ca9968c87e14c33d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bcc604910483ac005899662bc05a597cbc8af51dd0c1dbaa05d521b95cc2ee94_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d76ee581c268ee313f9815c181bbbaa91f976c2da68a7a5dfd304e62f4e4a003_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:213608462f3f06ee113095a0b0be07ab8b1e8c194824a11f56c67392729e906d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5f1fd024087262006ea5a3a03b1eaae1590be13fede1f318987921df0c2c3800_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a5d235485bcf72b816bafa06ed24b596b2b72f543e17e845ac8b79dc16f88a86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:ac8a2e047872045fba2fc0ea483a700de6c6398ae2cd184bfbdb021969d6eb6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:58dc4f0cae516c3613bcb01833e42399b2db12bf7f82c68701baace24fc77b12_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5c793d527449dfb1b10921bc56e8a31ad3d0f8e05dfd19a1782a67025b89879d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5ce2fa8d80f65f80b35fdce9568eb02d1a30252222f8593f60d3d2ab85ca9a7d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ec31e82b039af04deb6b8f9c13810a61281a3cedd616aaeb03315bd3abdb2d6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14d78d97d80007bbfb90b2db94a3d0aab2c5f73e1785fb27ce570cfc5e31c964_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5ed57df32a4594d7acd4e4411b009c6bcfc54b2e90a337f809b8a6a53e858480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:69275336a4bb1cd9093233541e6f1e29ccecbb8096673ad0b1880d81ae454ef0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b889a52cecf44d33e496bb09da6073217d856dfbe6fe78149669ec2af3dd4f63_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:39348b1628d4c75591d22648681ae23c441338241b48d2ed748df691a56dcd36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6964ff070c67d6f71068014ba253466e6ede36b043cd0f8e3908a32d91953f87_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a274ec689248b4fe3431501c0045736e3b24df4afafcf86ea6d0704e22586c27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ad6f9a3b78b0e98bab747ece64657e69f301337f4966e3f40d3fe0588d1a530b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:c28651ad376814116ca3592e5df4853dc0cb04402d825a2d12812ea6df06a4b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6fa533909fe009e146d0522a95259e7f80399cea0ced183c308e146bc51fd9bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:8c7fb5b3b2b53199cd2c328bb97a10497a66703a7bb8b1925ab6d9480f9c22d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:bde25ade9408b280663a1190c2dfbabea33de52466df09b99cdd737bab10fb83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:30c988074c30420793cecbd4d3912868197661b61f00d01bb8fb86f4aae2aeab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3dd6b992e2620c2d08de3ac99c687a9b1562d1a46bc9159a14e34abae9d40f36_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1200e38684ea24ad9e98352ad84e3c3791be192f08f22c77197987e548c02939_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2fa632f63034c5e2ba411ecd6a6655da1f1b5cd65e05dd1c2063893c77fdfb9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6f9a533d4e52e87336542eaeea992cd22d2979888f7c96d1537fe89a7a186a8c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:784e009ef59f00cf7e127d811f2cbb30f8c4b5c489c9d51985c8385400ce97fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:3576099906e843ef0a4639ab2563ea90c9c875d6be59b1bb687f59cdcff0acb3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6d0bedcf0cfc56da79f55effbb2315fa7da2a126347bf0fa3b21fe96b9c3f037_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7aab0df04151b6970f04174e2b257a77615be9eb724121ff29b59347f8edc8b7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b9a4f7fc7ef59029d19640802db410d32d52a35bf7c8a5ad229ce1e0b559614b_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
}
]
}
RHSA-2026:10094
Vulnerability from csaf_redhat - Published: 2026-04-29 07:27 - Updated: 2026-06-28 21:15A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8be03eb8cddd01ebdb98180c67dd640848a997e7ddf8b6e7f22a7559499869ea_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c5c6c5f957b61fac8e6d232de221b97dddea47eafdfb0774361badc893a05e5e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e8a37402e7ca28e5ed2b854448887aaece1515680082efbcd0774002b9645011_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:27045aabfee1bef5a0e5fe7c8d87998b5d085e90914cf0cc879be88a0b289f32_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:c8c5207f1784a5357e087914354fa0f77b8f315809a88562ed2c27c1dc1693ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d717c8260a3499f114f146efe58afc1137caa648dc2c57791fa31bd6554ae458_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f1ab962fa8e19af109094f673b205461b1b1a4ea26b7620268d15d3fd1b8ecd4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4c598df247745481bfaea4aba7598496d87e6407e1c080b59384b3a04c43ca0e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:816548bd51389d5cc6f6354d3893d252d3201e4bf96593e91259104e81d67759_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:826d0571835e3585f7709f36b8319ef8ddf4e8ef8a529e89728b20f35399f1dc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d27b8222063a442039c3fa5e960c256eef2c7f44c91ebc17686dc596595f1d14_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:241f11e567990a11f25ebbcb91cec2d5698ac736fa7ecc3bf5d6505c2e590b5d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:893e94bcd1ea377a5f2bae00dee9030dace7eef11fc6e54229e00472ac210ec2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8cde7c931c746c4428bf22d9dcdd8caf518e4273bcc2b88c8c3cb025b445fbec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ebccab85b2775fb13e29872d87985ab69a774a4aa6556402dc1e4478232dfa4b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:7284df8190c5e8cc412917b22396f6db8a09f932851e94b934dd73fea6b7e9e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c042aafcfd8feb67684753e52602431b1181621acdcc9e61fae9601961637ff6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:cca78bfdd762f3413ab1762660ccd5e0ee61da1f83fc2179fbb803518011819c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d1f7bdf7807d6d0741275d3bb9510eb892dadae930826f3d2c24a55e9782d5ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:0145eea7baa031331c188b69ddef4ad0765a5c9ca37fd27d54e2fc30e3eaee47_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:445beae6bc5a6295d12310bee6bbd6f3a48011c95b40515e6382e27b2421aa9e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:64edff7956f6b9a8e508080dd1ff3db9dcf4646a5945e4f5a568ff9de8479598_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:849dbb2d6396654470d6dcadc0754f6917bfb7cb41f339d9a9d07009fecebc06_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:2dcfefacc2e1e3253cd017d52e099ddabbcc122f133455fa9e445b73ac3ac083_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:ab33e7aa29a7001f8d86575f885e9b6d38ba4d7f0954539757817aeba480e524_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:be6abecefbcb3a36db0535262987171a032ee22a824880a4d41922808a0a0bc5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:f8b3c8686ffdc3c6d92e46fe5246566cefb9d12e355e3edfc82741e9888dadd2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1e9f84c94a6f2320b18d426e34ce5614585a785b0d260706fb7b3e2ed653df5e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:5e1d0d8d79e70eb5ca5bc971b767a108244edfdfa08aa4f9b1a1a7ea714b11e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:ebf8bf1c22cc0adc2a59b4f8eaeb1b81191587a94aa816d6da666a261719af08_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eca15f37d0de3827cbd8456edc10124c849b423928473902afaf54aa0bcbd624_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:51f179d88b85e36f646435828302d67c8ff327d5560866c5dfa1b7bba5c0a5f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:db4b25de2051b1762ff366ffca0e6f93f4f810f0ea38cb2c7803adf019f840f4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:e2160827e92d2fbbb7e624fe92e762b3b50320fafb76ede4f66b882228b78540_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f50289ca9ec0a4abf468b3a93476b10415bb6da99f16ca316d4c3f08f1f16594_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:16b358289777243a6763223070dd0012a1ef5733ed810ba27aee168ecbf0a9eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:5dfb9bb1038b0a057da7ac7e0367dce3601acf3494704b057070a786baaad59a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:541fb836a9c207e030f91060fe9bd31dd1cfa8900a1b74463f9858cc36d97ed2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:5c53c6d78a52b17d51db99a72117549e2179f90d4243f0930355d1378d528201_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:08238fbaa230a53fd4ea7f3eb701b398349b55161d57dbc4e303b0a46080d985_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:89ae87596cb9e3524dbb1cafeb8133e1d9a3a3aa9e8ea039b804f40cf44e1c9c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:fec596fdba12eef010aea34b308282370242e96ff65cff8936e28369702079f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:0a07ba50051553c3dcff9068c9040dfa8775fc128bac0784900ba4863fa81609_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1b465eaf900309bed4cedb06b46a1e4edb10b9d0ba993585aed84a97c91ae70a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2ea6e5bcc3b3e2dfd98eadbf96dd9cea26308a0542fb1d953137a04a48456985_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:67eb2f9fffe76c2e3bb133c7c4a2cec0178e3ee0076ddfc18b08bcda407940b5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2f849055d3a811c2ec3f5391e0fd01f3fd7d8b9ea483a39df47e5d8a2ed6baee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:503f0ab56d42395194dc5f050b43ec4fb69414750630e76a2634d881e2bd671f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:9bf7b748def1c91caa1e93bbb9f13f5d054c97c328d667ad00b060559d76c1c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:c8b1c0c42003158da4042929ed9b598a0c5dad70ed87163ef72cb13657de0e52_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:098ccc2275ab68cee3e5ec20e7f6b302ed76e4d66bf65957376ecf184a47c1be_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:3406801cb156af01e2c4f78dec2e1a4f9a5bb881dd2fb4268dd621435e634b93_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:b18d87c7b68badc9c90165b6206d8ecb1bbae17d0ad401fdf7bbed5df4ded0f8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:cf7f6124729e761b1acab5f7ea343365bf66942c85fe92b030ad568cb20a8e08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:593e1d0e8b26b19eb319b94e0c5338d7bee33863456eae9d59674b0239a9d2e5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8ffcbc96bdd5e6b4f55d1fa1e4cdc4acfbc2d4f62705fc13e3b0a37dcb08eff9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d19cb645ed48afbf70ffd3f9c096f971192f0c5c00c7e8897f36c328e68c7690_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:db7c9685d5a8c1bafb226e2673a69bac67691768338bb42a3b8d278bd9ed813f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:81cd79485653bad71c4142ac661ff1102cc977ae678e715caa8494b011a42dbf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:c3c25537f0d938d99403e7c02f1e7d7c88665bbc08c2bfcd70b8d100a4c7cfa4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:c561564a9eda424df7392e4f220c80ae4f8b7fda8de60157d5ddbd65d5135f27_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e11806e1270b7734a3a1306f0a69d4b5337450e95b29b9b495a7d9670e99f0c8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:489e5e540c0bbe17b29d839412ff237e9b4d72828cf32fbe512b1a4a0c920443_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5a93d29002aa07e5f503916b106a0d97d43738dd6340f3aeec1320d47b9c6928_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:b55bd4c4cab0f5277aca4573b676d595429b345df2de10f34ea1661b9c3b68d0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:f504360dffc0b90a4721394aa068ddb95038a6f1b3d6d6023d799d2b6ea4b739_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:cb02ee426076c69bda9459299653a67e19b84663d6b18d08f8ab47843d69e151_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:cc9cd14a515fd851ab843c62a6a3443f6ff2684710044d232a304caa18121e84_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:0546d72bd41c58d8094de7cc88d3e634ea75e4f3e7cb44ca8198cf1b2e5ab04c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:a8c11de11e7778c5357f962f731530c815ee73a519f54b7a71897092d1377796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:09522adc9acad2be18602e32991e68d0127f894460506e70aa86df54c20affd0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bcfa40dbf26735094fd0f6ac3cf1cad83b7539f8bc75d81eb64e0a19d97c1b1d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:f6d05e4d58c287bd21329a044848e47c197fc83e4af67f7e64306d95b69a6498_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:fb4a1d15131490352837f759ee7b2f7b55696f794a40ba786627a1cb615cfa64_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:031433fa156008a7ce297b63ede479a6efd8791f5c5ce4ceb9f132f209ff656c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:294ec77677a6481d4cfe216f425703b5476165ffe1ff86e835ec2becac8f7dca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:74298b0408210925cb94b412d12f5a16941e1fe5991c2cead3d26cd5c6ffb4cc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:a86dd4ae0fb2a6057eb30e594f7fc3c722f33dd554dff36aa498b15d8c1dcc13_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:0f89db43d98c11d69c2edb9d3fae3085d22a70b3de42a2f4e68969391b4565ea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:28aeb2ad9b5bd6bec712ef4dc3f773f5dedd47acd145bcd6007a1f9778bb07e6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:bc7715e7835899f6f3ef173778ce2d07e1a2d058b87031a6d7b2202a42ccef33_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:dd4b41d440d00aba3c6e30c2b1c116516402d7fb8e7c1ab10b97a4e8f4fc507e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3da13d1a5e673734b43f85ade4ae4d40575945a62e756563755c226783829959_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:44a56cd708f76ac94195de3861748ec1c5aaab4127a6e39f219635963722e395_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:4572a0ae30f3467cd7ae083acfc05ed045b5397ae284ca16c40886f6ae675baa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:9f1730db64403eefae6310cf58890d16a5e21aa1b9086028620cd6d29e6cd754_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:28a48ad6aff8602a5b59c2203047a598d5adfeea59503bbaad02d1e3986a2279_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:8c21500cbb9ee0973efb67aa8c32cc1359a94548b2c2a6386b30cbae695934ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:ae4d82e3713722e1aed6abc0a7ac1b08766fc24d64f3f3ba01f58dda96fc0408_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:3c89b10216b34a43128a9ffafcd10adb92517166554966b3f8b016679ee8d133_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9987c9ba25b20cf8e8bf11d388f03330358c1ca37e76724f5d229670d61580d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:bd0a7767d4dd5c049fcfa6a181fb4dc7b44149ab5790be1cec1b6525d9ba6cff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2d52d819f0a37f9df61dcf3ab118e4fc391fb434fc5703570161422df34d4461_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:37b9c5f1a90b03a883f0b1eed4333b2f12e5f13cc664d8335daa1cb8a3f26d64_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ab485d4b0369a967fbc4125ffa539f43b28f9ad7bf3ad0c5885bd86dee0214ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:f3092387090218098102e8eb44f1f4c05dcd62e5b31fbc00ac258684bb2a8609_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4f54178cce1ac5c8f00aa958d61f747402c0e4ef3d59f3c9afe7809353be45dc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d05d48ea317a9466c4f9e5cc9a1cd60422830da0eea823f686cd8d3aae317c00_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e7209fd84bb9522237f9caedb43e0dd27a93b63d9066dac1330e5f6974b89810_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:f50fa05848ec5ecb085b106903890d7c58d583c3d0b0697c9f739fc9fcef7a3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0538c3ce443ce61357594d15eb9e70a1a3dd2b3b0672e90ef0c0fb200c77f392_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:1bab45debd45c344b562c46d75c27540a1f05492028970f6991f9d30dfe680de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:23d3c2b463442f8c93706486e537be521a760e0fa51c75a2723f0fc1dbfe20ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:598b03d5232daa203ffcf4d772e7035ca2f51cd1b11a091dd6306a56a2c8615d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5e26da0b5c556d8015c8bd66f2f3d2ba103f58c138ca618448cd403d805c809d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:982b77ab4a9a65923c0720725a7e1b3978a4ef06c29ad240932ec119bf189a4e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:eee869f77558af2bc003569f17812b7d5897b38f4d7afb24cbf7d87adb6483af_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f71282ababe15f450e152270ca7a1fa1fee389c72717e5539ca443ef7a852fba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:549c32c61d6d2d538b9433af65debc4a576c25b88ec3bd868599dd2c50667e6a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6ab99bdcedbf6cd877158e15f398450e4d9386bba842eb2a778c88053e1b22a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:accb05d004c7bdd050b8949a882a788b4ec4199afb9d0bfdd3e96202ca2666d0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c414aa18fc8ef38befe69cab2e7cd12283cf8b3148c7a9596c9183c5f4ac49c4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:422185f18695351d07ef4afacb3122b6f1a680bb53e33c5674a76bc9ee61ea11_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:63c777b15d54d714c7d266dfb286592bc422b638bec176878fa2e0dcc44afd87_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:64e1a4e57dbbd35238fcdd3b80baf0281566a27ce76f2ad389fcc50a7a16c3ac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:cdc406a39b5241843f71964910bffd15bcd9ff3f4467e9b13bf6ea707bba3a8e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:7dfcc4fe44678675d4292555c78593b176bcb0e1ee7c1cdc83b8de3045ac3153_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:95f73756b6131fe9798ae620de689a405150ca71c60fd6413bb1174c0b7b732b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:d8e9ac204dd8c409f5cb2d732bfa2fe56688fbb9e285fc5b3557675b0b04363a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:40d03ceb295d791dd2929568883cb35fa1617090b85ba6e0fdadbad4778084f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4e72b1544de64ad3fa7eb5cea54d8504da71ac51271d6f27e719ababc4bd5c92_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:83c7234284d56d2ab10e7adf720aace8f950831003a6fea7f5fcf19203110d95_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c13d4ebf65e53ba5423c136c3aa5eecdc1c3026a48069d4583e7a242969f3c9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7ab32bd6127326b4219c0adb9859a3903e1615dc62ecfee18098e7f19bef509a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:c10950aab7a9a4b6f43328988cbfee1278ee0dacc3cd48d518a930b07d645ecc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:ea769d248ec228fa96e899a485342677caff1cbb34dc74cb373cc3458c97ea99_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:12d4819a8f33662442e84aebb4e099481ef42f30cccba5175268a5435a921279_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:936e5483a4b418d9b46f3c3e653edb306e2ef88b6bbee26ce75065aa092533a1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:9392a0e57be7343f36a7424e35dc41b57559948e2bebfe1d37525a3da8903016_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:adab22f8e3ea1497fec4af641e0cecfc922a853a712af64a05a5aeea4d008830_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1952fec37467f0d752c3aeae6f282a399fc970f7d229f21c2384fd868314064a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:4ee66eb652a105bdf389a10a2362e508fe4cb3b1c0c0f402bc5dd8c6b2e7d758_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:e9eae42d74c6bd619cc4ad405c84efceb1267f39872e30714c09eb21bdd9b136_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:f5645172fc671e0ff1b8473aaf65739d061d84566307bdd1a8e572740946a4df_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5f976edd69309183df47cafc509fa41dff74dcc7430bb3c60cd01f0720eb75af_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:6f048cdbce0b2c38f5e3067bb98b260abe3d6b29eb7ab2a4e114f0ce0d83be76_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:ac6996c6cbbc8cbc87565be6b954df6970fc1241b08ee1be91a3a0e6fdc1c204_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:c761558733b996cb74ea846b382ccd3cb3ebedc4358173803ea6d6f3e0ae8b63_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:299895c90d5969068dafb0e578fae619bc98c829bea7bad21de1d2093129d54d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:63e2494007e87dfe4efefe6fa2fb98280a98108742c1565fcdfc5bda797b9fe8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:e33eb2b816ed5a96728a61a016a373610f6acbdf8f269c690ae97d149743cffa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f9e6438d8bb8cb8a980030a214ad8352af9d9662792a944266b985ccd72b90d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:38b844901ee37dbc3dcca9756e76e10064f13a1ae2e823c9cf1d2bb6cd5e94a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:6acce2dad51b12eef8d27ba8e19cf63fe47a59fe4c8a26aac717be24738d3dba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7c091c88579324dd81748a32fccfc6f48717c79a50fcbe3413cbe86259e820c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:1ae5c0c51079200e965198572ccea4b6f3d4d5a7d154d731a541b2b0e67cc49b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:cf2c02d6b781c1d2ed134eacc01d93527f04d0b8ffb18ec36ae16437d7a75e09_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb279201c0d9fbec671e9ea30d6157c9a7b107eefb0129b3d0f01e532d23198_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:00f6e275dd5ce5afc901c13cd2f8cbf80b0801b6253275cd1204d2336361d2df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:3464fcfc3fb2f4ed2b5a7a288618dcd9ba8b13ea4740174450f718e3bc6ad19a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77530e04f1282819461d568c0b6c471ab678484c41f7ec0979daa6a6fe0fc832_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:2da1d802a74bd318f5cfa713525577919eb4298866e7ae2e9207b53df7c538a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:b91a49fdea8f50cfe136e98eb4acd4c4af81d95c73746ddfe8f0e8a4dbb07e09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:e7afc14ab6d21818d74c063e49e38685ff06c1515566d79245e9eac05b9d30fd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3d1608852ce75a2b49c3434f4e8ee7dda0d8be548e18476162e994791d623437_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5dc5786ad4606e2d7165afa3421ed865a19d4963253eedff5f86c43fcf488033_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c385f757788b60adc79613dad6cdc18145c4be72e5cbe4c3f687f15b67ce414a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:818464b1d00755f44c21057470d2035f12cc99d383a0b84dcfd6d15738a0c022_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b57c0cf0a47e13787a17ef149145187e5bee297a018decf1d4c662458dd9eb60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ed7a27693b8ce6145d0dfed31c9322cf65e938c8686075f6fbc574d97c96b0b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:01ac980555c97d1bcf57ced77784a06f8ddb8642abf50d907e89d0d57615799c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7953533d7dbba90dbe9057e7a6df5069047f78677aa9efcbd41175526238c45e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:c30984f2a78b187044a36e3547869b019089209b775f6059b9b8f72d9b020e0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:3e546832162068b5d956ad5d4ef47eb47d31f109bd8ec5be554a557e74b861a1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:62538913a5cab44dc1684b844eebdc07e50bec986279b1992fbe1b67e25fd5dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6e1bff042795d74a89f6131141b0823f618f605868f53ddcb86a42711628d45d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:9fb670d43654f2e312606d55c7a4a24701dd06cd99abd032ac3218db62b7b80b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1e5df4b408114deeccff4a9529e40fc1961302171a92361a8bfc4db21425bfac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2733973ad952cc77643356c918f34d16a6decd25c47b2f752d42fd75f3724f9c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:781eed024814a6e7b9531a10e3a4c94fa4b378134f67c8b7fd7d723bea6b7d07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:c2023cbf079d625f3d321a8ef1bfa23e993f555c67e593d677b79356bf3a0807_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b42061c6aaba87aa86d88f54cc86dcec56015a74576cb63de5294d5f5b7090ae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b640235198fb64e5b6ed7c913fc372c773e69342bb319226919f3c2060cebe79_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:c090ede014662ec44a92e12a346d4f58e3f7834f103101e54946159fb3c7f4a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:c3d6bd5dcaf2551190cf1535ee45bce23b95eacccf89eab4d99e6f642dc51506_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:75b28916972d49f8dea1080a7159a2293dc8b32259e3dc7f3b23774dc7ea0d37_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:aa7de77cdb1a6fb1cf51c986fbbd6517753cc49bff44d995a13dde578a118e60_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:cd6c55b0d09b7a02869d615361bfe8a5a10719b292d5fb3a733a7228a1729181_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e679006db13dd82f7fe440c3c0fa94bcdfa96393a4927ec0c30987de04c1611a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:294d787e27c198b1cff83436fa229af1981b408ce06eee41f539aeb20e32954e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3c2071f6c2c80483afe745c5a5ba8b51e9976171d84e01a1189288c4cda3b811_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:5094c9335393938c6aa2d586963ed3f6db302d14f1a2e4480284b81df1e06b34_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2165c8f2bfcc8f943f3a4e8d30b926ae4e1ba55af9ca28c7185de0141bb48032_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:399028b92bf1ec4a6fb7c8b171fe92845433172f494cf933dca5d778eb067a5c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:61e4e758b278a31cca08c998b58652bd696ba97c195574520b2e5ceeced97de9_amd64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.19.29 is now available with updates to packages and images that fix several bugs.\n\nThis release includes a security update for Red Hat OpenShift Container Platform 4.19.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the RPM packages for Red Hat OpenShift Container Platform 4.19.29. See the following advisory for the container images for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:10093\n\nSecurity Fix(es):\n\n* google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation (CVE-2026-33186)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.\n\nAll OpenShift Container Platform 4.19 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html-single/updating_clusters/index#updating-cluster-cli.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:10094",
"url": "https://access.redhat.com/errata/RHSA-2026:10094"
},
{
"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_10094.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.19.29 security and extras update",
"tracking": {
"current_release_date": "2026-06-28T21:15:01+00:00",
"generator": {
"date": "2026-06-28T21:15:01+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:10094",
"initial_release_date": "2026-04-29T07:27:54+00:00",
"revision_history": [
{
"date": "2026-04-29T07:27:54+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-04-29T07:28:27+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-28T21:15:01+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.19",
"product": {
"name": "Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.19::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:fec596fdba12eef010aea34b308282370242e96ff65cff8936e28369702079f6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:fec596fdba12eef010aea34b308282370242e96ff65cff8936e28369702079f6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:fec596fdba12eef010aea34b308282370242e96ff65cff8936e28369702079f6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3Afec596fdba12eef010aea34b308282370242e96ff65cff8936e28369702079f6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776667585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:c8b1c0c42003158da4042929ed9b598a0c5dad70ed87163ef72cb13657de0e52_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:c8b1c0c42003158da4042929ed9b598a0c5dad70ed87163ef72cb13657de0e52_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:c8b1c0c42003158da4042929ed9b598a0c5dad70ed87163ef72cb13657de0e52_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3Ac8b1c0c42003158da4042929ed9b598a0c5dad70ed87163ef72cb13657de0e52?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675663"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8ffcbc96bdd5e6b4f55d1fa1e4cdc4acfbc2d4f62705fc13e3b0a37dcb08eff9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8ffcbc96bdd5e6b4f55d1fa1e4cdc4acfbc2d4f62705fc13e3b0a37dcb08eff9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8ffcbc96bdd5e6b4f55d1fa1e4cdc4acfbc2d4f62705fc13e3b0a37dcb08eff9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A8ffcbc96bdd5e6b4f55d1fa1e4cdc4acfbc2d4f62705fc13e3b0a37dcb08eff9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673823"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:cf7f6124729e761b1acab5f7ea343365bf66942c85fe92b030ad568cb20a8e08_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:cf7f6124729e761b1acab5f7ea343365bf66942c85fe92b030ad568cb20a8e08_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:cf7f6124729e761b1acab5f7ea343365bf66942c85fe92b030ad568cb20a8e08_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3Acf7f6124729e761b1acab5f7ea343365bf66942c85fe92b030ad568cb20a8e08?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674237"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:c561564a9eda424df7392e4f220c80ae4f8b7fda8de60157d5ddbd65d5135f27_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:c561564a9eda424df7392e4f220c80ae4f8b7fda8de60157d5ddbd65d5135f27_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:c561564a9eda424df7392e4f220c80ae4f8b7fda8de60157d5ddbd65d5135f27_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3Ac561564a9eda424df7392e4f220c80ae4f8b7fda8de60157d5ddbd65d5135f27?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673935"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5a93d29002aa07e5f503916b106a0d97d43738dd6340f3aeec1320d47b9c6928_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5a93d29002aa07e5f503916b106a0d97d43738dd6340f3aeec1320d47b9c6928_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5a93d29002aa07e5f503916b106a0d97d43738dd6340f3aeec1320d47b9c6928_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A5a93d29002aa07e5f503916b106a0d97d43738dd6340f3aeec1320d47b9c6928?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673817"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:cb02ee426076c69bda9459299653a67e19b84663d6b18d08f8ab47843d69e151_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:cb02ee426076c69bda9459299653a67e19b84663d6b18d08f8ab47843d69e151_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:cb02ee426076c69bda9459299653a67e19b84663d6b18d08f8ab47843d69e151_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-ipu-p4sdk-rhel9@sha256%3Acb02ee426076c69bda9459299653a67e19b84663d6b18d08f8ab47843d69e151?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776666707"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:a8c11de11e7778c5357f962f731530c815ee73a519f54b7a71897092d1377796_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:a8c11de11e7778c5357f962f731530c815ee73a519f54b7a71897092d1377796_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:a8c11de11e7778c5357f962f731530c815ee73a519f54b7a71897092d1377796_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-ipu-vsp-rhel9@sha256%3Aa8c11de11e7778c5357f962f731530c815ee73a519f54b7a71897092d1377796?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776666590"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:f6d05e4d58c287bd21329a044848e47c197fc83e4af67f7e64306d95b69a6498_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:f6d05e4d58c287bd21329a044848e47c197fc83e4af67f7e64306d95b69a6498_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:f6d05e4d58c287bd21329a044848e47c197fc83e4af67f7e64306d95b69a6498_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3Af6d05e4d58c287bd21329a044848e47c197fc83e4af67f7e64306d95b69a6498?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:cf2c02d6b781c1d2ed134eacc01d93527f04d0b8ffb18ec36ae16437d7a75e09_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:cf2c02d6b781c1d2ed134eacc01d93527f04d0b8ffb18ec36ae16437d7a75e09_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:cf2c02d6b781c1d2ed134eacc01d93527f04d0b8ffb18ec36ae16437d7a75e09_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3Acf2c02d6b781c1d2ed134eacc01d93527f04d0b8ffb18ec36ae16437d7a75e09?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:816548bd51389d5cc6f6354d3893d252d3201e4bf96593e91259104e81d67759_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:816548bd51389d5cc6f6354d3893d252d3201e4bf96593e91259104e81d67759_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:816548bd51389d5cc6f6354d3893d252d3201e4bf96593e91259104e81d67759_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A816548bd51389d5cc6f6354d3893d252d3201e4bf96593e91259104e81d67759?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673788"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d717c8260a3499f114f146efe58afc1137caa648dc2c57791fa31bd6554ae458_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d717c8260a3499f114f146efe58afc1137caa648dc2c57791fa31bd6554ae458_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d717c8260a3499f114f146efe58afc1137caa648dc2c57791fa31bd6554ae458_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Ad717c8260a3499f114f146efe58afc1137caa648dc2c57791fa31bd6554ae458?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8cde7c931c746c4428bf22d9dcdd8caf518e4273bcc2b88c8c3cb025b445fbec_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8cde7c931c746c4428bf22d9dcdd8caf518e4273bcc2b88c8c3cb025b445fbec_amd64",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8cde7c931c746c4428bf22d9dcdd8caf518e4273bcc2b88c8c3cb025b445fbec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3A8cde7c931c746c4428bf22d9dcdd8caf518e4273bcc2b88c8c3cb025b445fbec?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:40d03ceb295d791dd2929568883cb35fa1617090b85ba6e0fdadbad4778084f5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:40d03ceb295d791dd2929568883cb35fa1617090b85ba6e0fdadbad4778084f5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:40d03ceb295d791dd2929568883cb35fa1617090b85ba6e0fdadbad4778084f5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A40d03ceb295d791dd2929568883cb35fa1617090b85ba6e0fdadbad4778084f5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683750"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:1bab45debd45c344b562c46d75c27540a1f05492028970f6991f9d30dfe680de_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:1bab45debd45c344b562c46d75c27540a1f05492028970f6991f9d30dfe680de_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:1bab45debd45c344b562c46d75c27540a1f05492028970f6991f9d30dfe680de_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A1bab45debd45c344b562c46d75c27540a1f05492028970f6991f9d30dfe680de?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673964"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f71282ababe15f450e152270ca7a1fa1fee389c72717e5539ca443ef7a852fba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f71282ababe15f450e152270ca7a1fa1fee389c72717e5539ca443ef7a852fba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f71282ababe15f450e152270ca7a1fa1fee389c72717e5539ca443ef7a852fba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3Af71282ababe15f450e152270ca7a1fa1fee389c72717e5539ca443ef7a852fba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683758"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:549c32c61d6d2d538b9433af65debc4a576c25b88ec3bd868599dd2c50667e6a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:549c32c61d6d2d538b9433af65debc4a576c25b88ec3bd868599dd2c50667e6a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:549c32c61d6d2d538b9433af65debc4a576c25b88ec3bd868599dd2c50667e6a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A549c32c61d6d2d538b9433af65debc4a576c25b88ec3bd868599dd2c50667e6a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683735"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:5e1d0d8d79e70eb5ca5bc971b767a108244edfdfa08aa4f9b1a1a7ea714b11e3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:5e1d0d8d79e70eb5ca5bc971b767a108244edfdfa08aa4f9b1a1a7ea714b11e3_amd64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:5e1d0d8d79e70eb5ca5bc971b767a108244edfdfa08aa4f9b1a1a7ea714b11e3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3A5e1d0d8d79e70eb5ca5bc971b767a108244edfdfa08aa4f9b1a1a7ea714b11e3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683801"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:64e1a4e57dbbd35238fcdd3b80baf0281566a27ce76f2ad389fcc50a7a16c3ac_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:64e1a4e57dbbd35238fcdd3b80baf0281566a27ce76f2ad389fcc50a7a16c3ac_amd64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:64e1a4e57dbbd35238fcdd3b80baf0281566a27ce76f2ad389fcc50a7a16c3ac_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A64e1a4e57dbbd35238fcdd3b80baf0281566a27ce76f2ad389fcc50a7a16c3ac?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:db4b25de2051b1762ff366ffca0e6f93f4f810f0ea38cb2c7803adf019f840f4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:db4b25de2051b1762ff366ffca0e6f93f4f810f0ea38cb2c7803adf019f840f4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:db4b25de2051b1762ff366ffca0e6f93f4f810f0ea38cb2c7803adf019f840f4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3Adb4b25de2051b1762ff366ffca0e6f93f4f810f0ea38cb2c7803adf019f840f4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674327"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:0a07ba50051553c3dcff9068c9040dfa8775fc128bac0784900ba4863fa81609_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:0a07ba50051553c3dcff9068c9040dfa8775fc128bac0784900ba4863fa81609_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:0a07ba50051553c3dcff9068c9040dfa8775fc128bac0784900ba4863fa81609_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A0a07ba50051553c3dcff9068c9040dfa8775fc128bac0784900ba4863fa81609?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675138"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:a86dd4ae0fb2a6057eb30e594f7fc3c722f33dd554dff36aa498b15d8c1dcc13_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:a86dd4ae0fb2a6057eb30e594f7fc3c722f33dd554dff36aa498b15d8c1dcc13_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:a86dd4ae0fb2a6057eb30e594f7fc3c722f33dd554dff36aa498b15d8c1dcc13_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3Aa86dd4ae0fb2a6057eb30e594f7fc3c722f33dd554dff36aa498b15d8c1dcc13?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:4572a0ae30f3467cd7ae083acfc05ed045b5397ae284ca16c40886f6ae675baa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:4572a0ae30f3467cd7ae083acfc05ed045b5397ae284ca16c40886f6ae675baa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:4572a0ae30f3467cd7ae083acfc05ed045b5397ae284ca16c40886f6ae675baa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3A4572a0ae30f3467cd7ae083acfc05ed045b5397ae284ca16c40886f6ae675baa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675011"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:37b9c5f1a90b03a883f0b1eed4333b2f12e5f13cc664d8335daa1cb8a3f26d64_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:37b9c5f1a90b03a883f0b1eed4333b2f12e5f13cc664d8335daa1cb8a3f26d64_amd64",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:37b9c5f1a90b03a883f0b1eed4333b2f12e5f13cc664d8335daa1cb8a3f26d64_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A37b9c5f1a90b03a883f0b1eed4333b2f12e5f13cc664d8335daa1cb8a3f26d64?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d05d48ea317a9466c4f9e5cc9a1cd60422830da0eea823f686cd8d3aae317c00_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d05d48ea317a9466c4f9e5cc9a1cd60422830da0eea823f686cd8d3aae317c00_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d05d48ea317a9466c4f9e5cc9a1cd60422830da0eea823f686cd8d3aae317c00_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Ad05d48ea317a9466c4f9e5cc9a1cd60422830da0eea823f686cd8d3aae317c00?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673648"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c042aafcfd8feb67684753e52602431b1181621acdcc9e61fae9601961637ff6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c042aafcfd8feb67684753e52602431b1181621acdcc9e61fae9601961637ff6_amd64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c042aafcfd8feb67684753e52602431b1181621acdcc9e61fae9601961637ff6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3Ac042aafcfd8feb67684753e52602431b1181621acdcc9e61fae9601961637ff6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:16b358289777243a6763223070dd0012a1ef5733ed810ba27aee168ecbf0a9eb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:16b358289777243a6763223070dd0012a1ef5733ed810ba27aee168ecbf0a9eb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:16b358289777243a6763223070dd0012a1ef5733ed810ba27aee168ecbf0a9eb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel9@sha256%3A16b358289777243a6763223070dd0012a1ef5733ed810ba27aee168ecbf0a9eb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776667782"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:541fb836a9c207e030f91060fe9bd31dd1cfa8900a1b74463f9858cc36d97ed2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:541fb836a9c207e030f91060fe9bd31dd1cfa8900a1b74463f9858cc36d97ed2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:541fb836a9c207e030f91060fe9bd31dd1cfa8900a1b74463f9858cc36d97ed2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel9-operator@sha256%3A541fb836a9c207e030f91060fe9bd31dd1cfa8900a1b74463f9858cc36d97ed2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673268"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:dd4b41d440d00aba3c6e30c2b1c116516402d7fb8e7c1ab10b97a4e8f4fc507e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:dd4b41d440d00aba3c6e30c2b1c116516402d7fb8e7c1ab10b97a4e8f4fc507e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:dd4b41d440d00aba3c6e30c2b1c116516402d7fb8e7c1ab10b97a4e8f4fc507e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3Add4b41d440d00aba3c6e30c2b1c116516402d7fb8e7c1ab10b97a4e8f4fc507e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675096"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:3c89b10216b34a43128a9ffafcd10adb92517166554966b3f8b016679ee8d133_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:3c89b10216b34a43128a9ffafcd10adb92517166554966b3f8b016679ee8d133_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:3c89b10216b34a43128a9ffafcd10adb92517166554966b3f8b016679ee8d133_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3A3c89b10216b34a43128a9ffafcd10adb92517166554966b3f8b016679ee8d133?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776667623"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:8c21500cbb9ee0973efb67aa8c32cc1359a94548b2c2a6386b30cbae695934ba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:8c21500cbb9ee0973efb67aa8c32cc1359a94548b2c2a6386b30cbae695934ba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:8c21500cbb9ee0973efb67aa8c32cc1359a94548b2c2a6386b30cbae695934ba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3A8c21500cbb9ee0973efb67aa8c32cc1359a94548b2c2a6386b30cbae695934ba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673277"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:ab33e7aa29a7001f8d86575f885e9b6d38ba4d7f0954539757817aeba480e524_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:ab33e7aa29a7001f8d86575f885e9b6d38ba4d7f0954539757817aeba480e524_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:ab33e7aa29a7001f8d86575f885e9b6d38ba4d7f0954539757817aeba480e524_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Aab33e7aa29a7001f8d86575f885e9b6d38ba4d7f0954539757817aeba480e524?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673481"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:64edff7956f6b9a8e508080dd1ff3db9dcf4646a5945e4f5a568ff9de8479598_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:64edff7956f6b9a8e508080dd1ff3db9dcf4646a5945e4f5a568ff9de8479598_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:64edff7956f6b9a8e508080dd1ff3db9dcf4646a5945e4f5a568ff9de8479598_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A64edff7956f6b9a8e508080dd1ff3db9dcf4646a5945e4f5a568ff9de8479598?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673635"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:12d4819a8f33662442e84aebb4e099481ef42f30cccba5175268a5435a921279_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:12d4819a8f33662442e84aebb4e099481ef42f30cccba5175268a5435a921279_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:12d4819a8f33662442e84aebb4e099481ef42f30cccba5175268a5435a921279_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A12d4819a8f33662442e84aebb4e099481ef42f30cccba5175268a5435a921279?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7ab32bd6127326b4219c0adb9859a3903e1615dc62ecfee18098e7f19bef509a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7ab32bd6127326b4219c0adb9859a3903e1615dc62ecfee18098e7f19bef509a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7ab32bd6127326b4219c0adb9859a3903e1615dc62ecfee18098e7f19bef509a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A7ab32bd6127326b4219c0adb9859a3903e1615dc62ecfee18098e7f19bef509a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675879"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:4ee66eb652a105bdf389a10a2362e508fe4cb3b1c0c0f402bc5dd8c6b2e7d758_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:4ee66eb652a105bdf389a10a2362e508fe4cb3b1c0c0f402bc5dd8c6b2e7d758_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:4ee66eb652a105bdf389a10a2362e508fe4cb3b1c0c0f402bc5dd8c6b2e7d758_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A4ee66eb652a105bdf389a10a2362e508fe4cb3b1c0c0f402bc5dd8c6b2e7d758?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675508"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:299895c90d5969068dafb0e578fae619bc98c829bea7bad21de1d2093129d54d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:299895c90d5969068dafb0e578fae619bc98c829bea7bad21de1d2093129d54d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:299895c90d5969068dafb0e578fae619bc98c829bea7bad21de1d2093129d54d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A299895c90d5969068dafb0e578fae619bc98c829bea7bad21de1d2093129d54d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673372"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:6f048cdbce0b2c38f5e3067bb98b260abe3d6b29eb7ab2a4e114f0ce0d83be76_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:6f048cdbce0b2c38f5e3067bb98b260abe3d6b29eb7ab2a4e114f0ce0d83be76_amd64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:6f048cdbce0b2c38f5e3067bb98b260abe3d6b29eb7ab2a4e114f0ce0d83be76_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A6f048cdbce0b2c38f5e3067bb98b260abe3d6b29eb7ab2a4e114f0ce0d83be76?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:2da1d802a74bd318f5cfa713525577919eb4298866e7ae2e9207b53df7c538a8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:2da1d802a74bd318f5cfa713525577919eb4298866e7ae2e9207b53df7c538a8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:2da1d802a74bd318f5cfa713525577919eb4298866e7ae2e9207b53df7c538a8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A2da1d802a74bd318f5cfa713525577919eb4298866e7ae2e9207b53df7c538a8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673886"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7953533d7dbba90dbe9057e7a6df5069047f78677aa9efcbd41175526238c45e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7953533d7dbba90dbe9057e7a6df5069047f78677aa9efcbd41175526238c45e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7953533d7dbba90dbe9057e7a6df5069047f78677aa9efcbd41175526238c45e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A7953533d7dbba90dbe9057e7a6df5069047f78677aa9efcbd41175526238c45e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673270"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:75b28916972d49f8dea1080a7159a2293dc8b32259e3dc7f3b23774dc7ea0d37_amd64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:75b28916972d49f8dea1080a7159a2293dc8b32259e3dc7f3b23774dc7ea0d37_amd64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:75b28916972d49f8dea1080a7159a2293dc8b32259e3dc7f3b23774dc7ea0d37_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3A75b28916972d49f8dea1080a7159a2293dc8b32259e3dc7f3b23774dc7ea0d37?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b640235198fb64e5b6ed7c913fc372c773e69342bb319226919f3c2060cebe79_amd64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b640235198fb64e5b6ed7c913fc372c773e69342bb319226919f3c2060cebe79_amd64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b640235198fb64e5b6ed7c913fc372c773e69342bb319226919f3c2060cebe79_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3Ab640235198fb64e5b6ed7c913fc372c773e69342bb319226919f3c2060cebe79?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675880"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:d8e9ac204dd8c409f5cb2d732bfa2fe56688fbb9e285fc5b3557675b0b04363a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:d8e9ac204dd8c409f5cb2d732bfa2fe56688fbb9e285fc5b3557675b0b04363a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:d8e9ac204dd8c409f5cb2d732bfa2fe56688fbb9e285fc5b3557675b0b04363a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3Ad8e9ac204dd8c409f5cb2d732bfa2fe56688fbb9e285fc5b3557675b0b04363a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683732"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:5094c9335393938c6aa2d586963ed3f6db302d14f1a2e4480284b81df1e06b34_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:5094c9335393938c6aa2d586963ed3f6db302d14f1a2e4480284b81df1e06b34_amd64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:5094c9335393938c6aa2d586963ed3f6db302d14f1a2e4480284b81df1e06b34_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A5094c9335393938c6aa2d586963ed3f6db302d14f1a2e4480284b81df1e06b34?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:61e4e758b278a31cca08c998b58652bd696ba97c195574520b2e5ceeced97de9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:61e4e758b278a31cca08c998b58652bd696ba97c195574520b2e5ceeced97de9_amd64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:61e4e758b278a31cca08c998b58652bd696ba97c195574520b2e5ceeced97de9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A61e4e758b278a31cca08c998b58652bd696ba97c195574520b2e5ceeced97de9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776667605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7c091c88579324dd81748a32fccfc6f48717c79a50fcbe3413cbe86259e820c7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7c091c88579324dd81748a32fccfc6f48717c79a50fcbe3413cbe86259e820c7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7c091c88579324dd81748a32fccfc6f48717c79a50fcbe3413cbe86259e820c7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A7c091c88579324dd81748a32fccfc6f48717c79a50fcbe3413cbe86259e820c7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776667771"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:00f6e275dd5ce5afc901c13cd2f8cbf80b0801b6253275cd1204d2336361d2df_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:00f6e275dd5ce5afc901c13cd2f8cbf80b0801b6253275cd1204d2336361d2df_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:00f6e275dd5ce5afc901c13cd2f8cbf80b0801b6253275cd1204d2336361d2df_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A00f6e275dd5ce5afc901c13cd2f8cbf80b0801b6253275cd1204d2336361d2df?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c5c6c5f957b61fac8e6d232de221b97dddea47eafdfb0774361badc893a05e5e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c5c6c5f957b61fac8e6d232de221b97dddea47eafdfb0774361badc893a05e5e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c5c6c5f957b61fac8e6d232de221b97dddea47eafdfb0774361badc893a05e5e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3Ac5c6c5f957b61fac8e6d232de221b97dddea47eafdfb0774361badc893a05e5e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c385f757788b60adc79613dad6cdc18145c4be72e5cbe4c3f687f15b67ce414a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c385f757788b60adc79613dad6cdc18145c4be72e5cbe4c3f687f15b67ce414a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c385f757788b60adc79613dad6cdc18145c4be72e5cbe4c3f687f15b67ce414a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3Ac385f757788b60adc79613dad6cdc18145c4be72e5cbe4c3f687f15b67ce414a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673219"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b57c0cf0a47e13787a17ef149145187e5bee297a018decf1d4c662458dd9eb60_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b57c0cf0a47e13787a17ef149145187e5bee297a018decf1d4c662458dd9eb60_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b57c0cf0a47e13787a17ef149145187e5bee297a018decf1d4c662458dd9eb60_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3Ab57c0cf0a47e13787a17ef149145187e5bee297a018decf1d4c662458dd9eb60?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:781eed024814a6e7b9531a10e3a4c94fa4b378134f67c8b7fd7d723bea6b7d07_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:781eed024814a6e7b9531a10e3a4c94fa4b378134f67c8b7fd7d723bea6b7d07_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:781eed024814a6e7b9531a10e3a4c94fa4b378134f67c8b7fd7d723bea6b7d07_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A781eed024814a6e7b9531a10e3a4c94fa4b378134f67c8b7fd7d723bea6b7d07?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:62538913a5cab44dc1684b844eebdc07e50bec986279b1992fbe1b67e25fd5dd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:62538913a5cab44dc1684b844eebdc07e50bec986279b1992fbe1b67e25fd5dd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:62538913a5cab44dc1684b844eebdc07e50bec986279b1992fbe1b67e25fd5dd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A62538913a5cab44dc1684b844eebdc07e50bec986279b1992fbe1b67e25fd5dd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673965"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:89ae87596cb9e3524dbb1cafeb8133e1d9a3a3aa9e8ea039b804f40cf44e1c9c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:89ae87596cb9e3524dbb1cafeb8133e1d9a3a3aa9e8ea039b804f40cf44e1c9c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:89ae87596cb9e3524dbb1cafeb8133e1d9a3a3aa9e8ea039b804f40cf44e1c9c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3A89ae87596cb9e3524dbb1cafeb8133e1d9a3a3aa9e8ea039b804f40cf44e1c9c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776667585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:503f0ab56d42395194dc5f050b43ec4fb69414750630e76a2634d881e2bd671f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:503f0ab56d42395194dc5f050b43ec4fb69414750630e76a2634d881e2bd671f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:503f0ab56d42395194dc5f050b43ec4fb69414750630e76a2634d881e2bd671f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A503f0ab56d42395194dc5f050b43ec4fb69414750630e76a2634d881e2bd671f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675663"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:db7c9685d5a8c1bafb226e2673a69bac67691768338bb42a3b8d278bd9ed813f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:db7c9685d5a8c1bafb226e2673a69bac67691768338bb42a3b8d278bd9ed813f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:db7c9685d5a8c1bafb226e2673a69bac67691768338bb42a3b8d278bd9ed813f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3Adb7c9685d5a8c1bafb226e2673a69bac67691768338bb42a3b8d278bd9ed813f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673823"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:3406801cb156af01e2c4f78dec2e1a4f9a5bb881dd2fb4268dd621435e634b93_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:3406801cb156af01e2c4f78dec2e1a4f9a5bb881dd2fb4268dd621435e634b93_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:3406801cb156af01e2c4f78dec2e1a4f9a5bb881dd2fb4268dd621435e634b93_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A3406801cb156af01e2c4f78dec2e1a4f9a5bb881dd2fb4268dd621435e634b93?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674237"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e11806e1270b7734a3a1306f0a69d4b5337450e95b29b9b495a7d9670e99f0c8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e11806e1270b7734a3a1306f0a69d4b5337450e95b29b9b495a7d9670e99f0c8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e11806e1270b7734a3a1306f0a69d4b5337450e95b29b9b495a7d9670e99f0c8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3Ae11806e1270b7734a3a1306f0a69d4b5337450e95b29b9b495a7d9670e99f0c8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673935"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:f504360dffc0b90a4721394aa068ddb95038a6f1b3d6d6023d799d2b6ea4b739_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:f504360dffc0b90a4721394aa068ddb95038a6f1b3d6d6023d799d2b6ea4b739_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:f504360dffc0b90a4721394aa068ddb95038a6f1b3d6d6023d799d2b6ea4b739_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3Af504360dffc0b90a4721394aa068ddb95038a6f1b3d6d6023d799d2b6ea4b739?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673817"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:cc9cd14a515fd851ab843c62a6a3443f6ff2684710044d232a304caa18121e84_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:cc9cd14a515fd851ab843c62a6a3443f6ff2684710044d232a304caa18121e84_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:cc9cd14a515fd851ab843c62a6a3443f6ff2684710044d232a304caa18121e84_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-ipu-p4sdk-rhel9@sha256%3Acc9cd14a515fd851ab843c62a6a3443f6ff2684710044d232a304caa18121e84?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776666707"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:0546d72bd41c58d8094de7cc88d3e634ea75e4f3e7cb44ca8198cf1b2e5ab04c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:0546d72bd41c58d8094de7cc88d3e634ea75e4f3e7cb44ca8198cf1b2e5ab04c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:0546d72bd41c58d8094de7cc88d3e634ea75e4f3e7cb44ca8198cf1b2e5ab04c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-ipu-vsp-rhel9@sha256%3A0546d72bd41c58d8094de7cc88d3e634ea75e4f3e7cb44ca8198cf1b2e5ab04c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776666590"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bcfa40dbf26735094fd0f6ac3cf1cad83b7539f8bc75d81eb64e0a19d97c1b1d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bcfa40dbf26735094fd0f6ac3cf1cad83b7539f8bc75d81eb64e0a19d97c1b1d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bcfa40dbf26735094fd0f6ac3cf1cad83b7539f8bc75d81eb64e0a19d97c1b1d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3Abcfa40dbf26735094fd0f6ac3cf1cad83b7539f8bc75d81eb64e0a19d97c1b1d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb279201c0d9fbec671e9ea30d6157c9a7b107eefb0129b3d0f01e532d23198_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb279201c0d9fbec671e9ea30d6157c9a7b107eefb0129b3d0f01e532d23198_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb279201c0d9fbec671e9ea30d6157c9a7b107eefb0129b3d0f01e532d23198_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3Afdb279201c0d9fbec671e9ea30d6157c9a7b107eefb0129b3d0f01e532d23198?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:826d0571835e3585f7709f36b8319ef8ddf4e8ef8a529e89728b20f35399f1dc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:826d0571835e3585f7709f36b8319ef8ddf4e8ef8a529e89728b20f35399f1dc_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:826d0571835e3585f7709f36b8319ef8ddf4e8ef8a529e89728b20f35399f1dc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A826d0571835e3585f7709f36b8319ef8ddf4e8ef8a529e89728b20f35399f1dc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673788"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:27045aabfee1bef5a0e5fe7c8d87998b5d085e90914cf0cc879be88a0b289f32_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:27045aabfee1bef5a0e5fe7c8d87998b5d085e90914cf0cc879be88a0b289f32_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:27045aabfee1bef5a0e5fe7c8d87998b5d085e90914cf0cc879be88a0b289f32_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A27045aabfee1bef5a0e5fe7c8d87998b5d085e90914cf0cc879be88a0b289f32?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:893e94bcd1ea377a5f2bae00dee9030dace7eef11fc6e54229e00472ac210ec2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:893e94bcd1ea377a5f2bae00dee9030dace7eef11fc6e54229e00472ac210ec2_arm64",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:893e94bcd1ea377a5f2bae00dee9030dace7eef11fc6e54229e00472ac210ec2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3A893e94bcd1ea377a5f2bae00dee9030dace7eef11fc6e54229e00472ac210ec2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4e72b1544de64ad3fa7eb5cea54d8504da71ac51271d6f27e719ababc4bd5c92_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4e72b1544de64ad3fa7eb5cea54d8504da71ac51271d6f27e719ababc4bd5c92_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4e72b1544de64ad3fa7eb5cea54d8504da71ac51271d6f27e719ababc4bd5c92_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A4e72b1544de64ad3fa7eb5cea54d8504da71ac51271d6f27e719ababc4bd5c92?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683750"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:598b03d5232daa203ffcf4d772e7035ca2f51cd1b11a091dd6306a56a2c8615d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:598b03d5232daa203ffcf4d772e7035ca2f51cd1b11a091dd6306a56a2c8615d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:598b03d5232daa203ffcf4d772e7035ca2f51cd1b11a091dd6306a56a2c8615d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A598b03d5232daa203ffcf4d772e7035ca2f51cd1b11a091dd6306a56a2c8615d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673964"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:eee869f77558af2bc003569f17812b7d5897b38f4d7afb24cbf7d87adb6483af_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:eee869f77558af2bc003569f17812b7d5897b38f4d7afb24cbf7d87adb6483af_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:eee869f77558af2bc003569f17812b7d5897b38f4d7afb24cbf7d87adb6483af_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3Aeee869f77558af2bc003569f17812b7d5897b38f4d7afb24cbf7d87adb6483af?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683758"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6ab99bdcedbf6cd877158e15f398450e4d9386bba842eb2a778c88053e1b22a4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6ab99bdcedbf6cd877158e15f398450e4d9386bba842eb2a778c88053e1b22a4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6ab99bdcedbf6cd877158e15f398450e4d9386bba842eb2a778c88053e1b22a4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A6ab99bdcedbf6cd877158e15f398450e4d9386bba842eb2a778c88053e1b22a4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683735"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1e9f84c94a6f2320b18d426e34ce5614585a785b0d260706fb7b3e2ed653df5e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1e9f84c94a6f2320b18d426e34ce5614585a785b0d260706fb7b3e2ed653df5e_arm64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1e9f84c94a6f2320b18d426e34ce5614585a785b0d260706fb7b3e2ed653df5e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3A1e9f84c94a6f2320b18d426e34ce5614585a785b0d260706fb7b3e2ed653df5e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683801"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:cdc406a39b5241843f71964910bffd15bcd9ff3f4467e9b13bf6ea707bba3a8e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:cdc406a39b5241843f71964910bffd15bcd9ff3f4467e9b13bf6ea707bba3a8e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:cdc406a39b5241843f71964910bffd15bcd9ff3f4467e9b13bf6ea707bba3a8e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3Acdc406a39b5241843f71964910bffd15bcd9ff3f4467e9b13bf6ea707bba3a8e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:e2160827e92d2fbbb7e624fe92e762b3b50320fafb76ede4f66b882228b78540_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:e2160827e92d2fbbb7e624fe92e762b3b50320fafb76ede4f66b882228b78540_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:e2160827e92d2fbbb7e624fe92e762b3b50320fafb76ede4f66b882228b78540_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3Ae2160827e92d2fbbb7e624fe92e762b3b50320fafb76ede4f66b882228b78540?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674327"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:67eb2f9fffe76c2e3bb133c7c4a2cec0178e3ee0076ddfc18b08bcda407940b5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:67eb2f9fffe76c2e3bb133c7c4a2cec0178e3ee0076ddfc18b08bcda407940b5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:67eb2f9fffe76c2e3bb133c7c4a2cec0178e3ee0076ddfc18b08bcda407940b5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A67eb2f9fffe76c2e3bb133c7c4a2cec0178e3ee0076ddfc18b08bcda407940b5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675138"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:031433fa156008a7ce297b63ede479a6efd8791f5c5ce4ceb9f132f209ff656c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:031433fa156008a7ce297b63ede479a6efd8791f5c5ce4ceb9f132f209ff656c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:031433fa156008a7ce297b63ede479a6efd8791f5c5ce4ceb9f132f209ff656c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3A031433fa156008a7ce297b63ede479a6efd8791f5c5ce4ceb9f132f209ff656c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3da13d1a5e673734b43f85ade4ae4d40575945a62e756563755c226783829959_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3da13d1a5e673734b43f85ade4ae4d40575945a62e756563755c226783829959_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3da13d1a5e673734b43f85ade4ae4d40575945a62e756563755c226783829959_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3A3da13d1a5e673734b43f85ade4ae4d40575945a62e756563755c226783829959?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675011"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ab485d4b0369a967fbc4125ffa539f43b28f9ad7bf3ad0c5885bd86dee0214ef_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ab485d4b0369a967fbc4125ffa539f43b28f9ad7bf3ad0c5885bd86dee0214ef_arm64",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ab485d4b0369a967fbc4125ffa539f43b28f9ad7bf3ad0c5885bd86dee0214ef_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3Aab485d4b0369a967fbc4125ffa539f43b28f9ad7bf3ad0c5885bd86dee0214ef?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e7209fd84bb9522237f9caedb43e0dd27a93b63d9066dac1330e5f6974b89810_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e7209fd84bb9522237f9caedb43e0dd27a93b63d9066dac1330e5f6974b89810_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e7209fd84bb9522237f9caedb43e0dd27a93b63d9066dac1330e5f6974b89810_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Ae7209fd84bb9522237f9caedb43e0dd27a93b63d9066dac1330e5f6974b89810?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673648"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:7284df8190c5e8cc412917b22396f6db8a09f932851e94b934dd73fea6b7e9e9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:7284df8190c5e8cc412917b22396f6db8a09f932851e94b934dd73fea6b7e9e9_arm64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:7284df8190c5e8cc412917b22396f6db8a09f932851e94b934dd73fea6b7e9e9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A7284df8190c5e8cc412917b22396f6db8a09f932851e94b934dd73fea6b7e9e9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:5dfb9bb1038b0a057da7ac7e0367dce3601acf3494704b057070a786baaad59a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:5dfb9bb1038b0a057da7ac7e0367dce3601acf3494704b057070a786baaad59a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:5dfb9bb1038b0a057da7ac7e0367dce3601acf3494704b057070a786baaad59a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel9@sha256%3A5dfb9bb1038b0a057da7ac7e0367dce3601acf3494704b057070a786baaad59a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776667782"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:5c53c6d78a52b17d51db99a72117549e2179f90d4243f0930355d1378d528201_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:5c53c6d78a52b17d51db99a72117549e2179f90d4243f0930355d1378d528201_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:5c53c6d78a52b17d51db99a72117549e2179f90d4243f0930355d1378d528201_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel9-operator@sha256%3A5c53c6d78a52b17d51db99a72117549e2179f90d4243f0930355d1378d528201?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673268"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:0f89db43d98c11d69c2edb9d3fae3085d22a70b3de42a2f4e68969391b4565ea_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:0f89db43d98c11d69c2edb9d3fae3085d22a70b3de42a2f4e68969391b4565ea_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:0f89db43d98c11d69c2edb9d3fae3085d22a70b3de42a2f4e68969391b4565ea_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3A0f89db43d98c11d69c2edb9d3fae3085d22a70b3de42a2f4e68969391b4565ea?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675096"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9987c9ba25b20cf8e8bf11d388f03330358c1ca37e76724f5d229670d61580d0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9987c9ba25b20cf8e8bf11d388f03330358c1ca37e76724f5d229670d61580d0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9987c9ba25b20cf8e8bf11d388f03330358c1ca37e76724f5d229670d61580d0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3A9987c9ba25b20cf8e8bf11d388f03330358c1ca37e76724f5d229670d61580d0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776667623"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:ae4d82e3713722e1aed6abc0a7ac1b08766fc24d64f3f3ba01f58dda96fc0408_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:ae4d82e3713722e1aed6abc0a7ac1b08766fc24d64f3f3ba01f58dda96fc0408_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:ae4d82e3713722e1aed6abc0a7ac1b08766fc24d64f3f3ba01f58dda96fc0408_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3Aae4d82e3713722e1aed6abc0a7ac1b08766fc24d64f3f3ba01f58dda96fc0408?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673277"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:2dcfefacc2e1e3253cd017d52e099ddabbcc122f133455fa9e445b73ac3ac083_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:2dcfefacc2e1e3253cd017d52e099ddabbcc122f133455fa9e445b73ac3ac083_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:2dcfefacc2e1e3253cd017d52e099ddabbcc122f133455fa9e445b73ac3ac083_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A2dcfefacc2e1e3253cd017d52e099ddabbcc122f133455fa9e445b73ac3ac083?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673481"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:0145eea7baa031331c188b69ddef4ad0765a5c9ca37fd27d54e2fc30e3eaee47_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:0145eea7baa031331c188b69ddef4ad0765a5c9ca37fd27d54e2fc30e3eaee47_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:0145eea7baa031331c188b69ddef4ad0765a5c9ca37fd27d54e2fc30e3eaee47_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A0145eea7baa031331c188b69ddef4ad0765a5c9ca37fd27d54e2fc30e3eaee47?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673635"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:9392a0e57be7343f36a7424e35dc41b57559948e2bebfe1d37525a3da8903016_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:9392a0e57be7343f36a7424e35dc41b57559948e2bebfe1d37525a3da8903016_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:9392a0e57be7343f36a7424e35dc41b57559948e2bebfe1d37525a3da8903016_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A9392a0e57be7343f36a7424e35dc41b57559948e2bebfe1d37525a3da8903016?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:c10950aab7a9a4b6f43328988cbfee1278ee0dacc3cd48d518a930b07d645ecc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:c10950aab7a9a4b6f43328988cbfee1278ee0dacc3cd48d518a930b07d645ecc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:c10950aab7a9a4b6f43328988cbfee1278ee0dacc3cd48d518a930b07d645ecc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3Ac10950aab7a9a4b6f43328988cbfee1278ee0dacc3cd48d518a930b07d645ecc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675879"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:f5645172fc671e0ff1b8473aaf65739d061d84566307bdd1a8e572740946a4df_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:f5645172fc671e0ff1b8473aaf65739d061d84566307bdd1a8e572740946a4df_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:f5645172fc671e0ff1b8473aaf65739d061d84566307bdd1a8e572740946a4df_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3Af5645172fc671e0ff1b8473aaf65739d061d84566307bdd1a8e572740946a4df?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675508"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:e33eb2b816ed5a96728a61a016a373610f6acbdf8f269c690ae97d149743cffa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:e33eb2b816ed5a96728a61a016a373610f6acbdf8f269c690ae97d149743cffa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:e33eb2b816ed5a96728a61a016a373610f6acbdf8f269c690ae97d149743cffa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3Ae33eb2b816ed5a96728a61a016a373610f6acbdf8f269c690ae97d149743cffa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673372"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:c761558733b996cb74ea846b382ccd3cb3ebedc4358173803ea6d6f3e0ae8b63_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:c761558733b996cb74ea846b382ccd3cb3ebedc4358173803ea6d6f3e0ae8b63_arm64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:c761558733b996cb74ea846b382ccd3cb3ebedc4358173803ea6d6f3e0ae8b63_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3Ac761558733b996cb74ea846b382ccd3cb3ebedc4358173803ea6d6f3e0ae8b63?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:b91a49fdea8f50cfe136e98eb4acd4c4af81d95c73746ddfe8f0e8a4dbb07e09_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:b91a49fdea8f50cfe136e98eb4acd4c4af81d95c73746ddfe8f0e8a4dbb07e09_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:b91a49fdea8f50cfe136e98eb4acd4c4af81d95c73746ddfe8f0e8a4dbb07e09_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3Ab91a49fdea8f50cfe136e98eb4acd4c4af81d95c73746ddfe8f0e8a4dbb07e09?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673886"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:01ac980555c97d1bcf57ced77784a06f8ddb8642abf50d907e89d0d57615799c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:01ac980555c97d1bcf57ced77784a06f8ddb8642abf50d907e89d0d57615799c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:01ac980555c97d1bcf57ced77784a06f8ddb8642abf50d907e89d0d57615799c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A01ac980555c97d1bcf57ced77784a06f8ddb8642abf50d907e89d0d57615799c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673270"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:aa7de77cdb1a6fb1cf51c986fbbd6517753cc49bff44d995a13dde578a118e60_arm64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:aa7de77cdb1a6fb1cf51c986fbbd6517753cc49bff44d995a13dde578a118e60_arm64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:aa7de77cdb1a6fb1cf51c986fbbd6517753cc49bff44d995a13dde578a118e60_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3Aaa7de77cdb1a6fb1cf51c986fbbd6517753cc49bff44d995a13dde578a118e60?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:c3d6bd5dcaf2551190cf1535ee45bce23b95eacccf89eab4d99e6f642dc51506_arm64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:c3d6bd5dcaf2551190cf1535ee45bce23b95eacccf89eab4d99e6f642dc51506_arm64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:c3d6bd5dcaf2551190cf1535ee45bce23b95eacccf89eab4d99e6f642dc51506_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3Ac3d6bd5dcaf2551190cf1535ee45bce23b95eacccf89eab4d99e6f642dc51506?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675880"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:95f73756b6131fe9798ae620de689a405150ca71c60fd6413bb1174c0b7b732b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:95f73756b6131fe9798ae620de689a405150ca71c60fd6413bb1174c0b7b732b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:95f73756b6131fe9798ae620de689a405150ca71c60fd6413bb1174c0b7b732b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A95f73756b6131fe9798ae620de689a405150ca71c60fd6413bb1174c0b7b732b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683732"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3c2071f6c2c80483afe745c5a5ba8b51e9976171d84e01a1189288c4cda3b811_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3c2071f6c2c80483afe745c5a5ba8b51e9976171d84e01a1189288c4cda3b811_arm64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3c2071f6c2c80483afe745c5a5ba8b51e9976171d84e01a1189288c4cda3b811_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A3c2071f6c2c80483afe745c5a5ba8b51e9976171d84e01a1189288c4cda3b811?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:399028b92bf1ec4a6fb7c8b171fe92845433172f494cf933dca5d778eb067a5c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:399028b92bf1ec4a6fb7c8b171fe92845433172f494cf933dca5d778eb067a5c_arm64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:399028b92bf1ec4a6fb7c8b171fe92845433172f494cf933dca5d778eb067a5c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A399028b92bf1ec4a6fb7c8b171fe92845433172f494cf933dca5d778eb067a5c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776667605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:38b844901ee37dbc3dcca9756e76e10064f13a1ae2e823c9cf1d2bb6cd5e94a5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:38b844901ee37dbc3dcca9756e76e10064f13a1ae2e823c9cf1d2bb6cd5e94a5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:38b844901ee37dbc3dcca9756e76e10064f13a1ae2e823c9cf1d2bb6cd5e94a5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A38b844901ee37dbc3dcca9756e76e10064f13a1ae2e823c9cf1d2bb6cd5e94a5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776667771"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77530e04f1282819461d568c0b6c471ab678484c41f7ec0979daa6a6fe0fc832_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77530e04f1282819461d568c0b6c471ab678484c41f7ec0979daa6a6fe0fc832_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77530e04f1282819461d568c0b6c471ab678484c41f7ec0979daa6a6fe0fc832_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A77530e04f1282819461d568c0b6c471ab678484c41f7ec0979daa6a6fe0fc832?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e8a37402e7ca28e5ed2b854448887aaece1515680082efbcd0774002b9645011_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e8a37402e7ca28e5ed2b854448887aaece1515680082efbcd0774002b9645011_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e8a37402e7ca28e5ed2b854448887aaece1515680082efbcd0774002b9645011_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3Ae8a37402e7ca28e5ed2b854448887aaece1515680082efbcd0774002b9645011?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5dc5786ad4606e2d7165afa3421ed865a19d4963253eedff5f86c43fcf488033_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5dc5786ad4606e2d7165afa3421ed865a19d4963253eedff5f86c43fcf488033_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5dc5786ad4606e2d7165afa3421ed865a19d4963253eedff5f86c43fcf488033_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3A5dc5786ad4606e2d7165afa3421ed865a19d4963253eedff5f86c43fcf488033?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673219"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:818464b1d00755f44c21057470d2035f12cc99d383a0b84dcfd6d15738a0c022_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:818464b1d00755f44c21057470d2035f12cc99d383a0b84dcfd6d15738a0c022_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:818464b1d00755f44c21057470d2035f12cc99d383a0b84dcfd6d15738a0c022_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A818464b1d00755f44c21057470d2035f12cc99d383a0b84dcfd6d15738a0c022?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1e5df4b408114deeccff4a9529e40fc1961302171a92361a8bfc4db21425bfac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1e5df4b408114deeccff4a9529e40fc1961302171a92361a8bfc4db21425bfac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1e5df4b408114deeccff4a9529e40fc1961302171a92361a8bfc4db21425bfac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A1e5df4b408114deeccff4a9529e40fc1961302171a92361a8bfc4db21425bfac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:3e546832162068b5d956ad5d4ef47eb47d31f109bd8ec5be554a557e74b861a1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:3e546832162068b5d956ad5d4ef47eb47d31f109bd8ec5be554a557e74b861a1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:3e546832162068b5d956ad5d4ef47eb47d31f109bd8ec5be554a557e74b861a1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A3e546832162068b5d956ad5d4ef47eb47d31f109bd8ec5be554a557e74b861a1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673965"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:08238fbaa230a53fd4ea7f3eb701b398349b55161d57dbc4e303b0a46080d985_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:08238fbaa230a53fd4ea7f3eb701b398349b55161d57dbc4e303b0a46080d985_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:08238fbaa230a53fd4ea7f3eb701b398349b55161d57dbc4e303b0a46080d985_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3A08238fbaa230a53fd4ea7f3eb701b398349b55161d57dbc4e303b0a46080d985?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776667585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:9bf7b748def1c91caa1e93bbb9f13f5d054c97c328d667ad00b060559d76c1c7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:9bf7b748def1c91caa1e93bbb9f13f5d054c97c328d667ad00b060559d76c1c7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:9bf7b748def1c91caa1e93bbb9f13f5d054c97c328d667ad00b060559d76c1c7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A9bf7b748def1c91caa1e93bbb9f13f5d054c97c328d667ad00b060559d76c1c7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675663"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d19cb645ed48afbf70ffd3f9c096f971192f0c5c00c7e8897f36c328e68c7690_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d19cb645ed48afbf70ffd3f9c096f971192f0c5c00c7e8897f36c328e68c7690_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d19cb645ed48afbf70ffd3f9c096f971192f0c5c00c7e8897f36c328e68c7690_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3Ad19cb645ed48afbf70ffd3f9c096f971192f0c5c00c7e8897f36c328e68c7690?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673823"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:098ccc2275ab68cee3e5ec20e7f6b302ed76e4d66bf65957376ecf184a47c1be_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:098ccc2275ab68cee3e5ec20e7f6b302ed76e4d66bf65957376ecf184a47c1be_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:098ccc2275ab68cee3e5ec20e7f6b302ed76e4d66bf65957376ecf184a47c1be_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A098ccc2275ab68cee3e5ec20e7f6b302ed76e4d66bf65957376ecf184a47c1be?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674237"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:81cd79485653bad71c4142ac661ff1102cc977ae678e715caa8494b011a42dbf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:81cd79485653bad71c4142ac661ff1102cc977ae678e715caa8494b011a42dbf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:81cd79485653bad71c4142ac661ff1102cc977ae678e715caa8494b011a42dbf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A81cd79485653bad71c4142ac661ff1102cc977ae678e715caa8494b011a42dbf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673935"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:b55bd4c4cab0f5277aca4573b676d595429b345df2de10f34ea1661b9c3b68d0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:b55bd4c4cab0f5277aca4573b676d595429b345df2de10f34ea1661b9c3b68d0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:b55bd4c4cab0f5277aca4573b676d595429b345df2de10f34ea1661b9c3b68d0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3Ab55bd4c4cab0f5277aca4573b676d595429b345df2de10f34ea1661b9c3b68d0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673817"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:fb4a1d15131490352837f759ee7b2f7b55696f794a40ba786627a1cb615cfa64_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:fb4a1d15131490352837f759ee7b2f7b55696f794a40ba786627a1cb615cfa64_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:fb4a1d15131490352837f759ee7b2f7b55696f794a40ba786627a1cb615cfa64_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3Afb4a1d15131490352837f759ee7b2f7b55696f794a40ba786627a1cb615cfa64?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:1ae5c0c51079200e965198572ccea4b6f3d4d5a7d154d731a541b2b0e67cc49b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:1ae5c0c51079200e965198572ccea4b6f3d4d5a7d154d731a541b2b0e67cc49b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:1ae5c0c51079200e965198572ccea4b6f3d4d5a7d154d731a541b2b0e67cc49b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3A1ae5c0c51079200e965198572ccea4b6f3d4d5a7d154d731a541b2b0e67cc49b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4c598df247745481bfaea4aba7598496d87e6407e1c080b59384b3a04c43ca0e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4c598df247745481bfaea4aba7598496d87e6407e1c080b59384b3a04c43ca0e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4c598df247745481bfaea4aba7598496d87e6407e1c080b59384b3a04c43ca0e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A4c598df247745481bfaea4aba7598496d87e6407e1c080b59384b3a04c43ca0e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673788"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:c8c5207f1784a5357e087914354fa0f77b8f315809a88562ed2c27c1dc1693ba_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:c8c5207f1784a5357e087914354fa0f77b8f315809a88562ed2c27c1dc1693ba_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:c8c5207f1784a5357e087914354fa0f77b8f315809a88562ed2c27c1dc1693ba_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Ac8c5207f1784a5357e087914354fa0f77b8f315809a88562ed2c27c1dc1693ba?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:241f11e567990a11f25ebbcb91cec2d5698ac736fa7ecc3bf5d6505c2e590b5d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:241f11e567990a11f25ebbcb91cec2d5698ac736fa7ecc3bf5d6505c2e590b5d_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:241f11e567990a11f25ebbcb91cec2d5698ac736fa7ecc3bf5d6505c2e590b5d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3A241f11e567990a11f25ebbcb91cec2d5698ac736fa7ecc3bf5d6505c2e590b5d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:83c7234284d56d2ab10e7adf720aace8f950831003a6fea7f5fcf19203110d95_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:83c7234284d56d2ab10e7adf720aace8f950831003a6fea7f5fcf19203110d95_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:83c7234284d56d2ab10e7adf720aace8f950831003a6fea7f5fcf19203110d95_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A83c7234284d56d2ab10e7adf720aace8f950831003a6fea7f5fcf19203110d95?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683750"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:23d3c2b463442f8c93706486e537be521a760e0fa51c75a2723f0fc1dbfe20ac_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:23d3c2b463442f8c93706486e537be521a760e0fa51c75a2723f0fc1dbfe20ac_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:23d3c2b463442f8c93706486e537be521a760e0fa51c75a2723f0fc1dbfe20ac_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A23d3c2b463442f8c93706486e537be521a760e0fa51c75a2723f0fc1dbfe20ac?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673964"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:982b77ab4a9a65923c0720725a7e1b3978a4ef06c29ad240932ec119bf189a4e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:982b77ab4a9a65923c0720725a7e1b3978a4ef06c29ad240932ec119bf189a4e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:982b77ab4a9a65923c0720725a7e1b3978a4ef06c29ad240932ec119bf189a4e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A982b77ab4a9a65923c0720725a7e1b3978a4ef06c29ad240932ec119bf189a4e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683758"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:accb05d004c7bdd050b8949a882a788b4ec4199afb9d0bfdd3e96202ca2666d0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:accb05d004c7bdd050b8949a882a788b4ec4199afb9d0bfdd3e96202ca2666d0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:accb05d004c7bdd050b8949a882a788b4ec4199afb9d0bfdd3e96202ca2666d0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3Aaccb05d004c7bdd050b8949a882a788b4ec4199afb9d0bfdd3e96202ca2666d0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683735"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eca15f37d0de3827cbd8456edc10124c849b423928473902afaf54aa0bcbd624_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eca15f37d0de3827cbd8456edc10124c849b423928473902afaf54aa0bcbd624_ppc64le",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eca15f37d0de3827cbd8456edc10124c849b423928473902afaf54aa0bcbd624_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3Aeca15f37d0de3827cbd8456edc10124c849b423928473902afaf54aa0bcbd624?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683801"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:63c777b15d54d714c7d266dfb286592bc422b638bec176878fa2e0dcc44afd87_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:63c777b15d54d714c7d266dfb286592bc422b638bec176878fa2e0dcc44afd87_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:63c777b15d54d714c7d266dfb286592bc422b638bec176878fa2e0dcc44afd87_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A63c777b15d54d714c7d266dfb286592bc422b638bec176878fa2e0dcc44afd87?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:51f179d88b85e36f646435828302d67c8ff327d5560866c5dfa1b7bba5c0a5f4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:51f179d88b85e36f646435828302d67c8ff327d5560866c5dfa1b7bba5c0a5f4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:51f179d88b85e36f646435828302d67c8ff327d5560866c5dfa1b7bba5c0a5f4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A51f179d88b85e36f646435828302d67c8ff327d5560866c5dfa1b7bba5c0a5f4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674327"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2ea6e5bcc3b3e2dfd98eadbf96dd9cea26308a0542fb1d953137a04a48456985_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2ea6e5bcc3b3e2dfd98eadbf96dd9cea26308a0542fb1d953137a04a48456985_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2ea6e5bcc3b3e2dfd98eadbf96dd9cea26308a0542fb1d953137a04a48456985_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A2ea6e5bcc3b3e2dfd98eadbf96dd9cea26308a0542fb1d953137a04a48456985?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675138"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:294ec77677a6481d4cfe216f425703b5476165ffe1ff86e835ec2becac8f7dca_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:294ec77677a6481d4cfe216f425703b5476165ffe1ff86e835ec2becac8f7dca_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:294ec77677a6481d4cfe216f425703b5476165ffe1ff86e835ec2becac8f7dca_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3A294ec77677a6481d4cfe216f425703b5476165ffe1ff86e835ec2becac8f7dca?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:9f1730db64403eefae6310cf58890d16a5e21aa1b9086028620cd6d29e6cd754_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:9f1730db64403eefae6310cf58890d16a5e21aa1b9086028620cd6d29e6cd754_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:9f1730db64403eefae6310cf58890d16a5e21aa1b9086028620cd6d29e6cd754_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3A9f1730db64403eefae6310cf58890d16a5e21aa1b9086028620cd6d29e6cd754?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675011"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:f3092387090218098102e8eb44f1f4c05dcd62e5b31fbc00ac258684bb2a8609_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:f3092387090218098102e8eb44f1f4c05dcd62e5b31fbc00ac258684bb2a8609_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:f3092387090218098102e8eb44f1f4c05dcd62e5b31fbc00ac258684bb2a8609_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3Af3092387090218098102e8eb44f1f4c05dcd62e5b31fbc00ac258684bb2a8609?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:f50fa05848ec5ecb085b106903890d7c58d583c3d0b0697c9f739fc9fcef7a3b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:f50fa05848ec5ecb085b106903890d7c58d583c3d0b0697c9f739fc9fcef7a3b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:f50fa05848ec5ecb085b106903890d7c58d583c3d0b0697c9f739fc9fcef7a3b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Af50fa05848ec5ecb085b106903890d7c58d583c3d0b0697c9f739fc9fcef7a3b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673648"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d1f7bdf7807d6d0741275d3bb9510eb892dadae930826f3d2c24a55e9782d5ff_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d1f7bdf7807d6d0741275d3bb9510eb892dadae930826f3d2c24a55e9782d5ff_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d1f7bdf7807d6d0741275d3bb9510eb892dadae930826f3d2c24a55e9782d5ff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3Ad1f7bdf7807d6d0741275d3bb9510eb892dadae930826f3d2c24a55e9782d5ff?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:bc7715e7835899f6f3ef173778ce2d07e1a2d058b87031a6d7b2202a42ccef33_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:bc7715e7835899f6f3ef173778ce2d07e1a2d058b87031a6d7b2202a42ccef33_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:bc7715e7835899f6f3ef173778ce2d07e1a2d058b87031a6d7b2202a42ccef33_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3Abc7715e7835899f6f3ef173778ce2d07e1a2d058b87031a6d7b2202a42ccef33?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675096"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:bd0a7767d4dd5c049fcfa6a181fb4dc7b44149ab5790be1cec1b6525d9ba6cff_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:bd0a7767d4dd5c049fcfa6a181fb4dc7b44149ab5790be1cec1b6525d9ba6cff_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:bd0a7767d4dd5c049fcfa6a181fb4dc7b44149ab5790be1cec1b6525d9ba6cff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3Abd0a7767d4dd5c049fcfa6a181fb4dc7b44149ab5790be1cec1b6525d9ba6cff?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776667623"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:28a48ad6aff8602a5b59c2203047a598d5adfeea59503bbaad02d1e3986a2279_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:28a48ad6aff8602a5b59c2203047a598d5adfeea59503bbaad02d1e3986a2279_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:28a48ad6aff8602a5b59c2203047a598d5adfeea59503bbaad02d1e3986a2279_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3A28a48ad6aff8602a5b59c2203047a598d5adfeea59503bbaad02d1e3986a2279?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673277"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:f8b3c8686ffdc3c6d92e46fe5246566cefb9d12e355e3edfc82741e9888dadd2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:f8b3c8686ffdc3c6d92e46fe5246566cefb9d12e355e3edfc82741e9888dadd2_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:f8b3c8686ffdc3c6d92e46fe5246566cefb9d12e355e3edfc82741e9888dadd2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Af8b3c8686ffdc3c6d92e46fe5246566cefb9d12e355e3edfc82741e9888dadd2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673481"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:445beae6bc5a6295d12310bee6bbd6f3a48011c95b40515e6382e27b2421aa9e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:445beae6bc5a6295d12310bee6bbd6f3a48011c95b40515e6382e27b2421aa9e_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:445beae6bc5a6295d12310bee6bbd6f3a48011c95b40515e6382e27b2421aa9e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A445beae6bc5a6295d12310bee6bbd6f3a48011c95b40515e6382e27b2421aa9e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673635"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:936e5483a4b418d9b46f3c3e653edb306e2ef88b6bbee26ce75065aa092533a1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:936e5483a4b418d9b46f3c3e653edb306e2ef88b6bbee26ce75065aa092533a1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:936e5483a4b418d9b46f3c3e653edb306e2ef88b6bbee26ce75065aa092533a1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A936e5483a4b418d9b46f3c3e653edb306e2ef88b6bbee26ce75065aa092533a1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:ea769d248ec228fa96e899a485342677caff1cbb34dc74cb373cc3458c97ea99_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:ea769d248ec228fa96e899a485342677caff1cbb34dc74cb373cc3458c97ea99_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:ea769d248ec228fa96e899a485342677caff1cbb34dc74cb373cc3458c97ea99_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3Aea769d248ec228fa96e899a485342677caff1cbb34dc74cb373cc3458c97ea99?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675879"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1952fec37467f0d752c3aeae6f282a399fc970f7d229f21c2384fd868314064a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1952fec37467f0d752c3aeae6f282a399fc970f7d229f21c2384fd868314064a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1952fec37467f0d752c3aeae6f282a399fc970f7d229f21c2384fd868314064a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A1952fec37467f0d752c3aeae6f282a399fc970f7d229f21c2384fd868314064a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675508"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f9e6438d8bb8cb8a980030a214ad8352af9d9662792a944266b985ccd72b90d8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f9e6438d8bb8cb8a980030a214ad8352af9d9662792a944266b985ccd72b90d8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f9e6438d8bb8cb8a980030a214ad8352af9d9662792a944266b985ccd72b90d8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3Af9e6438d8bb8cb8a980030a214ad8352af9d9662792a944266b985ccd72b90d8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673372"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5f976edd69309183df47cafc509fa41dff74dcc7430bb3c60cd01f0720eb75af_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5f976edd69309183df47cafc509fa41dff74dcc7430bb3c60cd01f0720eb75af_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5f976edd69309183df47cafc509fa41dff74dcc7430bb3c60cd01f0720eb75af_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A5f976edd69309183df47cafc509fa41dff74dcc7430bb3c60cd01f0720eb75af?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:e7afc14ab6d21818d74c063e49e38685ff06c1515566d79245e9eac05b9d30fd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:e7afc14ab6d21818d74c063e49e38685ff06c1515566d79245e9eac05b9d30fd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:e7afc14ab6d21818d74c063e49e38685ff06c1515566d79245e9eac05b9d30fd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3Ae7afc14ab6d21818d74c063e49e38685ff06c1515566d79245e9eac05b9d30fd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673886"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:c30984f2a78b187044a36e3547869b019089209b775f6059b9b8f72d9b020e0c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:c30984f2a78b187044a36e3547869b019089209b775f6059b9b8f72d9b020e0c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:c30984f2a78b187044a36e3547869b019089209b775f6059b9b8f72d9b020e0c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3Ac30984f2a78b187044a36e3547869b019089209b775f6059b9b8f72d9b020e0c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673270"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e679006db13dd82f7fe440c3c0fa94bcdfa96393a4927ec0c30987de04c1611a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e679006db13dd82f7fe440c3c0fa94bcdfa96393a4927ec0c30987de04c1611a_ppc64le",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e679006db13dd82f7fe440c3c0fa94bcdfa96393a4927ec0c30987de04c1611a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3Ae679006db13dd82f7fe440c3c0fa94bcdfa96393a4927ec0c30987de04c1611a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:c090ede014662ec44a92e12a346d4f58e3f7834f103101e54946159fb3c7f4a2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:c090ede014662ec44a92e12a346d4f58e3f7834f103101e54946159fb3c7f4a2_ppc64le",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:c090ede014662ec44a92e12a346d4f58e3f7834f103101e54946159fb3c7f4a2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3Ac090ede014662ec44a92e12a346d4f58e3f7834f103101e54946159fb3c7f4a2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675880"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:7dfcc4fe44678675d4292555c78593b176bcb0e1ee7c1cdc83b8de3045ac3153_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:7dfcc4fe44678675d4292555c78593b176bcb0e1ee7c1cdc83b8de3045ac3153_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:7dfcc4fe44678675d4292555c78593b176bcb0e1ee7c1cdc83b8de3045ac3153_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A7dfcc4fe44678675d4292555c78593b176bcb0e1ee7c1cdc83b8de3045ac3153?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683732"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:294d787e27c198b1cff83436fa229af1981b408ce06eee41f539aeb20e32954e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:294d787e27c198b1cff83436fa229af1981b408ce06eee41f539aeb20e32954e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:294d787e27c198b1cff83436fa229af1981b408ce06eee41f539aeb20e32954e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A294d787e27c198b1cff83436fa229af1981b408ce06eee41f539aeb20e32954e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2165c8f2bfcc8f943f3a4e8d30b926ae4e1ba55af9ca28c7185de0141bb48032_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2165c8f2bfcc8f943f3a4e8d30b926ae4e1ba55af9ca28c7185de0141bb48032_ppc64le",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2165c8f2bfcc8f943f3a4e8d30b926ae4e1ba55af9ca28c7185de0141bb48032_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A2165c8f2bfcc8f943f3a4e8d30b926ae4e1ba55af9ca28c7185de0141bb48032?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776667605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:6acce2dad51b12eef8d27ba8e19cf63fe47a59fe4c8a26aac717be24738d3dba_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:6acce2dad51b12eef8d27ba8e19cf63fe47a59fe4c8a26aac717be24738d3dba_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:6acce2dad51b12eef8d27ba8e19cf63fe47a59fe4c8a26aac717be24738d3dba_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A6acce2dad51b12eef8d27ba8e19cf63fe47a59fe4c8a26aac717be24738d3dba?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776667771"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:3464fcfc3fb2f4ed2b5a7a288618dcd9ba8b13ea4740174450f718e3bc6ad19a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:3464fcfc3fb2f4ed2b5a7a288618dcd9ba8b13ea4740174450f718e3bc6ad19a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:3464fcfc3fb2f4ed2b5a7a288618dcd9ba8b13ea4740174450f718e3bc6ad19a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A3464fcfc3fb2f4ed2b5a7a288618dcd9ba8b13ea4740174450f718e3bc6ad19a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8be03eb8cddd01ebdb98180c67dd640848a997e7ddf8b6e7f22a7559499869ea_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8be03eb8cddd01ebdb98180c67dd640848a997e7ddf8b6e7f22a7559499869ea_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8be03eb8cddd01ebdb98180c67dd640848a997e7ddf8b6e7f22a7559499869ea_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3A8be03eb8cddd01ebdb98180c67dd640848a997e7ddf8b6e7f22a7559499869ea?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3d1608852ce75a2b49c3434f4e8ee7dda0d8be548e18476162e994791d623437_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3d1608852ce75a2b49c3434f4e8ee7dda0d8be548e18476162e994791d623437_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3d1608852ce75a2b49c3434f4e8ee7dda0d8be548e18476162e994791d623437_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3A3d1608852ce75a2b49c3434f4e8ee7dda0d8be548e18476162e994791d623437?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673219"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ed7a27693b8ce6145d0dfed31c9322cf65e938c8686075f6fbc574d97c96b0b6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ed7a27693b8ce6145d0dfed31c9322cf65e938c8686075f6fbc574d97c96b0b6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ed7a27693b8ce6145d0dfed31c9322cf65e938c8686075f6fbc574d97c96b0b6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3Aed7a27693b8ce6145d0dfed31c9322cf65e938c8686075f6fbc574d97c96b0b6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:c2023cbf079d625f3d321a8ef1bfa23e993f555c67e593d677b79356bf3a0807_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:c2023cbf079d625f3d321a8ef1bfa23e993f555c67e593d677b79356bf3a0807_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:c2023cbf079d625f3d321a8ef1bfa23e993f555c67e593d677b79356bf3a0807_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3Ac2023cbf079d625f3d321a8ef1bfa23e993f555c67e593d677b79356bf3a0807?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:9fb670d43654f2e312606d55c7a4a24701dd06cd99abd032ac3218db62b7b80b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:9fb670d43654f2e312606d55c7a4a24701dd06cd99abd032ac3218db62b7b80b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:9fb670d43654f2e312606d55c7a4a24701dd06cd99abd032ac3218db62b7b80b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A9fb670d43654f2e312606d55c7a4a24701dd06cd99abd032ac3218db62b7b80b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673965"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2f849055d3a811c2ec3f5391e0fd01f3fd7d8b9ea483a39df47e5d8a2ed6baee_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2f849055d3a811c2ec3f5391e0fd01f3fd7d8b9ea483a39df47e5d8a2ed6baee_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2f849055d3a811c2ec3f5391e0fd01f3fd7d8b9ea483a39df47e5d8a2ed6baee_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A2f849055d3a811c2ec3f5391e0fd01f3fd7d8b9ea483a39df47e5d8a2ed6baee?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675663"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:593e1d0e8b26b19eb319b94e0c5338d7bee33863456eae9d59674b0239a9d2e5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:593e1d0e8b26b19eb319b94e0c5338d7bee33863456eae9d59674b0239a9d2e5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:593e1d0e8b26b19eb319b94e0c5338d7bee33863456eae9d59674b0239a9d2e5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A593e1d0e8b26b19eb319b94e0c5338d7bee33863456eae9d59674b0239a9d2e5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673823"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:b18d87c7b68badc9c90165b6206d8ecb1bbae17d0ad401fdf7bbed5df4ded0f8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:b18d87c7b68badc9c90165b6206d8ecb1bbae17d0ad401fdf7bbed5df4ded0f8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:b18d87c7b68badc9c90165b6206d8ecb1bbae17d0ad401fdf7bbed5df4ded0f8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3Ab18d87c7b68badc9c90165b6206d8ecb1bbae17d0ad401fdf7bbed5df4ded0f8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674237"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:c3c25537f0d938d99403e7c02f1e7d7c88665bbc08c2bfcd70b8d100a4c7cfa4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:c3c25537f0d938d99403e7c02f1e7d7c88665bbc08c2bfcd70b8d100a4c7cfa4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:c3c25537f0d938d99403e7c02f1e7d7c88665bbc08c2bfcd70b8d100a4c7cfa4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3Ac3c25537f0d938d99403e7c02f1e7d7c88665bbc08c2bfcd70b8d100a4c7cfa4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673935"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:489e5e540c0bbe17b29d839412ff237e9b4d72828cf32fbe512b1a4a0c920443_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:489e5e540c0bbe17b29d839412ff237e9b4d72828cf32fbe512b1a4a0c920443_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:489e5e540c0bbe17b29d839412ff237e9b4d72828cf32fbe512b1a4a0c920443_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A489e5e540c0bbe17b29d839412ff237e9b4d72828cf32fbe512b1a4a0c920443?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673817"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:09522adc9acad2be18602e32991e68d0127f894460506e70aa86df54c20affd0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:09522adc9acad2be18602e32991e68d0127f894460506e70aa86df54c20affd0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:09522adc9acad2be18602e32991e68d0127f894460506e70aa86df54c20affd0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3A09522adc9acad2be18602e32991e68d0127f894460506e70aa86df54c20affd0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d27b8222063a442039c3fa5e960c256eef2c7f44c91ebc17686dc596595f1d14_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d27b8222063a442039c3fa5e960c256eef2c7f44c91ebc17686dc596595f1d14_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d27b8222063a442039c3fa5e960c256eef2c7f44c91ebc17686dc596595f1d14_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3Ad27b8222063a442039c3fa5e960c256eef2c7f44c91ebc17686dc596595f1d14?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673788"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f1ab962fa8e19af109094f673b205461b1b1a4ea26b7620268d15d3fd1b8ecd4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f1ab962fa8e19af109094f673b205461b1b1a4ea26b7620268d15d3fd1b8ecd4_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f1ab962fa8e19af109094f673b205461b1b1a4ea26b7620268d15d3fd1b8ecd4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Af1ab962fa8e19af109094f673b205461b1b1a4ea26b7620268d15d3fd1b8ecd4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ebccab85b2775fb13e29872d87985ab69a774a4aa6556402dc1e4478232dfa4b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ebccab85b2775fb13e29872d87985ab69a774a4aa6556402dc1e4478232dfa4b_s390x",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ebccab85b2775fb13e29872d87985ab69a774a4aa6556402dc1e4478232dfa4b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3Aebccab85b2775fb13e29872d87985ab69a774a4aa6556402dc1e4478232dfa4b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0538c3ce443ce61357594d15eb9e70a1a3dd2b3b0672e90ef0c0fb200c77f392_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0538c3ce443ce61357594d15eb9e70a1a3dd2b3b0672e90ef0c0fb200c77f392_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0538c3ce443ce61357594d15eb9e70a1a3dd2b3b0672e90ef0c0fb200c77f392_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A0538c3ce443ce61357594d15eb9e70a1a3dd2b3b0672e90ef0c0fb200c77f392?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673964"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5e26da0b5c556d8015c8bd66f2f3d2ba103f58c138ca618448cd403d805c809d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5e26da0b5c556d8015c8bd66f2f3d2ba103f58c138ca618448cd403d805c809d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5e26da0b5c556d8015c8bd66f2f3d2ba103f58c138ca618448cd403d805c809d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A5e26da0b5c556d8015c8bd66f2f3d2ba103f58c138ca618448cd403d805c809d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683758"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c414aa18fc8ef38befe69cab2e7cd12283cf8b3148c7a9596c9183c5f4ac49c4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c414aa18fc8ef38befe69cab2e7cd12283cf8b3148c7a9596c9183c5f4ac49c4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c414aa18fc8ef38befe69cab2e7cd12283cf8b3148c7a9596c9183c5f4ac49c4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3Ac414aa18fc8ef38befe69cab2e7cd12283cf8b3148c7a9596c9183c5f4ac49c4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683735"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:ebf8bf1c22cc0adc2a59b4f8eaeb1b81191587a94aa816d6da666a261719af08_s390x",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:ebf8bf1c22cc0adc2a59b4f8eaeb1b81191587a94aa816d6da666a261719af08_s390x",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:ebf8bf1c22cc0adc2a59b4f8eaeb1b81191587a94aa816d6da666a261719af08_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3Aebf8bf1c22cc0adc2a59b4f8eaeb1b81191587a94aa816d6da666a261719af08?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683801"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:422185f18695351d07ef4afacb3122b6f1a680bb53e33c5674a76bc9ee61ea11_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:422185f18695351d07ef4afacb3122b6f1a680bb53e33c5674a76bc9ee61ea11_s390x",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:422185f18695351d07ef4afacb3122b6f1a680bb53e33c5674a76bc9ee61ea11_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A422185f18695351d07ef4afacb3122b6f1a680bb53e33c5674a76bc9ee61ea11?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f50289ca9ec0a4abf468b3a93476b10415bb6da99f16ca316d4c3f08f1f16594_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f50289ca9ec0a4abf468b3a93476b10415bb6da99f16ca316d4c3f08f1f16594_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f50289ca9ec0a4abf468b3a93476b10415bb6da99f16ca316d4c3f08f1f16594_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3Af50289ca9ec0a4abf468b3a93476b10415bb6da99f16ca316d4c3f08f1f16594?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674327"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1b465eaf900309bed4cedb06b46a1e4edb10b9d0ba993585aed84a97c91ae70a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1b465eaf900309bed4cedb06b46a1e4edb10b9d0ba993585aed84a97c91ae70a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1b465eaf900309bed4cedb06b46a1e4edb10b9d0ba993585aed84a97c91ae70a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A1b465eaf900309bed4cedb06b46a1e4edb10b9d0ba993585aed84a97c91ae70a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675138"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:74298b0408210925cb94b412d12f5a16941e1fe5991c2cead3d26cd5c6ffb4cc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:74298b0408210925cb94b412d12f5a16941e1fe5991c2cead3d26cd5c6ffb4cc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:74298b0408210925cb94b412d12f5a16941e1fe5991c2cead3d26cd5c6ffb4cc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3A74298b0408210925cb94b412d12f5a16941e1fe5991c2cead3d26cd5c6ffb4cc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776676205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:44a56cd708f76ac94195de3861748ec1c5aaab4127a6e39f219635963722e395_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:44a56cd708f76ac94195de3861748ec1c5aaab4127a6e39f219635963722e395_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:44a56cd708f76ac94195de3861748ec1c5aaab4127a6e39f219635963722e395_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3A44a56cd708f76ac94195de3861748ec1c5aaab4127a6e39f219635963722e395?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675011"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2d52d819f0a37f9df61dcf3ab118e4fc391fb434fc5703570161422df34d4461_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2d52d819f0a37f9df61dcf3ab118e4fc391fb434fc5703570161422df34d4461_s390x",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2d52d819f0a37f9df61dcf3ab118e4fc391fb434fc5703570161422df34d4461_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A2d52d819f0a37f9df61dcf3ab118e4fc391fb434fc5703570161422df34d4461?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776674247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4f54178cce1ac5c8f00aa958d61f747402c0e4ef3d59f3c9afe7809353be45dc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4f54178cce1ac5c8f00aa958d61f747402c0e4ef3d59f3c9afe7809353be45dc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4f54178cce1ac5c8f00aa958d61f747402c0e4ef3d59f3c9afe7809353be45dc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A4f54178cce1ac5c8f00aa958d61f747402c0e4ef3d59f3c9afe7809353be45dc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673648"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:cca78bfdd762f3413ab1762660ccd5e0ee61da1f83fc2179fbb803518011819c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:cca78bfdd762f3413ab1762660ccd5e0ee61da1f83fc2179fbb803518011819c_s390x",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:cca78bfdd762f3413ab1762660ccd5e0ee61da1f83fc2179fbb803518011819c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3Acca78bfdd762f3413ab1762660ccd5e0ee61da1f83fc2179fbb803518011819c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776683747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:28aeb2ad9b5bd6bec712ef4dc3f773f5dedd47acd145bcd6007a1f9778bb07e6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:28aeb2ad9b5bd6bec712ef4dc3f773f5dedd47acd145bcd6007a1f9778bb07e6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:28aeb2ad9b5bd6bec712ef4dc3f773f5dedd47acd145bcd6007a1f9778bb07e6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3A28aeb2ad9b5bd6bec712ef4dc3f773f5dedd47acd145bcd6007a1f9778bb07e6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675096"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:be6abecefbcb3a36db0535262987171a032ee22a824880a4d41922808a0a0bc5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:be6abecefbcb3a36db0535262987171a032ee22a824880a4d41922808a0a0bc5_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:be6abecefbcb3a36db0535262987171a032ee22a824880a4d41922808a0a0bc5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Abe6abecefbcb3a36db0535262987171a032ee22a824880a4d41922808a0a0bc5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673481"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:849dbb2d6396654470d6dcadc0754f6917bfb7cb41f339d9a9d07009fecebc06_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:849dbb2d6396654470d6dcadc0754f6917bfb7cb41f339d9a9d07009fecebc06_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:849dbb2d6396654470d6dcadc0754f6917bfb7cb41f339d9a9d07009fecebc06_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A849dbb2d6396654470d6dcadc0754f6917bfb7cb41f339d9a9d07009fecebc06?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673635"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:adab22f8e3ea1497fec4af641e0cecfc922a853a712af64a05a5aeea4d008830_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:adab22f8e3ea1497fec4af641e0cecfc922a853a712af64a05a5aeea4d008830_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:adab22f8e3ea1497fec4af641e0cecfc922a853a712af64a05a5aeea4d008830_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3Aadab22f8e3ea1497fec4af641e0cecfc922a853a712af64a05a5aeea4d008830?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c13d4ebf65e53ba5423c136c3aa5eecdc1c3026a48069d4583e7a242969f3c9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c13d4ebf65e53ba5423c136c3aa5eecdc1c3026a48069d4583e7a242969f3c9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c13d4ebf65e53ba5423c136c3aa5eecdc1c3026a48069d4583e7a242969f3c9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A4c13d4ebf65e53ba5423c136c3aa5eecdc1c3026a48069d4583e7a242969f3c9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675879"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:e9eae42d74c6bd619cc4ad405c84efceb1267f39872e30714c09eb21bdd9b136_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:e9eae42d74c6bd619cc4ad405c84efceb1267f39872e30714c09eb21bdd9b136_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:e9eae42d74c6bd619cc4ad405c84efceb1267f39872e30714c09eb21bdd9b136_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3Ae9eae42d74c6bd619cc4ad405c84efceb1267f39872e30714c09eb21bdd9b136?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675508"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:63e2494007e87dfe4efefe6fa2fb98280a98108742c1565fcdfc5bda797b9fe8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:63e2494007e87dfe4efefe6fa2fb98280a98108742c1565fcdfc5bda797b9fe8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:63e2494007e87dfe4efefe6fa2fb98280a98108742c1565fcdfc5bda797b9fe8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A63e2494007e87dfe4efefe6fa2fb98280a98108742c1565fcdfc5bda797b9fe8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673372"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:ac6996c6cbbc8cbc87565be6b954df6970fc1241b08ee1be91a3a0e6fdc1c204_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:ac6996c6cbbc8cbc87565be6b954df6970fc1241b08ee1be91a3a0e6fdc1c204_s390x",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:ac6996c6cbbc8cbc87565be6b954df6970fc1241b08ee1be91a3a0e6fdc1c204_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3Aac6996c6cbbc8cbc87565be6b954df6970fc1241b08ee1be91a3a0e6fdc1c204?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:cd6c55b0d09b7a02869d615361bfe8a5a10719b292d5fb3a733a7228a1729181_s390x",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:cd6c55b0d09b7a02869d615361bfe8a5a10719b292d5fb3a733a7228a1729181_s390x",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:cd6c55b0d09b7a02869d615361bfe8a5a10719b292d5fb3a733a7228a1729181_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3Acd6c55b0d09b7a02869d615361bfe8a5a10719b292d5fb3a733a7228a1729181?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b42061c6aaba87aa86d88f54cc86dcec56015a74576cb63de5294d5f5b7090ae_s390x",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b42061c6aaba87aa86d88f54cc86dcec56015a74576cb63de5294d5f5b7090ae_s390x",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b42061c6aaba87aa86d88f54cc86dcec56015a74576cb63de5294d5f5b7090ae_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3Ab42061c6aaba87aa86d88f54cc86dcec56015a74576cb63de5294d5f5b7090ae?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776675880"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2733973ad952cc77643356c918f34d16a6decd25c47b2f752d42fd75f3724f9c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2733973ad952cc77643356c918f34d16a6decd25c47b2f752d42fd75f3724f9c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2733973ad952cc77643356c918f34d16a6decd25c47b2f752d42fd75f3724f9c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A2733973ad952cc77643356c918f34d16a6decd25c47b2f752d42fd75f3724f9c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6e1bff042795d74a89f6131141b0823f618f605868f53ddcb86a42711628d45d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6e1bff042795d74a89f6131141b0823f618f605868f53ddcb86a42711628d45d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6e1bff042795d74a89f6131141b0823f618f605868f53ddcb86a42711628d45d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A6e1bff042795d74a89f6131141b0823f618f605868f53ddcb86a42711628d45d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776673965"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:27045aabfee1bef5a0e5fe7c8d87998b5d085e90914cf0cc879be88a0b289f32_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:27045aabfee1bef5a0e5fe7c8d87998b5d085e90914cf0cc879be88a0b289f32_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:27045aabfee1bef5a0e5fe7c8d87998b5d085e90914cf0cc879be88a0b289f32_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:c8c5207f1784a5357e087914354fa0f77b8f315809a88562ed2c27c1dc1693ba_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:c8c5207f1784a5357e087914354fa0f77b8f315809a88562ed2c27c1dc1693ba_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:c8c5207f1784a5357e087914354fa0f77b8f315809a88562ed2c27c1dc1693ba_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d717c8260a3499f114f146efe58afc1137caa648dc2c57791fa31bd6554ae458_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d717c8260a3499f114f146efe58afc1137caa648dc2c57791fa31bd6554ae458_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d717c8260a3499f114f146efe58afc1137caa648dc2c57791fa31bd6554ae458_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f1ab962fa8e19af109094f673b205461b1b1a4ea26b7620268d15d3fd1b8ecd4_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f1ab962fa8e19af109094f673b205461b1b1a4ea26b7620268d15d3fd1b8ecd4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f1ab962fa8e19af109094f673b205461b1b1a4ea26b7620268d15d3fd1b8ecd4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4c598df247745481bfaea4aba7598496d87e6407e1c080b59384b3a04c43ca0e_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4c598df247745481bfaea4aba7598496d87e6407e1c080b59384b3a04c43ca0e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4c598df247745481bfaea4aba7598496d87e6407e1c080b59384b3a04c43ca0e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:816548bd51389d5cc6f6354d3893d252d3201e4bf96593e91259104e81d67759_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:816548bd51389d5cc6f6354d3893d252d3201e4bf96593e91259104e81d67759_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:816548bd51389d5cc6f6354d3893d252d3201e4bf96593e91259104e81d67759_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:826d0571835e3585f7709f36b8319ef8ddf4e8ef8a529e89728b20f35399f1dc_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:826d0571835e3585f7709f36b8319ef8ddf4e8ef8a529e89728b20f35399f1dc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:826d0571835e3585f7709f36b8319ef8ddf4e8ef8a529e89728b20f35399f1dc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d27b8222063a442039c3fa5e960c256eef2c7f44c91ebc17686dc596595f1d14_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d27b8222063a442039c3fa5e960c256eef2c7f44c91ebc17686dc596595f1d14_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d27b8222063a442039c3fa5e960c256eef2c7f44c91ebc17686dc596595f1d14_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:241f11e567990a11f25ebbcb91cec2d5698ac736fa7ecc3bf5d6505c2e590b5d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:241f11e567990a11f25ebbcb91cec2d5698ac736fa7ecc3bf5d6505c2e590b5d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:241f11e567990a11f25ebbcb91cec2d5698ac736fa7ecc3bf5d6505c2e590b5d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:893e94bcd1ea377a5f2bae00dee9030dace7eef11fc6e54229e00472ac210ec2_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:893e94bcd1ea377a5f2bae00dee9030dace7eef11fc6e54229e00472ac210ec2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:893e94bcd1ea377a5f2bae00dee9030dace7eef11fc6e54229e00472ac210ec2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8cde7c931c746c4428bf22d9dcdd8caf518e4273bcc2b88c8c3cb025b445fbec_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8cde7c931c746c4428bf22d9dcdd8caf518e4273bcc2b88c8c3cb025b445fbec_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8cde7c931c746c4428bf22d9dcdd8caf518e4273bcc2b88c8c3cb025b445fbec_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ebccab85b2775fb13e29872d87985ab69a774a4aa6556402dc1e4478232dfa4b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ebccab85b2775fb13e29872d87985ab69a774a4aa6556402dc1e4478232dfa4b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ebccab85b2775fb13e29872d87985ab69a774a4aa6556402dc1e4478232dfa4b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:7284df8190c5e8cc412917b22396f6db8a09f932851e94b934dd73fea6b7e9e9_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:7284df8190c5e8cc412917b22396f6db8a09f932851e94b934dd73fea6b7e9e9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:7284df8190c5e8cc412917b22396f6db8a09f932851e94b934dd73fea6b7e9e9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c042aafcfd8feb67684753e52602431b1181621acdcc9e61fae9601961637ff6_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c042aafcfd8feb67684753e52602431b1181621acdcc9e61fae9601961637ff6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c042aafcfd8feb67684753e52602431b1181621acdcc9e61fae9601961637ff6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:cca78bfdd762f3413ab1762660ccd5e0ee61da1f83fc2179fbb803518011819c_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:cca78bfdd762f3413ab1762660ccd5e0ee61da1f83fc2179fbb803518011819c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:cca78bfdd762f3413ab1762660ccd5e0ee61da1f83fc2179fbb803518011819c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d1f7bdf7807d6d0741275d3bb9510eb892dadae930826f3d2c24a55e9782d5ff_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d1f7bdf7807d6d0741275d3bb9510eb892dadae930826f3d2c24a55e9782d5ff_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d1f7bdf7807d6d0741275d3bb9510eb892dadae930826f3d2c24a55e9782d5ff_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:0145eea7baa031331c188b69ddef4ad0765a5c9ca37fd27d54e2fc30e3eaee47_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:0145eea7baa031331c188b69ddef4ad0765a5c9ca37fd27d54e2fc30e3eaee47_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:0145eea7baa031331c188b69ddef4ad0765a5c9ca37fd27d54e2fc30e3eaee47_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:445beae6bc5a6295d12310bee6bbd6f3a48011c95b40515e6382e27b2421aa9e_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:445beae6bc5a6295d12310bee6bbd6f3a48011c95b40515e6382e27b2421aa9e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:445beae6bc5a6295d12310bee6bbd6f3a48011c95b40515e6382e27b2421aa9e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:64edff7956f6b9a8e508080dd1ff3db9dcf4646a5945e4f5a568ff9de8479598_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:64edff7956f6b9a8e508080dd1ff3db9dcf4646a5945e4f5a568ff9de8479598_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:64edff7956f6b9a8e508080dd1ff3db9dcf4646a5945e4f5a568ff9de8479598_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:849dbb2d6396654470d6dcadc0754f6917bfb7cb41f339d9a9d07009fecebc06_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:849dbb2d6396654470d6dcadc0754f6917bfb7cb41f339d9a9d07009fecebc06_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:849dbb2d6396654470d6dcadc0754f6917bfb7cb41f339d9a9d07009fecebc06_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:2dcfefacc2e1e3253cd017d52e099ddabbcc122f133455fa9e445b73ac3ac083_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:2dcfefacc2e1e3253cd017d52e099ddabbcc122f133455fa9e445b73ac3ac083_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:2dcfefacc2e1e3253cd017d52e099ddabbcc122f133455fa9e445b73ac3ac083_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:ab33e7aa29a7001f8d86575f885e9b6d38ba4d7f0954539757817aeba480e524_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:ab33e7aa29a7001f8d86575f885e9b6d38ba4d7f0954539757817aeba480e524_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:ab33e7aa29a7001f8d86575f885e9b6d38ba4d7f0954539757817aeba480e524_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:be6abecefbcb3a36db0535262987171a032ee22a824880a4d41922808a0a0bc5_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:be6abecefbcb3a36db0535262987171a032ee22a824880a4d41922808a0a0bc5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:be6abecefbcb3a36db0535262987171a032ee22a824880a4d41922808a0a0bc5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:f8b3c8686ffdc3c6d92e46fe5246566cefb9d12e355e3edfc82741e9888dadd2_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:f8b3c8686ffdc3c6d92e46fe5246566cefb9d12e355e3edfc82741e9888dadd2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:f8b3c8686ffdc3c6d92e46fe5246566cefb9d12e355e3edfc82741e9888dadd2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1e9f84c94a6f2320b18d426e34ce5614585a785b0d260706fb7b3e2ed653df5e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1e9f84c94a6f2320b18d426e34ce5614585a785b0d260706fb7b3e2ed653df5e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1e9f84c94a6f2320b18d426e34ce5614585a785b0d260706fb7b3e2ed653df5e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:5e1d0d8d79e70eb5ca5bc971b767a108244edfdfa08aa4f9b1a1a7ea714b11e3_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:5e1d0d8d79e70eb5ca5bc971b767a108244edfdfa08aa4f9b1a1a7ea714b11e3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:5e1d0d8d79e70eb5ca5bc971b767a108244edfdfa08aa4f9b1a1a7ea714b11e3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:ebf8bf1c22cc0adc2a59b4f8eaeb1b81191587a94aa816d6da666a261719af08_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:ebf8bf1c22cc0adc2a59b4f8eaeb1b81191587a94aa816d6da666a261719af08_s390x"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:ebf8bf1c22cc0adc2a59b4f8eaeb1b81191587a94aa816d6da666a261719af08_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eca15f37d0de3827cbd8456edc10124c849b423928473902afaf54aa0bcbd624_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eca15f37d0de3827cbd8456edc10124c849b423928473902afaf54aa0bcbd624_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eca15f37d0de3827cbd8456edc10124c849b423928473902afaf54aa0bcbd624_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:51f179d88b85e36f646435828302d67c8ff327d5560866c5dfa1b7bba5c0a5f4_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:51f179d88b85e36f646435828302d67c8ff327d5560866c5dfa1b7bba5c0a5f4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:51f179d88b85e36f646435828302d67c8ff327d5560866c5dfa1b7bba5c0a5f4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:db4b25de2051b1762ff366ffca0e6f93f4f810f0ea38cb2c7803adf019f840f4_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:db4b25de2051b1762ff366ffca0e6f93f4f810f0ea38cb2c7803adf019f840f4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:db4b25de2051b1762ff366ffca0e6f93f4f810f0ea38cb2c7803adf019f840f4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:e2160827e92d2fbbb7e624fe92e762b3b50320fafb76ede4f66b882228b78540_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:e2160827e92d2fbbb7e624fe92e762b3b50320fafb76ede4f66b882228b78540_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:e2160827e92d2fbbb7e624fe92e762b3b50320fafb76ede4f66b882228b78540_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f50289ca9ec0a4abf468b3a93476b10415bb6da99f16ca316d4c3f08f1f16594_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f50289ca9ec0a4abf468b3a93476b10415bb6da99f16ca316d4c3f08f1f16594_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f50289ca9ec0a4abf468b3a93476b10415bb6da99f16ca316d4c3f08f1f16594_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:16b358289777243a6763223070dd0012a1ef5733ed810ba27aee168ecbf0a9eb_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:16b358289777243a6763223070dd0012a1ef5733ed810ba27aee168ecbf0a9eb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:16b358289777243a6763223070dd0012a1ef5733ed810ba27aee168ecbf0a9eb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:5dfb9bb1038b0a057da7ac7e0367dce3601acf3494704b057070a786baaad59a_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:5dfb9bb1038b0a057da7ac7e0367dce3601acf3494704b057070a786baaad59a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:5dfb9bb1038b0a057da7ac7e0367dce3601acf3494704b057070a786baaad59a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:541fb836a9c207e030f91060fe9bd31dd1cfa8900a1b74463f9858cc36d97ed2_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:541fb836a9c207e030f91060fe9bd31dd1cfa8900a1b74463f9858cc36d97ed2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:541fb836a9c207e030f91060fe9bd31dd1cfa8900a1b74463f9858cc36d97ed2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:5c53c6d78a52b17d51db99a72117549e2179f90d4243f0930355d1378d528201_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:5c53c6d78a52b17d51db99a72117549e2179f90d4243f0930355d1378d528201_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:5c53c6d78a52b17d51db99a72117549e2179f90d4243f0930355d1378d528201_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:08238fbaa230a53fd4ea7f3eb701b398349b55161d57dbc4e303b0a46080d985_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:08238fbaa230a53fd4ea7f3eb701b398349b55161d57dbc4e303b0a46080d985_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:08238fbaa230a53fd4ea7f3eb701b398349b55161d57dbc4e303b0a46080d985_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:89ae87596cb9e3524dbb1cafeb8133e1d9a3a3aa9e8ea039b804f40cf44e1c9c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:89ae87596cb9e3524dbb1cafeb8133e1d9a3a3aa9e8ea039b804f40cf44e1c9c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:89ae87596cb9e3524dbb1cafeb8133e1d9a3a3aa9e8ea039b804f40cf44e1c9c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:fec596fdba12eef010aea34b308282370242e96ff65cff8936e28369702079f6_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:fec596fdba12eef010aea34b308282370242e96ff65cff8936e28369702079f6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:fec596fdba12eef010aea34b308282370242e96ff65cff8936e28369702079f6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:0a07ba50051553c3dcff9068c9040dfa8775fc128bac0784900ba4863fa81609_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:0a07ba50051553c3dcff9068c9040dfa8775fc128bac0784900ba4863fa81609_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:0a07ba50051553c3dcff9068c9040dfa8775fc128bac0784900ba4863fa81609_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1b465eaf900309bed4cedb06b46a1e4edb10b9d0ba993585aed84a97c91ae70a_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1b465eaf900309bed4cedb06b46a1e4edb10b9d0ba993585aed84a97c91ae70a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1b465eaf900309bed4cedb06b46a1e4edb10b9d0ba993585aed84a97c91ae70a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2ea6e5bcc3b3e2dfd98eadbf96dd9cea26308a0542fb1d953137a04a48456985_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2ea6e5bcc3b3e2dfd98eadbf96dd9cea26308a0542fb1d953137a04a48456985_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2ea6e5bcc3b3e2dfd98eadbf96dd9cea26308a0542fb1d953137a04a48456985_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:67eb2f9fffe76c2e3bb133c7c4a2cec0178e3ee0076ddfc18b08bcda407940b5_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:67eb2f9fffe76c2e3bb133c7c4a2cec0178e3ee0076ddfc18b08bcda407940b5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:67eb2f9fffe76c2e3bb133c7c4a2cec0178e3ee0076ddfc18b08bcda407940b5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2f849055d3a811c2ec3f5391e0fd01f3fd7d8b9ea483a39df47e5d8a2ed6baee_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2f849055d3a811c2ec3f5391e0fd01f3fd7d8b9ea483a39df47e5d8a2ed6baee_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2f849055d3a811c2ec3f5391e0fd01f3fd7d8b9ea483a39df47e5d8a2ed6baee_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:503f0ab56d42395194dc5f050b43ec4fb69414750630e76a2634d881e2bd671f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:503f0ab56d42395194dc5f050b43ec4fb69414750630e76a2634d881e2bd671f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:503f0ab56d42395194dc5f050b43ec4fb69414750630e76a2634d881e2bd671f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:9bf7b748def1c91caa1e93bbb9f13f5d054c97c328d667ad00b060559d76c1c7_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:9bf7b748def1c91caa1e93bbb9f13f5d054c97c328d667ad00b060559d76c1c7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:9bf7b748def1c91caa1e93bbb9f13f5d054c97c328d667ad00b060559d76c1c7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:c8b1c0c42003158da4042929ed9b598a0c5dad70ed87163ef72cb13657de0e52_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:c8b1c0c42003158da4042929ed9b598a0c5dad70ed87163ef72cb13657de0e52_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:c8b1c0c42003158da4042929ed9b598a0c5dad70ed87163ef72cb13657de0e52_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:098ccc2275ab68cee3e5ec20e7f6b302ed76e4d66bf65957376ecf184a47c1be_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:098ccc2275ab68cee3e5ec20e7f6b302ed76e4d66bf65957376ecf184a47c1be_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:098ccc2275ab68cee3e5ec20e7f6b302ed76e4d66bf65957376ecf184a47c1be_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:3406801cb156af01e2c4f78dec2e1a4f9a5bb881dd2fb4268dd621435e634b93_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:3406801cb156af01e2c4f78dec2e1a4f9a5bb881dd2fb4268dd621435e634b93_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:3406801cb156af01e2c4f78dec2e1a4f9a5bb881dd2fb4268dd621435e634b93_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:b18d87c7b68badc9c90165b6206d8ecb1bbae17d0ad401fdf7bbed5df4ded0f8_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:b18d87c7b68badc9c90165b6206d8ecb1bbae17d0ad401fdf7bbed5df4ded0f8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:b18d87c7b68badc9c90165b6206d8ecb1bbae17d0ad401fdf7bbed5df4ded0f8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:cf7f6124729e761b1acab5f7ea343365bf66942c85fe92b030ad568cb20a8e08_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:cf7f6124729e761b1acab5f7ea343365bf66942c85fe92b030ad568cb20a8e08_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:cf7f6124729e761b1acab5f7ea343365bf66942c85fe92b030ad568cb20a8e08_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:593e1d0e8b26b19eb319b94e0c5338d7bee33863456eae9d59674b0239a9d2e5_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:593e1d0e8b26b19eb319b94e0c5338d7bee33863456eae9d59674b0239a9d2e5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:593e1d0e8b26b19eb319b94e0c5338d7bee33863456eae9d59674b0239a9d2e5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8ffcbc96bdd5e6b4f55d1fa1e4cdc4acfbc2d4f62705fc13e3b0a37dcb08eff9_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8ffcbc96bdd5e6b4f55d1fa1e4cdc4acfbc2d4f62705fc13e3b0a37dcb08eff9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8ffcbc96bdd5e6b4f55d1fa1e4cdc4acfbc2d4f62705fc13e3b0a37dcb08eff9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d19cb645ed48afbf70ffd3f9c096f971192f0c5c00c7e8897f36c328e68c7690_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d19cb645ed48afbf70ffd3f9c096f971192f0c5c00c7e8897f36c328e68c7690_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d19cb645ed48afbf70ffd3f9c096f971192f0c5c00c7e8897f36c328e68c7690_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:db7c9685d5a8c1bafb226e2673a69bac67691768338bb42a3b8d278bd9ed813f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:db7c9685d5a8c1bafb226e2673a69bac67691768338bb42a3b8d278bd9ed813f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:db7c9685d5a8c1bafb226e2673a69bac67691768338bb42a3b8d278bd9ed813f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:81cd79485653bad71c4142ac661ff1102cc977ae678e715caa8494b011a42dbf_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:81cd79485653bad71c4142ac661ff1102cc977ae678e715caa8494b011a42dbf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:81cd79485653bad71c4142ac661ff1102cc977ae678e715caa8494b011a42dbf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:c3c25537f0d938d99403e7c02f1e7d7c88665bbc08c2bfcd70b8d100a4c7cfa4_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:c3c25537f0d938d99403e7c02f1e7d7c88665bbc08c2bfcd70b8d100a4c7cfa4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:c3c25537f0d938d99403e7c02f1e7d7c88665bbc08c2bfcd70b8d100a4c7cfa4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:c561564a9eda424df7392e4f220c80ae4f8b7fda8de60157d5ddbd65d5135f27_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:c561564a9eda424df7392e4f220c80ae4f8b7fda8de60157d5ddbd65d5135f27_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:c561564a9eda424df7392e4f220c80ae4f8b7fda8de60157d5ddbd65d5135f27_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e11806e1270b7734a3a1306f0a69d4b5337450e95b29b9b495a7d9670e99f0c8_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e11806e1270b7734a3a1306f0a69d4b5337450e95b29b9b495a7d9670e99f0c8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e11806e1270b7734a3a1306f0a69d4b5337450e95b29b9b495a7d9670e99f0c8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:489e5e540c0bbe17b29d839412ff237e9b4d72828cf32fbe512b1a4a0c920443_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:489e5e540c0bbe17b29d839412ff237e9b4d72828cf32fbe512b1a4a0c920443_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:489e5e540c0bbe17b29d839412ff237e9b4d72828cf32fbe512b1a4a0c920443_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5a93d29002aa07e5f503916b106a0d97d43738dd6340f3aeec1320d47b9c6928_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5a93d29002aa07e5f503916b106a0d97d43738dd6340f3aeec1320d47b9c6928_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5a93d29002aa07e5f503916b106a0d97d43738dd6340f3aeec1320d47b9c6928_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:b55bd4c4cab0f5277aca4573b676d595429b345df2de10f34ea1661b9c3b68d0_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:b55bd4c4cab0f5277aca4573b676d595429b345df2de10f34ea1661b9c3b68d0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:b55bd4c4cab0f5277aca4573b676d595429b345df2de10f34ea1661b9c3b68d0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:f504360dffc0b90a4721394aa068ddb95038a6f1b3d6d6023d799d2b6ea4b739_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:f504360dffc0b90a4721394aa068ddb95038a6f1b3d6d6023d799d2b6ea4b739_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:f504360dffc0b90a4721394aa068ddb95038a6f1b3d6d6023d799d2b6ea4b739_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:cb02ee426076c69bda9459299653a67e19b84663d6b18d08f8ab47843d69e151_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:cb02ee426076c69bda9459299653a67e19b84663d6b18d08f8ab47843d69e151_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:cb02ee426076c69bda9459299653a67e19b84663d6b18d08f8ab47843d69e151_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:cc9cd14a515fd851ab843c62a6a3443f6ff2684710044d232a304caa18121e84_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:cc9cd14a515fd851ab843c62a6a3443f6ff2684710044d232a304caa18121e84_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:cc9cd14a515fd851ab843c62a6a3443f6ff2684710044d232a304caa18121e84_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:0546d72bd41c58d8094de7cc88d3e634ea75e4f3e7cb44ca8198cf1b2e5ab04c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:0546d72bd41c58d8094de7cc88d3e634ea75e4f3e7cb44ca8198cf1b2e5ab04c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:0546d72bd41c58d8094de7cc88d3e634ea75e4f3e7cb44ca8198cf1b2e5ab04c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:a8c11de11e7778c5357f962f731530c815ee73a519f54b7a71897092d1377796_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:a8c11de11e7778c5357f962f731530c815ee73a519f54b7a71897092d1377796_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:a8c11de11e7778c5357f962f731530c815ee73a519f54b7a71897092d1377796_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:09522adc9acad2be18602e32991e68d0127f894460506e70aa86df54c20affd0_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:09522adc9acad2be18602e32991e68d0127f894460506e70aa86df54c20affd0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:09522adc9acad2be18602e32991e68d0127f894460506e70aa86df54c20affd0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bcfa40dbf26735094fd0f6ac3cf1cad83b7539f8bc75d81eb64e0a19d97c1b1d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bcfa40dbf26735094fd0f6ac3cf1cad83b7539f8bc75d81eb64e0a19d97c1b1d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bcfa40dbf26735094fd0f6ac3cf1cad83b7539f8bc75d81eb64e0a19d97c1b1d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:f6d05e4d58c287bd21329a044848e47c197fc83e4af67f7e64306d95b69a6498_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:f6d05e4d58c287bd21329a044848e47c197fc83e4af67f7e64306d95b69a6498_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:f6d05e4d58c287bd21329a044848e47c197fc83e4af67f7e64306d95b69a6498_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:fb4a1d15131490352837f759ee7b2f7b55696f794a40ba786627a1cb615cfa64_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:fb4a1d15131490352837f759ee7b2f7b55696f794a40ba786627a1cb615cfa64_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:fb4a1d15131490352837f759ee7b2f7b55696f794a40ba786627a1cb615cfa64_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:031433fa156008a7ce297b63ede479a6efd8791f5c5ce4ceb9f132f209ff656c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:031433fa156008a7ce297b63ede479a6efd8791f5c5ce4ceb9f132f209ff656c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:031433fa156008a7ce297b63ede479a6efd8791f5c5ce4ceb9f132f209ff656c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:294ec77677a6481d4cfe216f425703b5476165ffe1ff86e835ec2becac8f7dca_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:294ec77677a6481d4cfe216f425703b5476165ffe1ff86e835ec2becac8f7dca_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:294ec77677a6481d4cfe216f425703b5476165ffe1ff86e835ec2becac8f7dca_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:74298b0408210925cb94b412d12f5a16941e1fe5991c2cead3d26cd5c6ffb4cc_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:74298b0408210925cb94b412d12f5a16941e1fe5991c2cead3d26cd5c6ffb4cc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:74298b0408210925cb94b412d12f5a16941e1fe5991c2cead3d26cd5c6ffb4cc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:a86dd4ae0fb2a6057eb30e594f7fc3c722f33dd554dff36aa498b15d8c1dcc13_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:a86dd4ae0fb2a6057eb30e594f7fc3c722f33dd554dff36aa498b15d8c1dcc13_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:a86dd4ae0fb2a6057eb30e594f7fc3c722f33dd554dff36aa498b15d8c1dcc13_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:0f89db43d98c11d69c2edb9d3fae3085d22a70b3de42a2f4e68969391b4565ea_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:0f89db43d98c11d69c2edb9d3fae3085d22a70b3de42a2f4e68969391b4565ea_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:0f89db43d98c11d69c2edb9d3fae3085d22a70b3de42a2f4e68969391b4565ea_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:28aeb2ad9b5bd6bec712ef4dc3f773f5dedd47acd145bcd6007a1f9778bb07e6_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:28aeb2ad9b5bd6bec712ef4dc3f773f5dedd47acd145bcd6007a1f9778bb07e6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:28aeb2ad9b5bd6bec712ef4dc3f773f5dedd47acd145bcd6007a1f9778bb07e6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:bc7715e7835899f6f3ef173778ce2d07e1a2d058b87031a6d7b2202a42ccef33_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:bc7715e7835899f6f3ef173778ce2d07e1a2d058b87031a6d7b2202a42ccef33_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:bc7715e7835899f6f3ef173778ce2d07e1a2d058b87031a6d7b2202a42ccef33_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:dd4b41d440d00aba3c6e30c2b1c116516402d7fb8e7c1ab10b97a4e8f4fc507e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:dd4b41d440d00aba3c6e30c2b1c116516402d7fb8e7c1ab10b97a4e8f4fc507e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:dd4b41d440d00aba3c6e30c2b1c116516402d7fb8e7c1ab10b97a4e8f4fc507e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3da13d1a5e673734b43f85ade4ae4d40575945a62e756563755c226783829959_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3da13d1a5e673734b43f85ade4ae4d40575945a62e756563755c226783829959_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3da13d1a5e673734b43f85ade4ae4d40575945a62e756563755c226783829959_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:44a56cd708f76ac94195de3861748ec1c5aaab4127a6e39f219635963722e395_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:44a56cd708f76ac94195de3861748ec1c5aaab4127a6e39f219635963722e395_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:44a56cd708f76ac94195de3861748ec1c5aaab4127a6e39f219635963722e395_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:4572a0ae30f3467cd7ae083acfc05ed045b5397ae284ca16c40886f6ae675baa_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:4572a0ae30f3467cd7ae083acfc05ed045b5397ae284ca16c40886f6ae675baa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:4572a0ae30f3467cd7ae083acfc05ed045b5397ae284ca16c40886f6ae675baa_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:9f1730db64403eefae6310cf58890d16a5e21aa1b9086028620cd6d29e6cd754_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:9f1730db64403eefae6310cf58890d16a5e21aa1b9086028620cd6d29e6cd754_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:9f1730db64403eefae6310cf58890d16a5e21aa1b9086028620cd6d29e6cd754_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:28a48ad6aff8602a5b59c2203047a598d5adfeea59503bbaad02d1e3986a2279_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:28a48ad6aff8602a5b59c2203047a598d5adfeea59503bbaad02d1e3986a2279_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:28a48ad6aff8602a5b59c2203047a598d5adfeea59503bbaad02d1e3986a2279_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:8c21500cbb9ee0973efb67aa8c32cc1359a94548b2c2a6386b30cbae695934ba_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:8c21500cbb9ee0973efb67aa8c32cc1359a94548b2c2a6386b30cbae695934ba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:8c21500cbb9ee0973efb67aa8c32cc1359a94548b2c2a6386b30cbae695934ba_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:ae4d82e3713722e1aed6abc0a7ac1b08766fc24d64f3f3ba01f58dda96fc0408_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:ae4d82e3713722e1aed6abc0a7ac1b08766fc24d64f3f3ba01f58dda96fc0408_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:ae4d82e3713722e1aed6abc0a7ac1b08766fc24d64f3f3ba01f58dda96fc0408_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:3c89b10216b34a43128a9ffafcd10adb92517166554966b3f8b016679ee8d133_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:3c89b10216b34a43128a9ffafcd10adb92517166554966b3f8b016679ee8d133_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:3c89b10216b34a43128a9ffafcd10adb92517166554966b3f8b016679ee8d133_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9987c9ba25b20cf8e8bf11d388f03330358c1ca37e76724f5d229670d61580d0_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9987c9ba25b20cf8e8bf11d388f03330358c1ca37e76724f5d229670d61580d0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9987c9ba25b20cf8e8bf11d388f03330358c1ca37e76724f5d229670d61580d0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:bd0a7767d4dd5c049fcfa6a181fb4dc7b44149ab5790be1cec1b6525d9ba6cff_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:bd0a7767d4dd5c049fcfa6a181fb4dc7b44149ab5790be1cec1b6525d9ba6cff_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:bd0a7767d4dd5c049fcfa6a181fb4dc7b44149ab5790be1cec1b6525d9ba6cff_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2d52d819f0a37f9df61dcf3ab118e4fc391fb434fc5703570161422df34d4461_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2d52d819f0a37f9df61dcf3ab118e4fc391fb434fc5703570161422df34d4461_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2d52d819f0a37f9df61dcf3ab118e4fc391fb434fc5703570161422df34d4461_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:37b9c5f1a90b03a883f0b1eed4333b2f12e5f13cc664d8335daa1cb8a3f26d64_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:37b9c5f1a90b03a883f0b1eed4333b2f12e5f13cc664d8335daa1cb8a3f26d64_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:37b9c5f1a90b03a883f0b1eed4333b2f12e5f13cc664d8335daa1cb8a3f26d64_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ab485d4b0369a967fbc4125ffa539f43b28f9ad7bf3ad0c5885bd86dee0214ef_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ab485d4b0369a967fbc4125ffa539f43b28f9ad7bf3ad0c5885bd86dee0214ef_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ab485d4b0369a967fbc4125ffa539f43b28f9ad7bf3ad0c5885bd86dee0214ef_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:f3092387090218098102e8eb44f1f4c05dcd62e5b31fbc00ac258684bb2a8609_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:f3092387090218098102e8eb44f1f4c05dcd62e5b31fbc00ac258684bb2a8609_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:f3092387090218098102e8eb44f1f4c05dcd62e5b31fbc00ac258684bb2a8609_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4f54178cce1ac5c8f00aa958d61f747402c0e4ef3d59f3c9afe7809353be45dc_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4f54178cce1ac5c8f00aa958d61f747402c0e4ef3d59f3c9afe7809353be45dc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4f54178cce1ac5c8f00aa958d61f747402c0e4ef3d59f3c9afe7809353be45dc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d05d48ea317a9466c4f9e5cc9a1cd60422830da0eea823f686cd8d3aae317c00_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d05d48ea317a9466c4f9e5cc9a1cd60422830da0eea823f686cd8d3aae317c00_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d05d48ea317a9466c4f9e5cc9a1cd60422830da0eea823f686cd8d3aae317c00_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e7209fd84bb9522237f9caedb43e0dd27a93b63d9066dac1330e5f6974b89810_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e7209fd84bb9522237f9caedb43e0dd27a93b63d9066dac1330e5f6974b89810_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e7209fd84bb9522237f9caedb43e0dd27a93b63d9066dac1330e5f6974b89810_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:f50fa05848ec5ecb085b106903890d7c58d583c3d0b0697c9f739fc9fcef7a3b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:f50fa05848ec5ecb085b106903890d7c58d583c3d0b0697c9f739fc9fcef7a3b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:f50fa05848ec5ecb085b106903890d7c58d583c3d0b0697c9f739fc9fcef7a3b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0538c3ce443ce61357594d15eb9e70a1a3dd2b3b0672e90ef0c0fb200c77f392_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0538c3ce443ce61357594d15eb9e70a1a3dd2b3b0672e90ef0c0fb200c77f392_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0538c3ce443ce61357594d15eb9e70a1a3dd2b3b0672e90ef0c0fb200c77f392_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:1bab45debd45c344b562c46d75c27540a1f05492028970f6991f9d30dfe680de_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:1bab45debd45c344b562c46d75c27540a1f05492028970f6991f9d30dfe680de_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:1bab45debd45c344b562c46d75c27540a1f05492028970f6991f9d30dfe680de_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:23d3c2b463442f8c93706486e537be521a760e0fa51c75a2723f0fc1dbfe20ac_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:23d3c2b463442f8c93706486e537be521a760e0fa51c75a2723f0fc1dbfe20ac_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:23d3c2b463442f8c93706486e537be521a760e0fa51c75a2723f0fc1dbfe20ac_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:598b03d5232daa203ffcf4d772e7035ca2f51cd1b11a091dd6306a56a2c8615d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:598b03d5232daa203ffcf4d772e7035ca2f51cd1b11a091dd6306a56a2c8615d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:598b03d5232daa203ffcf4d772e7035ca2f51cd1b11a091dd6306a56a2c8615d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5e26da0b5c556d8015c8bd66f2f3d2ba103f58c138ca618448cd403d805c809d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5e26da0b5c556d8015c8bd66f2f3d2ba103f58c138ca618448cd403d805c809d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5e26da0b5c556d8015c8bd66f2f3d2ba103f58c138ca618448cd403d805c809d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:982b77ab4a9a65923c0720725a7e1b3978a4ef06c29ad240932ec119bf189a4e_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:982b77ab4a9a65923c0720725a7e1b3978a4ef06c29ad240932ec119bf189a4e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:982b77ab4a9a65923c0720725a7e1b3978a4ef06c29ad240932ec119bf189a4e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:eee869f77558af2bc003569f17812b7d5897b38f4d7afb24cbf7d87adb6483af_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:eee869f77558af2bc003569f17812b7d5897b38f4d7afb24cbf7d87adb6483af_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:eee869f77558af2bc003569f17812b7d5897b38f4d7afb24cbf7d87adb6483af_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f71282ababe15f450e152270ca7a1fa1fee389c72717e5539ca443ef7a852fba_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f71282ababe15f450e152270ca7a1fa1fee389c72717e5539ca443ef7a852fba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f71282ababe15f450e152270ca7a1fa1fee389c72717e5539ca443ef7a852fba_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:549c32c61d6d2d538b9433af65debc4a576c25b88ec3bd868599dd2c50667e6a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:549c32c61d6d2d538b9433af65debc4a576c25b88ec3bd868599dd2c50667e6a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:549c32c61d6d2d538b9433af65debc4a576c25b88ec3bd868599dd2c50667e6a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6ab99bdcedbf6cd877158e15f398450e4d9386bba842eb2a778c88053e1b22a4_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6ab99bdcedbf6cd877158e15f398450e4d9386bba842eb2a778c88053e1b22a4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6ab99bdcedbf6cd877158e15f398450e4d9386bba842eb2a778c88053e1b22a4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:accb05d004c7bdd050b8949a882a788b4ec4199afb9d0bfdd3e96202ca2666d0_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:accb05d004c7bdd050b8949a882a788b4ec4199afb9d0bfdd3e96202ca2666d0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:accb05d004c7bdd050b8949a882a788b4ec4199afb9d0bfdd3e96202ca2666d0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c414aa18fc8ef38befe69cab2e7cd12283cf8b3148c7a9596c9183c5f4ac49c4_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c414aa18fc8ef38befe69cab2e7cd12283cf8b3148c7a9596c9183c5f4ac49c4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c414aa18fc8ef38befe69cab2e7cd12283cf8b3148c7a9596c9183c5f4ac49c4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:422185f18695351d07ef4afacb3122b6f1a680bb53e33c5674a76bc9ee61ea11_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:422185f18695351d07ef4afacb3122b6f1a680bb53e33c5674a76bc9ee61ea11_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:422185f18695351d07ef4afacb3122b6f1a680bb53e33c5674a76bc9ee61ea11_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:63c777b15d54d714c7d266dfb286592bc422b638bec176878fa2e0dcc44afd87_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:63c777b15d54d714c7d266dfb286592bc422b638bec176878fa2e0dcc44afd87_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:63c777b15d54d714c7d266dfb286592bc422b638bec176878fa2e0dcc44afd87_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:64e1a4e57dbbd35238fcdd3b80baf0281566a27ce76f2ad389fcc50a7a16c3ac_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:64e1a4e57dbbd35238fcdd3b80baf0281566a27ce76f2ad389fcc50a7a16c3ac_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:64e1a4e57dbbd35238fcdd3b80baf0281566a27ce76f2ad389fcc50a7a16c3ac_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:cdc406a39b5241843f71964910bffd15bcd9ff3f4467e9b13bf6ea707bba3a8e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:cdc406a39b5241843f71964910bffd15bcd9ff3f4467e9b13bf6ea707bba3a8e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:cdc406a39b5241843f71964910bffd15bcd9ff3f4467e9b13bf6ea707bba3a8e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:7dfcc4fe44678675d4292555c78593b176bcb0e1ee7c1cdc83b8de3045ac3153_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:7dfcc4fe44678675d4292555c78593b176bcb0e1ee7c1cdc83b8de3045ac3153_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:7dfcc4fe44678675d4292555c78593b176bcb0e1ee7c1cdc83b8de3045ac3153_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:95f73756b6131fe9798ae620de689a405150ca71c60fd6413bb1174c0b7b732b_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:95f73756b6131fe9798ae620de689a405150ca71c60fd6413bb1174c0b7b732b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:95f73756b6131fe9798ae620de689a405150ca71c60fd6413bb1174c0b7b732b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:d8e9ac204dd8c409f5cb2d732bfa2fe56688fbb9e285fc5b3557675b0b04363a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:d8e9ac204dd8c409f5cb2d732bfa2fe56688fbb9e285fc5b3557675b0b04363a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:d8e9ac204dd8c409f5cb2d732bfa2fe56688fbb9e285fc5b3557675b0b04363a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:40d03ceb295d791dd2929568883cb35fa1617090b85ba6e0fdadbad4778084f5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:40d03ceb295d791dd2929568883cb35fa1617090b85ba6e0fdadbad4778084f5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:40d03ceb295d791dd2929568883cb35fa1617090b85ba6e0fdadbad4778084f5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4e72b1544de64ad3fa7eb5cea54d8504da71ac51271d6f27e719ababc4bd5c92_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4e72b1544de64ad3fa7eb5cea54d8504da71ac51271d6f27e719ababc4bd5c92_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4e72b1544de64ad3fa7eb5cea54d8504da71ac51271d6f27e719ababc4bd5c92_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:83c7234284d56d2ab10e7adf720aace8f950831003a6fea7f5fcf19203110d95_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:83c7234284d56d2ab10e7adf720aace8f950831003a6fea7f5fcf19203110d95_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:83c7234284d56d2ab10e7adf720aace8f950831003a6fea7f5fcf19203110d95_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c13d4ebf65e53ba5423c136c3aa5eecdc1c3026a48069d4583e7a242969f3c9_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c13d4ebf65e53ba5423c136c3aa5eecdc1c3026a48069d4583e7a242969f3c9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c13d4ebf65e53ba5423c136c3aa5eecdc1c3026a48069d4583e7a242969f3c9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7ab32bd6127326b4219c0adb9859a3903e1615dc62ecfee18098e7f19bef509a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7ab32bd6127326b4219c0adb9859a3903e1615dc62ecfee18098e7f19bef509a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7ab32bd6127326b4219c0adb9859a3903e1615dc62ecfee18098e7f19bef509a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:c10950aab7a9a4b6f43328988cbfee1278ee0dacc3cd48d518a930b07d645ecc_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:c10950aab7a9a4b6f43328988cbfee1278ee0dacc3cd48d518a930b07d645ecc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:c10950aab7a9a4b6f43328988cbfee1278ee0dacc3cd48d518a930b07d645ecc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:ea769d248ec228fa96e899a485342677caff1cbb34dc74cb373cc3458c97ea99_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:ea769d248ec228fa96e899a485342677caff1cbb34dc74cb373cc3458c97ea99_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:ea769d248ec228fa96e899a485342677caff1cbb34dc74cb373cc3458c97ea99_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:12d4819a8f33662442e84aebb4e099481ef42f30cccba5175268a5435a921279_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:12d4819a8f33662442e84aebb4e099481ef42f30cccba5175268a5435a921279_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:12d4819a8f33662442e84aebb4e099481ef42f30cccba5175268a5435a921279_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:936e5483a4b418d9b46f3c3e653edb306e2ef88b6bbee26ce75065aa092533a1_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:936e5483a4b418d9b46f3c3e653edb306e2ef88b6bbee26ce75065aa092533a1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:936e5483a4b418d9b46f3c3e653edb306e2ef88b6bbee26ce75065aa092533a1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:9392a0e57be7343f36a7424e35dc41b57559948e2bebfe1d37525a3da8903016_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:9392a0e57be7343f36a7424e35dc41b57559948e2bebfe1d37525a3da8903016_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:9392a0e57be7343f36a7424e35dc41b57559948e2bebfe1d37525a3da8903016_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:adab22f8e3ea1497fec4af641e0cecfc922a853a712af64a05a5aeea4d008830_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:adab22f8e3ea1497fec4af641e0cecfc922a853a712af64a05a5aeea4d008830_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:adab22f8e3ea1497fec4af641e0cecfc922a853a712af64a05a5aeea4d008830_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1952fec37467f0d752c3aeae6f282a399fc970f7d229f21c2384fd868314064a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1952fec37467f0d752c3aeae6f282a399fc970f7d229f21c2384fd868314064a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1952fec37467f0d752c3aeae6f282a399fc970f7d229f21c2384fd868314064a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:4ee66eb652a105bdf389a10a2362e508fe4cb3b1c0c0f402bc5dd8c6b2e7d758_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:4ee66eb652a105bdf389a10a2362e508fe4cb3b1c0c0f402bc5dd8c6b2e7d758_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:4ee66eb652a105bdf389a10a2362e508fe4cb3b1c0c0f402bc5dd8c6b2e7d758_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:e9eae42d74c6bd619cc4ad405c84efceb1267f39872e30714c09eb21bdd9b136_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:e9eae42d74c6bd619cc4ad405c84efceb1267f39872e30714c09eb21bdd9b136_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:e9eae42d74c6bd619cc4ad405c84efceb1267f39872e30714c09eb21bdd9b136_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:f5645172fc671e0ff1b8473aaf65739d061d84566307bdd1a8e572740946a4df_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:f5645172fc671e0ff1b8473aaf65739d061d84566307bdd1a8e572740946a4df_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:f5645172fc671e0ff1b8473aaf65739d061d84566307bdd1a8e572740946a4df_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5f976edd69309183df47cafc509fa41dff74dcc7430bb3c60cd01f0720eb75af_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5f976edd69309183df47cafc509fa41dff74dcc7430bb3c60cd01f0720eb75af_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5f976edd69309183df47cafc509fa41dff74dcc7430bb3c60cd01f0720eb75af_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:6f048cdbce0b2c38f5e3067bb98b260abe3d6b29eb7ab2a4e114f0ce0d83be76_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:6f048cdbce0b2c38f5e3067bb98b260abe3d6b29eb7ab2a4e114f0ce0d83be76_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:6f048cdbce0b2c38f5e3067bb98b260abe3d6b29eb7ab2a4e114f0ce0d83be76_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:ac6996c6cbbc8cbc87565be6b954df6970fc1241b08ee1be91a3a0e6fdc1c204_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:ac6996c6cbbc8cbc87565be6b954df6970fc1241b08ee1be91a3a0e6fdc1c204_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:ac6996c6cbbc8cbc87565be6b954df6970fc1241b08ee1be91a3a0e6fdc1c204_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:c761558733b996cb74ea846b382ccd3cb3ebedc4358173803ea6d6f3e0ae8b63_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:c761558733b996cb74ea846b382ccd3cb3ebedc4358173803ea6d6f3e0ae8b63_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:c761558733b996cb74ea846b382ccd3cb3ebedc4358173803ea6d6f3e0ae8b63_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:299895c90d5969068dafb0e578fae619bc98c829bea7bad21de1d2093129d54d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:299895c90d5969068dafb0e578fae619bc98c829bea7bad21de1d2093129d54d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:299895c90d5969068dafb0e578fae619bc98c829bea7bad21de1d2093129d54d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:63e2494007e87dfe4efefe6fa2fb98280a98108742c1565fcdfc5bda797b9fe8_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:63e2494007e87dfe4efefe6fa2fb98280a98108742c1565fcdfc5bda797b9fe8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:63e2494007e87dfe4efefe6fa2fb98280a98108742c1565fcdfc5bda797b9fe8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:e33eb2b816ed5a96728a61a016a373610f6acbdf8f269c690ae97d149743cffa_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:e33eb2b816ed5a96728a61a016a373610f6acbdf8f269c690ae97d149743cffa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:e33eb2b816ed5a96728a61a016a373610f6acbdf8f269c690ae97d149743cffa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f9e6438d8bb8cb8a980030a214ad8352af9d9662792a944266b985ccd72b90d8_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f9e6438d8bb8cb8a980030a214ad8352af9d9662792a944266b985ccd72b90d8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f9e6438d8bb8cb8a980030a214ad8352af9d9662792a944266b985ccd72b90d8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:38b844901ee37dbc3dcca9756e76e10064f13a1ae2e823c9cf1d2bb6cd5e94a5_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:38b844901ee37dbc3dcca9756e76e10064f13a1ae2e823c9cf1d2bb6cd5e94a5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:38b844901ee37dbc3dcca9756e76e10064f13a1ae2e823c9cf1d2bb6cd5e94a5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:6acce2dad51b12eef8d27ba8e19cf63fe47a59fe4c8a26aac717be24738d3dba_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:6acce2dad51b12eef8d27ba8e19cf63fe47a59fe4c8a26aac717be24738d3dba_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:6acce2dad51b12eef8d27ba8e19cf63fe47a59fe4c8a26aac717be24738d3dba_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7c091c88579324dd81748a32fccfc6f48717c79a50fcbe3413cbe86259e820c7_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7c091c88579324dd81748a32fccfc6f48717c79a50fcbe3413cbe86259e820c7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7c091c88579324dd81748a32fccfc6f48717c79a50fcbe3413cbe86259e820c7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:1ae5c0c51079200e965198572ccea4b6f3d4d5a7d154d731a541b2b0e67cc49b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:1ae5c0c51079200e965198572ccea4b6f3d4d5a7d154d731a541b2b0e67cc49b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:1ae5c0c51079200e965198572ccea4b6f3d4d5a7d154d731a541b2b0e67cc49b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:cf2c02d6b781c1d2ed134eacc01d93527f04d0b8ffb18ec36ae16437d7a75e09_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:cf2c02d6b781c1d2ed134eacc01d93527f04d0b8ffb18ec36ae16437d7a75e09_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:cf2c02d6b781c1d2ed134eacc01d93527f04d0b8ffb18ec36ae16437d7a75e09_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb279201c0d9fbec671e9ea30d6157c9a7b107eefb0129b3d0f01e532d23198_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb279201c0d9fbec671e9ea30d6157c9a7b107eefb0129b3d0f01e532d23198_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb279201c0d9fbec671e9ea30d6157c9a7b107eefb0129b3d0f01e532d23198_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:00f6e275dd5ce5afc901c13cd2f8cbf80b0801b6253275cd1204d2336361d2df_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:00f6e275dd5ce5afc901c13cd2f8cbf80b0801b6253275cd1204d2336361d2df_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:00f6e275dd5ce5afc901c13cd2f8cbf80b0801b6253275cd1204d2336361d2df_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:3464fcfc3fb2f4ed2b5a7a288618dcd9ba8b13ea4740174450f718e3bc6ad19a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:3464fcfc3fb2f4ed2b5a7a288618dcd9ba8b13ea4740174450f718e3bc6ad19a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:3464fcfc3fb2f4ed2b5a7a288618dcd9ba8b13ea4740174450f718e3bc6ad19a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77530e04f1282819461d568c0b6c471ab678484c41f7ec0979daa6a6fe0fc832_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77530e04f1282819461d568c0b6c471ab678484c41f7ec0979daa6a6fe0fc832_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77530e04f1282819461d568c0b6c471ab678484c41f7ec0979daa6a6fe0fc832_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8be03eb8cddd01ebdb98180c67dd640848a997e7ddf8b6e7f22a7559499869ea_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8be03eb8cddd01ebdb98180c67dd640848a997e7ddf8b6e7f22a7559499869ea_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8be03eb8cddd01ebdb98180c67dd640848a997e7ddf8b6e7f22a7559499869ea_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c5c6c5f957b61fac8e6d232de221b97dddea47eafdfb0774361badc893a05e5e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c5c6c5f957b61fac8e6d232de221b97dddea47eafdfb0774361badc893a05e5e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c5c6c5f957b61fac8e6d232de221b97dddea47eafdfb0774361badc893a05e5e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e8a37402e7ca28e5ed2b854448887aaece1515680082efbcd0774002b9645011_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e8a37402e7ca28e5ed2b854448887aaece1515680082efbcd0774002b9645011_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e8a37402e7ca28e5ed2b854448887aaece1515680082efbcd0774002b9645011_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:2da1d802a74bd318f5cfa713525577919eb4298866e7ae2e9207b53df7c538a8_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:2da1d802a74bd318f5cfa713525577919eb4298866e7ae2e9207b53df7c538a8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:2da1d802a74bd318f5cfa713525577919eb4298866e7ae2e9207b53df7c538a8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:b91a49fdea8f50cfe136e98eb4acd4c4af81d95c73746ddfe8f0e8a4dbb07e09_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:b91a49fdea8f50cfe136e98eb4acd4c4af81d95c73746ddfe8f0e8a4dbb07e09_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:b91a49fdea8f50cfe136e98eb4acd4c4af81d95c73746ddfe8f0e8a4dbb07e09_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:e7afc14ab6d21818d74c063e49e38685ff06c1515566d79245e9eac05b9d30fd_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:e7afc14ab6d21818d74c063e49e38685ff06c1515566d79245e9eac05b9d30fd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:e7afc14ab6d21818d74c063e49e38685ff06c1515566d79245e9eac05b9d30fd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3d1608852ce75a2b49c3434f4e8ee7dda0d8be548e18476162e994791d623437_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3d1608852ce75a2b49c3434f4e8ee7dda0d8be548e18476162e994791d623437_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3d1608852ce75a2b49c3434f4e8ee7dda0d8be548e18476162e994791d623437_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5dc5786ad4606e2d7165afa3421ed865a19d4963253eedff5f86c43fcf488033_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5dc5786ad4606e2d7165afa3421ed865a19d4963253eedff5f86c43fcf488033_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5dc5786ad4606e2d7165afa3421ed865a19d4963253eedff5f86c43fcf488033_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c385f757788b60adc79613dad6cdc18145c4be72e5cbe4c3f687f15b67ce414a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c385f757788b60adc79613dad6cdc18145c4be72e5cbe4c3f687f15b67ce414a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c385f757788b60adc79613dad6cdc18145c4be72e5cbe4c3f687f15b67ce414a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:818464b1d00755f44c21057470d2035f12cc99d383a0b84dcfd6d15738a0c022_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:818464b1d00755f44c21057470d2035f12cc99d383a0b84dcfd6d15738a0c022_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:818464b1d00755f44c21057470d2035f12cc99d383a0b84dcfd6d15738a0c022_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b57c0cf0a47e13787a17ef149145187e5bee297a018decf1d4c662458dd9eb60_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b57c0cf0a47e13787a17ef149145187e5bee297a018decf1d4c662458dd9eb60_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b57c0cf0a47e13787a17ef149145187e5bee297a018decf1d4c662458dd9eb60_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ed7a27693b8ce6145d0dfed31c9322cf65e938c8686075f6fbc574d97c96b0b6_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ed7a27693b8ce6145d0dfed31c9322cf65e938c8686075f6fbc574d97c96b0b6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ed7a27693b8ce6145d0dfed31c9322cf65e938c8686075f6fbc574d97c96b0b6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:01ac980555c97d1bcf57ced77784a06f8ddb8642abf50d907e89d0d57615799c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:01ac980555c97d1bcf57ced77784a06f8ddb8642abf50d907e89d0d57615799c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:01ac980555c97d1bcf57ced77784a06f8ddb8642abf50d907e89d0d57615799c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7953533d7dbba90dbe9057e7a6df5069047f78677aa9efcbd41175526238c45e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7953533d7dbba90dbe9057e7a6df5069047f78677aa9efcbd41175526238c45e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7953533d7dbba90dbe9057e7a6df5069047f78677aa9efcbd41175526238c45e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:c30984f2a78b187044a36e3547869b019089209b775f6059b9b8f72d9b020e0c_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:c30984f2a78b187044a36e3547869b019089209b775f6059b9b8f72d9b020e0c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:c30984f2a78b187044a36e3547869b019089209b775f6059b9b8f72d9b020e0c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:3e546832162068b5d956ad5d4ef47eb47d31f109bd8ec5be554a557e74b861a1_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:3e546832162068b5d956ad5d4ef47eb47d31f109bd8ec5be554a557e74b861a1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:3e546832162068b5d956ad5d4ef47eb47d31f109bd8ec5be554a557e74b861a1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:62538913a5cab44dc1684b844eebdc07e50bec986279b1992fbe1b67e25fd5dd_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:62538913a5cab44dc1684b844eebdc07e50bec986279b1992fbe1b67e25fd5dd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:62538913a5cab44dc1684b844eebdc07e50bec986279b1992fbe1b67e25fd5dd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6e1bff042795d74a89f6131141b0823f618f605868f53ddcb86a42711628d45d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6e1bff042795d74a89f6131141b0823f618f605868f53ddcb86a42711628d45d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6e1bff042795d74a89f6131141b0823f618f605868f53ddcb86a42711628d45d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:9fb670d43654f2e312606d55c7a4a24701dd06cd99abd032ac3218db62b7b80b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:9fb670d43654f2e312606d55c7a4a24701dd06cd99abd032ac3218db62b7b80b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:9fb670d43654f2e312606d55c7a4a24701dd06cd99abd032ac3218db62b7b80b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1e5df4b408114deeccff4a9529e40fc1961302171a92361a8bfc4db21425bfac_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1e5df4b408114deeccff4a9529e40fc1961302171a92361a8bfc4db21425bfac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1e5df4b408114deeccff4a9529e40fc1961302171a92361a8bfc4db21425bfac_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2733973ad952cc77643356c918f34d16a6decd25c47b2f752d42fd75f3724f9c_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2733973ad952cc77643356c918f34d16a6decd25c47b2f752d42fd75f3724f9c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2733973ad952cc77643356c918f34d16a6decd25c47b2f752d42fd75f3724f9c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:781eed024814a6e7b9531a10e3a4c94fa4b378134f67c8b7fd7d723bea6b7d07_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:781eed024814a6e7b9531a10e3a4c94fa4b378134f67c8b7fd7d723bea6b7d07_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:781eed024814a6e7b9531a10e3a4c94fa4b378134f67c8b7fd7d723bea6b7d07_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:c2023cbf079d625f3d321a8ef1bfa23e993f555c67e593d677b79356bf3a0807_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:c2023cbf079d625f3d321a8ef1bfa23e993f555c67e593d677b79356bf3a0807_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:c2023cbf079d625f3d321a8ef1bfa23e993f555c67e593d677b79356bf3a0807_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b42061c6aaba87aa86d88f54cc86dcec56015a74576cb63de5294d5f5b7090ae_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b42061c6aaba87aa86d88f54cc86dcec56015a74576cb63de5294d5f5b7090ae_s390x"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b42061c6aaba87aa86d88f54cc86dcec56015a74576cb63de5294d5f5b7090ae_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b640235198fb64e5b6ed7c913fc372c773e69342bb319226919f3c2060cebe79_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b640235198fb64e5b6ed7c913fc372c773e69342bb319226919f3c2060cebe79_amd64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b640235198fb64e5b6ed7c913fc372c773e69342bb319226919f3c2060cebe79_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:c090ede014662ec44a92e12a346d4f58e3f7834f103101e54946159fb3c7f4a2_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:c090ede014662ec44a92e12a346d4f58e3f7834f103101e54946159fb3c7f4a2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:c090ede014662ec44a92e12a346d4f58e3f7834f103101e54946159fb3c7f4a2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:c3d6bd5dcaf2551190cf1535ee45bce23b95eacccf89eab4d99e6f642dc51506_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:c3d6bd5dcaf2551190cf1535ee45bce23b95eacccf89eab4d99e6f642dc51506_arm64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:c3d6bd5dcaf2551190cf1535ee45bce23b95eacccf89eab4d99e6f642dc51506_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:75b28916972d49f8dea1080a7159a2293dc8b32259e3dc7f3b23774dc7ea0d37_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:75b28916972d49f8dea1080a7159a2293dc8b32259e3dc7f3b23774dc7ea0d37_amd64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:75b28916972d49f8dea1080a7159a2293dc8b32259e3dc7f3b23774dc7ea0d37_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:aa7de77cdb1a6fb1cf51c986fbbd6517753cc49bff44d995a13dde578a118e60_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:aa7de77cdb1a6fb1cf51c986fbbd6517753cc49bff44d995a13dde578a118e60_arm64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:aa7de77cdb1a6fb1cf51c986fbbd6517753cc49bff44d995a13dde578a118e60_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:cd6c55b0d09b7a02869d615361bfe8a5a10719b292d5fb3a733a7228a1729181_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:cd6c55b0d09b7a02869d615361bfe8a5a10719b292d5fb3a733a7228a1729181_s390x"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:cd6c55b0d09b7a02869d615361bfe8a5a10719b292d5fb3a733a7228a1729181_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e679006db13dd82f7fe440c3c0fa94bcdfa96393a4927ec0c30987de04c1611a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e679006db13dd82f7fe440c3c0fa94bcdfa96393a4927ec0c30987de04c1611a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e679006db13dd82f7fe440c3c0fa94bcdfa96393a4927ec0c30987de04c1611a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:294d787e27c198b1cff83436fa229af1981b408ce06eee41f539aeb20e32954e_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:294d787e27c198b1cff83436fa229af1981b408ce06eee41f539aeb20e32954e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:294d787e27c198b1cff83436fa229af1981b408ce06eee41f539aeb20e32954e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3c2071f6c2c80483afe745c5a5ba8b51e9976171d84e01a1189288c4cda3b811_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3c2071f6c2c80483afe745c5a5ba8b51e9976171d84e01a1189288c4cda3b811_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3c2071f6c2c80483afe745c5a5ba8b51e9976171d84e01a1189288c4cda3b811_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:5094c9335393938c6aa2d586963ed3f6db302d14f1a2e4480284b81df1e06b34_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:5094c9335393938c6aa2d586963ed3f6db302d14f1a2e4480284b81df1e06b34_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:5094c9335393938c6aa2d586963ed3f6db302d14f1a2e4480284b81df1e06b34_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2165c8f2bfcc8f943f3a4e8d30b926ae4e1ba55af9ca28c7185de0141bb48032_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2165c8f2bfcc8f943f3a4e8d30b926ae4e1ba55af9ca28c7185de0141bb48032_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2165c8f2bfcc8f943f3a4e8d30b926ae4e1ba55af9ca28c7185de0141bb48032_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:399028b92bf1ec4a6fb7c8b171fe92845433172f494cf933dca5d778eb067a5c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:399028b92bf1ec4a6fb7c8b171fe92845433172f494cf933dca5d778eb067a5c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:399028b92bf1ec4a6fb7c8b171fe92845433172f494cf933dca5d778eb067a5c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:61e4e758b278a31cca08c998b58652bd696ba97c195574520b2e5ceeced97de9_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:61e4e758b278a31cca08c998b58652bd696ba97c195574520b2e5ceeced97de9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:61e4e758b278a31cca08c998b58652bd696ba97c195574520b2e5ceeced97de9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:27045aabfee1bef5a0e5fe7c8d87998b5d085e90914cf0cc879be88a0b289f32_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:c8c5207f1784a5357e087914354fa0f77b8f315809a88562ed2c27c1dc1693ba_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d717c8260a3499f114f146efe58afc1137caa648dc2c57791fa31bd6554ae458_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f1ab962fa8e19af109094f673b205461b1b1a4ea26b7620268d15d3fd1b8ecd4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4c598df247745481bfaea4aba7598496d87e6407e1c080b59384b3a04c43ca0e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:816548bd51389d5cc6f6354d3893d252d3201e4bf96593e91259104e81d67759_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:826d0571835e3585f7709f36b8319ef8ddf4e8ef8a529e89728b20f35399f1dc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d27b8222063a442039c3fa5e960c256eef2c7f44c91ebc17686dc596595f1d14_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:241f11e567990a11f25ebbcb91cec2d5698ac736fa7ecc3bf5d6505c2e590b5d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:893e94bcd1ea377a5f2bae00dee9030dace7eef11fc6e54229e00472ac210ec2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8cde7c931c746c4428bf22d9dcdd8caf518e4273bcc2b88c8c3cb025b445fbec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ebccab85b2775fb13e29872d87985ab69a774a4aa6556402dc1e4478232dfa4b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:7284df8190c5e8cc412917b22396f6db8a09f932851e94b934dd73fea6b7e9e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c042aafcfd8feb67684753e52602431b1181621acdcc9e61fae9601961637ff6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:cca78bfdd762f3413ab1762660ccd5e0ee61da1f83fc2179fbb803518011819c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d1f7bdf7807d6d0741275d3bb9510eb892dadae930826f3d2c24a55e9782d5ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:0145eea7baa031331c188b69ddef4ad0765a5c9ca37fd27d54e2fc30e3eaee47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:445beae6bc5a6295d12310bee6bbd6f3a48011c95b40515e6382e27b2421aa9e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:64edff7956f6b9a8e508080dd1ff3db9dcf4646a5945e4f5a568ff9de8479598_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:849dbb2d6396654470d6dcadc0754f6917bfb7cb41f339d9a9d07009fecebc06_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:2dcfefacc2e1e3253cd017d52e099ddabbcc122f133455fa9e445b73ac3ac083_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:ab33e7aa29a7001f8d86575f885e9b6d38ba4d7f0954539757817aeba480e524_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:be6abecefbcb3a36db0535262987171a032ee22a824880a4d41922808a0a0bc5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:f8b3c8686ffdc3c6d92e46fe5246566cefb9d12e355e3edfc82741e9888dadd2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1e9f84c94a6f2320b18d426e34ce5614585a785b0d260706fb7b3e2ed653df5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:5e1d0d8d79e70eb5ca5bc971b767a108244edfdfa08aa4f9b1a1a7ea714b11e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:ebf8bf1c22cc0adc2a59b4f8eaeb1b81191587a94aa816d6da666a261719af08_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eca15f37d0de3827cbd8456edc10124c849b423928473902afaf54aa0bcbd624_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:51f179d88b85e36f646435828302d67c8ff327d5560866c5dfa1b7bba5c0a5f4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:db4b25de2051b1762ff366ffca0e6f93f4f810f0ea38cb2c7803adf019f840f4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:e2160827e92d2fbbb7e624fe92e762b3b50320fafb76ede4f66b882228b78540_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f50289ca9ec0a4abf468b3a93476b10415bb6da99f16ca316d4c3f08f1f16594_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:16b358289777243a6763223070dd0012a1ef5733ed810ba27aee168ecbf0a9eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:5dfb9bb1038b0a057da7ac7e0367dce3601acf3494704b057070a786baaad59a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:541fb836a9c207e030f91060fe9bd31dd1cfa8900a1b74463f9858cc36d97ed2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:5c53c6d78a52b17d51db99a72117549e2179f90d4243f0930355d1378d528201_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:08238fbaa230a53fd4ea7f3eb701b398349b55161d57dbc4e303b0a46080d985_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:89ae87596cb9e3524dbb1cafeb8133e1d9a3a3aa9e8ea039b804f40cf44e1c9c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:fec596fdba12eef010aea34b308282370242e96ff65cff8936e28369702079f6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:0a07ba50051553c3dcff9068c9040dfa8775fc128bac0784900ba4863fa81609_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1b465eaf900309bed4cedb06b46a1e4edb10b9d0ba993585aed84a97c91ae70a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2ea6e5bcc3b3e2dfd98eadbf96dd9cea26308a0542fb1d953137a04a48456985_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:67eb2f9fffe76c2e3bb133c7c4a2cec0178e3ee0076ddfc18b08bcda407940b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2f849055d3a811c2ec3f5391e0fd01f3fd7d8b9ea483a39df47e5d8a2ed6baee_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:503f0ab56d42395194dc5f050b43ec4fb69414750630e76a2634d881e2bd671f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:9bf7b748def1c91caa1e93bbb9f13f5d054c97c328d667ad00b060559d76c1c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:c8b1c0c42003158da4042929ed9b598a0c5dad70ed87163ef72cb13657de0e52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:098ccc2275ab68cee3e5ec20e7f6b302ed76e4d66bf65957376ecf184a47c1be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:3406801cb156af01e2c4f78dec2e1a4f9a5bb881dd2fb4268dd621435e634b93_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:b18d87c7b68badc9c90165b6206d8ecb1bbae17d0ad401fdf7bbed5df4ded0f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:cf7f6124729e761b1acab5f7ea343365bf66942c85fe92b030ad568cb20a8e08_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:593e1d0e8b26b19eb319b94e0c5338d7bee33863456eae9d59674b0239a9d2e5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8ffcbc96bdd5e6b4f55d1fa1e4cdc4acfbc2d4f62705fc13e3b0a37dcb08eff9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d19cb645ed48afbf70ffd3f9c096f971192f0c5c00c7e8897f36c328e68c7690_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:db7c9685d5a8c1bafb226e2673a69bac67691768338bb42a3b8d278bd9ed813f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:81cd79485653bad71c4142ac661ff1102cc977ae678e715caa8494b011a42dbf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:c3c25537f0d938d99403e7c02f1e7d7c88665bbc08c2bfcd70b8d100a4c7cfa4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:c561564a9eda424df7392e4f220c80ae4f8b7fda8de60157d5ddbd65d5135f27_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e11806e1270b7734a3a1306f0a69d4b5337450e95b29b9b495a7d9670e99f0c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:489e5e540c0bbe17b29d839412ff237e9b4d72828cf32fbe512b1a4a0c920443_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5a93d29002aa07e5f503916b106a0d97d43738dd6340f3aeec1320d47b9c6928_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:b55bd4c4cab0f5277aca4573b676d595429b345df2de10f34ea1661b9c3b68d0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:f504360dffc0b90a4721394aa068ddb95038a6f1b3d6d6023d799d2b6ea4b739_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:cb02ee426076c69bda9459299653a67e19b84663d6b18d08f8ab47843d69e151_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:cc9cd14a515fd851ab843c62a6a3443f6ff2684710044d232a304caa18121e84_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:0546d72bd41c58d8094de7cc88d3e634ea75e4f3e7cb44ca8198cf1b2e5ab04c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:a8c11de11e7778c5357f962f731530c815ee73a519f54b7a71897092d1377796_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:09522adc9acad2be18602e32991e68d0127f894460506e70aa86df54c20affd0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bcfa40dbf26735094fd0f6ac3cf1cad83b7539f8bc75d81eb64e0a19d97c1b1d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:f6d05e4d58c287bd21329a044848e47c197fc83e4af67f7e64306d95b69a6498_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:fb4a1d15131490352837f759ee7b2f7b55696f794a40ba786627a1cb615cfa64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:031433fa156008a7ce297b63ede479a6efd8791f5c5ce4ceb9f132f209ff656c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:294ec77677a6481d4cfe216f425703b5476165ffe1ff86e835ec2becac8f7dca_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:74298b0408210925cb94b412d12f5a16941e1fe5991c2cead3d26cd5c6ffb4cc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:a86dd4ae0fb2a6057eb30e594f7fc3c722f33dd554dff36aa498b15d8c1dcc13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:0f89db43d98c11d69c2edb9d3fae3085d22a70b3de42a2f4e68969391b4565ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:28aeb2ad9b5bd6bec712ef4dc3f773f5dedd47acd145bcd6007a1f9778bb07e6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:bc7715e7835899f6f3ef173778ce2d07e1a2d058b87031a6d7b2202a42ccef33_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:dd4b41d440d00aba3c6e30c2b1c116516402d7fb8e7c1ab10b97a4e8f4fc507e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3da13d1a5e673734b43f85ade4ae4d40575945a62e756563755c226783829959_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:44a56cd708f76ac94195de3861748ec1c5aaab4127a6e39f219635963722e395_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:4572a0ae30f3467cd7ae083acfc05ed045b5397ae284ca16c40886f6ae675baa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:9f1730db64403eefae6310cf58890d16a5e21aa1b9086028620cd6d29e6cd754_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:28a48ad6aff8602a5b59c2203047a598d5adfeea59503bbaad02d1e3986a2279_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:8c21500cbb9ee0973efb67aa8c32cc1359a94548b2c2a6386b30cbae695934ba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:ae4d82e3713722e1aed6abc0a7ac1b08766fc24d64f3f3ba01f58dda96fc0408_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:3c89b10216b34a43128a9ffafcd10adb92517166554966b3f8b016679ee8d133_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9987c9ba25b20cf8e8bf11d388f03330358c1ca37e76724f5d229670d61580d0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:bd0a7767d4dd5c049fcfa6a181fb4dc7b44149ab5790be1cec1b6525d9ba6cff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2d52d819f0a37f9df61dcf3ab118e4fc391fb434fc5703570161422df34d4461_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:37b9c5f1a90b03a883f0b1eed4333b2f12e5f13cc664d8335daa1cb8a3f26d64_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ab485d4b0369a967fbc4125ffa539f43b28f9ad7bf3ad0c5885bd86dee0214ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:f3092387090218098102e8eb44f1f4c05dcd62e5b31fbc00ac258684bb2a8609_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4f54178cce1ac5c8f00aa958d61f747402c0e4ef3d59f3c9afe7809353be45dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d05d48ea317a9466c4f9e5cc9a1cd60422830da0eea823f686cd8d3aae317c00_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e7209fd84bb9522237f9caedb43e0dd27a93b63d9066dac1330e5f6974b89810_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:f50fa05848ec5ecb085b106903890d7c58d583c3d0b0697c9f739fc9fcef7a3b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0538c3ce443ce61357594d15eb9e70a1a3dd2b3b0672e90ef0c0fb200c77f392_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:1bab45debd45c344b562c46d75c27540a1f05492028970f6991f9d30dfe680de_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:23d3c2b463442f8c93706486e537be521a760e0fa51c75a2723f0fc1dbfe20ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:598b03d5232daa203ffcf4d772e7035ca2f51cd1b11a091dd6306a56a2c8615d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5e26da0b5c556d8015c8bd66f2f3d2ba103f58c138ca618448cd403d805c809d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:982b77ab4a9a65923c0720725a7e1b3978a4ef06c29ad240932ec119bf189a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:eee869f77558af2bc003569f17812b7d5897b38f4d7afb24cbf7d87adb6483af_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f71282ababe15f450e152270ca7a1fa1fee389c72717e5539ca443ef7a852fba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:549c32c61d6d2d538b9433af65debc4a576c25b88ec3bd868599dd2c50667e6a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6ab99bdcedbf6cd877158e15f398450e4d9386bba842eb2a778c88053e1b22a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:accb05d004c7bdd050b8949a882a788b4ec4199afb9d0bfdd3e96202ca2666d0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c414aa18fc8ef38befe69cab2e7cd12283cf8b3148c7a9596c9183c5f4ac49c4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:422185f18695351d07ef4afacb3122b6f1a680bb53e33c5674a76bc9ee61ea11_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:63c777b15d54d714c7d266dfb286592bc422b638bec176878fa2e0dcc44afd87_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:64e1a4e57dbbd35238fcdd3b80baf0281566a27ce76f2ad389fcc50a7a16c3ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:cdc406a39b5241843f71964910bffd15bcd9ff3f4467e9b13bf6ea707bba3a8e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:7dfcc4fe44678675d4292555c78593b176bcb0e1ee7c1cdc83b8de3045ac3153_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:95f73756b6131fe9798ae620de689a405150ca71c60fd6413bb1174c0b7b732b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:d8e9ac204dd8c409f5cb2d732bfa2fe56688fbb9e285fc5b3557675b0b04363a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:40d03ceb295d791dd2929568883cb35fa1617090b85ba6e0fdadbad4778084f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4e72b1544de64ad3fa7eb5cea54d8504da71ac51271d6f27e719ababc4bd5c92_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:83c7234284d56d2ab10e7adf720aace8f950831003a6fea7f5fcf19203110d95_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c13d4ebf65e53ba5423c136c3aa5eecdc1c3026a48069d4583e7a242969f3c9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7ab32bd6127326b4219c0adb9859a3903e1615dc62ecfee18098e7f19bef509a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:c10950aab7a9a4b6f43328988cbfee1278ee0dacc3cd48d518a930b07d645ecc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:ea769d248ec228fa96e899a485342677caff1cbb34dc74cb373cc3458c97ea99_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:12d4819a8f33662442e84aebb4e099481ef42f30cccba5175268a5435a921279_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:936e5483a4b418d9b46f3c3e653edb306e2ef88b6bbee26ce75065aa092533a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:9392a0e57be7343f36a7424e35dc41b57559948e2bebfe1d37525a3da8903016_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:adab22f8e3ea1497fec4af641e0cecfc922a853a712af64a05a5aeea4d008830_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1952fec37467f0d752c3aeae6f282a399fc970f7d229f21c2384fd868314064a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:4ee66eb652a105bdf389a10a2362e508fe4cb3b1c0c0f402bc5dd8c6b2e7d758_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:e9eae42d74c6bd619cc4ad405c84efceb1267f39872e30714c09eb21bdd9b136_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:f5645172fc671e0ff1b8473aaf65739d061d84566307bdd1a8e572740946a4df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5f976edd69309183df47cafc509fa41dff74dcc7430bb3c60cd01f0720eb75af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:6f048cdbce0b2c38f5e3067bb98b260abe3d6b29eb7ab2a4e114f0ce0d83be76_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:ac6996c6cbbc8cbc87565be6b954df6970fc1241b08ee1be91a3a0e6fdc1c204_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:c761558733b996cb74ea846b382ccd3cb3ebedc4358173803ea6d6f3e0ae8b63_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:299895c90d5969068dafb0e578fae619bc98c829bea7bad21de1d2093129d54d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:63e2494007e87dfe4efefe6fa2fb98280a98108742c1565fcdfc5bda797b9fe8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:e33eb2b816ed5a96728a61a016a373610f6acbdf8f269c690ae97d149743cffa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f9e6438d8bb8cb8a980030a214ad8352af9d9662792a944266b985ccd72b90d8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:38b844901ee37dbc3dcca9756e76e10064f13a1ae2e823c9cf1d2bb6cd5e94a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:6acce2dad51b12eef8d27ba8e19cf63fe47a59fe4c8a26aac717be24738d3dba_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7c091c88579324dd81748a32fccfc6f48717c79a50fcbe3413cbe86259e820c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:1ae5c0c51079200e965198572ccea4b6f3d4d5a7d154d731a541b2b0e67cc49b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:cf2c02d6b781c1d2ed134eacc01d93527f04d0b8ffb18ec36ae16437d7a75e09_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb279201c0d9fbec671e9ea30d6157c9a7b107eefb0129b3d0f01e532d23198_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:00f6e275dd5ce5afc901c13cd2f8cbf80b0801b6253275cd1204d2336361d2df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:3464fcfc3fb2f4ed2b5a7a288618dcd9ba8b13ea4740174450f718e3bc6ad19a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77530e04f1282819461d568c0b6c471ab678484c41f7ec0979daa6a6fe0fc832_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:2da1d802a74bd318f5cfa713525577919eb4298866e7ae2e9207b53df7c538a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:b91a49fdea8f50cfe136e98eb4acd4c4af81d95c73746ddfe8f0e8a4dbb07e09_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:e7afc14ab6d21818d74c063e49e38685ff06c1515566d79245e9eac05b9d30fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3d1608852ce75a2b49c3434f4e8ee7dda0d8be548e18476162e994791d623437_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5dc5786ad4606e2d7165afa3421ed865a19d4963253eedff5f86c43fcf488033_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c385f757788b60adc79613dad6cdc18145c4be72e5cbe4c3f687f15b67ce414a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:818464b1d00755f44c21057470d2035f12cc99d383a0b84dcfd6d15738a0c022_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b57c0cf0a47e13787a17ef149145187e5bee297a018decf1d4c662458dd9eb60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ed7a27693b8ce6145d0dfed31c9322cf65e938c8686075f6fbc574d97c96b0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:01ac980555c97d1bcf57ced77784a06f8ddb8642abf50d907e89d0d57615799c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7953533d7dbba90dbe9057e7a6df5069047f78677aa9efcbd41175526238c45e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:c30984f2a78b187044a36e3547869b019089209b775f6059b9b8f72d9b020e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:3e546832162068b5d956ad5d4ef47eb47d31f109bd8ec5be554a557e74b861a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:62538913a5cab44dc1684b844eebdc07e50bec986279b1992fbe1b67e25fd5dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6e1bff042795d74a89f6131141b0823f618f605868f53ddcb86a42711628d45d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:9fb670d43654f2e312606d55c7a4a24701dd06cd99abd032ac3218db62b7b80b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1e5df4b408114deeccff4a9529e40fc1961302171a92361a8bfc4db21425bfac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2733973ad952cc77643356c918f34d16a6decd25c47b2f752d42fd75f3724f9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:781eed024814a6e7b9531a10e3a4c94fa4b378134f67c8b7fd7d723bea6b7d07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:c2023cbf079d625f3d321a8ef1bfa23e993f555c67e593d677b79356bf3a0807_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b42061c6aaba87aa86d88f54cc86dcec56015a74576cb63de5294d5f5b7090ae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b640235198fb64e5b6ed7c913fc372c773e69342bb319226919f3c2060cebe79_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:c090ede014662ec44a92e12a346d4f58e3f7834f103101e54946159fb3c7f4a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:c3d6bd5dcaf2551190cf1535ee45bce23b95eacccf89eab4d99e6f642dc51506_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:75b28916972d49f8dea1080a7159a2293dc8b32259e3dc7f3b23774dc7ea0d37_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:aa7de77cdb1a6fb1cf51c986fbbd6517753cc49bff44d995a13dde578a118e60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:cd6c55b0d09b7a02869d615361bfe8a5a10719b292d5fb3a733a7228a1729181_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e679006db13dd82f7fe440c3c0fa94bcdfa96393a4927ec0c30987de04c1611a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:294d787e27c198b1cff83436fa229af1981b408ce06eee41f539aeb20e32954e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3c2071f6c2c80483afe745c5a5ba8b51e9976171d84e01a1189288c4cda3b811_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:5094c9335393938c6aa2d586963ed3f6db302d14f1a2e4480284b81df1e06b34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2165c8f2bfcc8f943f3a4e8d30b926ae4e1ba55af9ca28c7185de0141bb48032_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:399028b92bf1ec4a6fb7c8b171fe92845433172f494cf933dca5d778eb067a5c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:61e4e758b278a31cca08c998b58652bd696ba97c195574520b2e5ceeced97de9_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.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8be03eb8cddd01ebdb98180c67dd640848a997e7ddf8b6e7f22a7559499869ea_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c5c6c5f957b61fac8e6d232de221b97dddea47eafdfb0774361badc893a05e5e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e8a37402e7ca28e5ed2b854448887aaece1515680082efbcd0774002b9645011_arm64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:27045aabfee1bef5a0e5fe7c8d87998b5d085e90914cf0cc879be88a0b289f32_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:c8c5207f1784a5357e087914354fa0f77b8f315809a88562ed2c27c1dc1693ba_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d717c8260a3499f114f146efe58afc1137caa648dc2c57791fa31bd6554ae458_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f1ab962fa8e19af109094f673b205461b1b1a4ea26b7620268d15d3fd1b8ecd4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4c598df247745481bfaea4aba7598496d87e6407e1c080b59384b3a04c43ca0e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:816548bd51389d5cc6f6354d3893d252d3201e4bf96593e91259104e81d67759_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:826d0571835e3585f7709f36b8319ef8ddf4e8ef8a529e89728b20f35399f1dc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d27b8222063a442039c3fa5e960c256eef2c7f44c91ebc17686dc596595f1d14_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:241f11e567990a11f25ebbcb91cec2d5698ac736fa7ecc3bf5d6505c2e590b5d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:893e94bcd1ea377a5f2bae00dee9030dace7eef11fc6e54229e00472ac210ec2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8cde7c931c746c4428bf22d9dcdd8caf518e4273bcc2b88c8c3cb025b445fbec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ebccab85b2775fb13e29872d87985ab69a774a4aa6556402dc1e4478232dfa4b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:7284df8190c5e8cc412917b22396f6db8a09f932851e94b934dd73fea6b7e9e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c042aafcfd8feb67684753e52602431b1181621acdcc9e61fae9601961637ff6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:cca78bfdd762f3413ab1762660ccd5e0ee61da1f83fc2179fbb803518011819c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d1f7bdf7807d6d0741275d3bb9510eb892dadae930826f3d2c24a55e9782d5ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:0145eea7baa031331c188b69ddef4ad0765a5c9ca37fd27d54e2fc30e3eaee47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:445beae6bc5a6295d12310bee6bbd6f3a48011c95b40515e6382e27b2421aa9e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:64edff7956f6b9a8e508080dd1ff3db9dcf4646a5945e4f5a568ff9de8479598_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:849dbb2d6396654470d6dcadc0754f6917bfb7cb41f339d9a9d07009fecebc06_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:2dcfefacc2e1e3253cd017d52e099ddabbcc122f133455fa9e445b73ac3ac083_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:ab33e7aa29a7001f8d86575f885e9b6d38ba4d7f0954539757817aeba480e524_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:be6abecefbcb3a36db0535262987171a032ee22a824880a4d41922808a0a0bc5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:f8b3c8686ffdc3c6d92e46fe5246566cefb9d12e355e3edfc82741e9888dadd2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1e9f84c94a6f2320b18d426e34ce5614585a785b0d260706fb7b3e2ed653df5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:5e1d0d8d79e70eb5ca5bc971b767a108244edfdfa08aa4f9b1a1a7ea714b11e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:ebf8bf1c22cc0adc2a59b4f8eaeb1b81191587a94aa816d6da666a261719af08_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eca15f37d0de3827cbd8456edc10124c849b423928473902afaf54aa0bcbd624_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:51f179d88b85e36f646435828302d67c8ff327d5560866c5dfa1b7bba5c0a5f4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:db4b25de2051b1762ff366ffca0e6f93f4f810f0ea38cb2c7803adf019f840f4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:e2160827e92d2fbbb7e624fe92e762b3b50320fafb76ede4f66b882228b78540_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f50289ca9ec0a4abf468b3a93476b10415bb6da99f16ca316d4c3f08f1f16594_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:16b358289777243a6763223070dd0012a1ef5733ed810ba27aee168ecbf0a9eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:5dfb9bb1038b0a057da7ac7e0367dce3601acf3494704b057070a786baaad59a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:541fb836a9c207e030f91060fe9bd31dd1cfa8900a1b74463f9858cc36d97ed2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:5c53c6d78a52b17d51db99a72117549e2179f90d4243f0930355d1378d528201_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:08238fbaa230a53fd4ea7f3eb701b398349b55161d57dbc4e303b0a46080d985_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:89ae87596cb9e3524dbb1cafeb8133e1d9a3a3aa9e8ea039b804f40cf44e1c9c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:fec596fdba12eef010aea34b308282370242e96ff65cff8936e28369702079f6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:0a07ba50051553c3dcff9068c9040dfa8775fc128bac0784900ba4863fa81609_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1b465eaf900309bed4cedb06b46a1e4edb10b9d0ba993585aed84a97c91ae70a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2ea6e5bcc3b3e2dfd98eadbf96dd9cea26308a0542fb1d953137a04a48456985_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:67eb2f9fffe76c2e3bb133c7c4a2cec0178e3ee0076ddfc18b08bcda407940b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2f849055d3a811c2ec3f5391e0fd01f3fd7d8b9ea483a39df47e5d8a2ed6baee_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:503f0ab56d42395194dc5f050b43ec4fb69414750630e76a2634d881e2bd671f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:9bf7b748def1c91caa1e93bbb9f13f5d054c97c328d667ad00b060559d76c1c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:c8b1c0c42003158da4042929ed9b598a0c5dad70ed87163ef72cb13657de0e52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:098ccc2275ab68cee3e5ec20e7f6b302ed76e4d66bf65957376ecf184a47c1be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:3406801cb156af01e2c4f78dec2e1a4f9a5bb881dd2fb4268dd621435e634b93_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:b18d87c7b68badc9c90165b6206d8ecb1bbae17d0ad401fdf7bbed5df4ded0f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:cf7f6124729e761b1acab5f7ea343365bf66942c85fe92b030ad568cb20a8e08_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:593e1d0e8b26b19eb319b94e0c5338d7bee33863456eae9d59674b0239a9d2e5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8ffcbc96bdd5e6b4f55d1fa1e4cdc4acfbc2d4f62705fc13e3b0a37dcb08eff9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d19cb645ed48afbf70ffd3f9c096f971192f0c5c00c7e8897f36c328e68c7690_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:db7c9685d5a8c1bafb226e2673a69bac67691768338bb42a3b8d278bd9ed813f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:81cd79485653bad71c4142ac661ff1102cc977ae678e715caa8494b011a42dbf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:c3c25537f0d938d99403e7c02f1e7d7c88665bbc08c2bfcd70b8d100a4c7cfa4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:c561564a9eda424df7392e4f220c80ae4f8b7fda8de60157d5ddbd65d5135f27_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e11806e1270b7734a3a1306f0a69d4b5337450e95b29b9b495a7d9670e99f0c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:489e5e540c0bbe17b29d839412ff237e9b4d72828cf32fbe512b1a4a0c920443_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5a93d29002aa07e5f503916b106a0d97d43738dd6340f3aeec1320d47b9c6928_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:b55bd4c4cab0f5277aca4573b676d595429b345df2de10f34ea1661b9c3b68d0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:f504360dffc0b90a4721394aa068ddb95038a6f1b3d6d6023d799d2b6ea4b739_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:cb02ee426076c69bda9459299653a67e19b84663d6b18d08f8ab47843d69e151_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:cc9cd14a515fd851ab843c62a6a3443f6ff2684710044d232a304caa18121e84_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:0546d72bd41c58d8094de7cc88d3e634ea75e4f3e7cb44ca8198cf1b2e5ab04c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:a8c11de11e7778c5357f962f731530c815ee73a519f54b7a71897092d1377796_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:09522adc9acad2be18602e32991e68d0127f894460506e70aa86df54c20affd0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bcfa40dbf26735094fd0f6ac3cf1cad83b7539f8bc75d81eb64e0a19d97c1b1d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:f6d05e4d58c287bd21329a044848e47c197fc83e4af67f7e64306d95b69a6498_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:fb4a1d15131490352837f759ee7b2f7b55696f794a40ba786627a1cb615cfa64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:031433fa156008a7ce297b63ede479a6efd8791f5c5ce4ceb9f132f209ff656c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:294ec77677a6481d4cfe216f425703b5476165ffe1ff86e835ec2becac8f7dca_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:74298b0408210925cb94b412d12f5a16941e1fe5991c2cead3d26cd5c6ffb4cc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:a86dd4ae0fb2a6057eb30e594f7fc3c722f33dd554dff36aa498b15d8c1dcc13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:0f89db43d98c11d69c2edb9d3fae3085d22a70b3de42a2f4e68969391b4565ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:28aeb2ad9b5bd6bec712ef4dc3f773f5dedd47acd145bcd6007a1f9778bb07e6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:bc7715e7835899f6f3ef173778ce2d07e1a2d058b87031a6d7b2202a42ccef33_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:dd4b41d440d00aba3c6e30c2b1c116516402d7fb8e7c1ab10b97a4e8f4fc507e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3da13d1a5e673734b43f85ade4ae4d40575945a62e756563755c226783829959_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:44a56cd708f76ac94195de3861748ec1c5aaab4127a6e39f219635963722e395_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:4572a0ae30f3467cd7ae083acfc05ed045b5397ae284ca16c40886f6ae675baa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:9f1730db64403eefae6310cf58890d16a5e21aa1b9086028620cd6d29e6cd754_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:28a48ad6aff8602a5b59c2203047a598d5adfeea59503bbaad02d1e3986a2279_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:8c21500cbb9ee0973efb67aa8c32cc1359a94548b2c2a6386b30cbae695934ba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:ae4d82e3713722e1aed6abc0a7ac1b08766fc24d64f3f3ba01f58dda96fc0408_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:3c89b10216b34a43128a9ffafcd10adb92517166554966b3f8b016679ee8d133_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9987c9ba25b20cf8e8bf11d388f03330358c1ca37e76724f5d229670d61580d0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:bd0a7767d4dd5c049fcfa6a181fb4dc7b44149ab5790be1cec1b6525d9ba6cff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2d52d819f0a37f9df61dcf3ab118e4fc391fb434fc5703570161422df34d4461_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:37b9c5f1a90b03a883f0b1eed4333b2f12e5f13cc664d8335daa1cb8a3f26d64_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ab485d4b0369a967fbc4125ffa539f43b28f9ad7bf3ad0c5885bd86dee0214ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:f3092387090218098102e8eb44f1f4c05dcd62e5b31fbc00ac258684bb2a8609_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4f54178cce1ac5c8f00aa958d61f747402c0e4ef3d59f3c9afe7809353be45dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d05d48ea317a9466c4f9e5cc9a1cd60422830da0eea823f686cd8d3aae317c00_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e7209fd84bb9522237f9caedb43e0dd27a93b63d9066dac1330e5f6974b89810_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:f50fa05848ec5ecb085b106903890d7c58d583c3d0b0697c9f739fc9fcef7a3b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0538c3ce443ce61357594d15eb9e70a1a3dd2b3b0672e90ef0c0fb200c77f392_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:1bab45debd45c344b562c46d75c27540a1f05492028970f6991f9d30dfe680de_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:23d3c2b463442f8c93706486e537be521a760e0fa51c75a2723f0fc1dbfe20ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:598b03d5232daa203ffcf4d772e7035ca2f51cd1b11a091dd6306a56a2c8615d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5e26da0b5c556d8015c8bd66f2f3d2ba103f58c138ca618448cd403d805c809d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:982b77ab4a9a65923c0720725a7e1b3978a4ef06c29ad240932ec119bf189a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:eee869f77558af2bc003569f17812b7d5897b38f4d7afb24cbf7d87adb6483af_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f71282ababe15f450e152270ca7a1fa1fee389c72717e5539ca443ef7a852fba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:549c32c61d6d2d538b9433af65debc4a576c25b88ec3bd868599dd2c50667e6a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6ab99bdcedbf6cd877158e15f398450e4d9386bba842eb2a778c88053e1b22a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:accb05d004c7bdd050b8949a882a788b4ec4199afb9d0bfdd3e96202ca2666d0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c414aa18fc8ef38befe69cab2e7cd12283cf8b3148c7a9596c9183c5f4ac49c4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:422185f18695351d07ef4afacb3122b6f1a680bb53e33c5674a76bc9ee61ea11_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:63c777b15d54d714c7d266dfb286592bc422b638bec176878fa2e0dcc44afd87_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:64e1a4e57dbbd35238fcdd3b80baf0281566a27ce76f2ad389fcc50a7a16c3ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:cdc406a39b5241843f71964910bffd15bcd9ff3f4467e9b13bf6ea707bba3a8e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:7dfcc4fe44678675d4292555c78593b176bcb0e1ee7c1cdc83b8de3045ac3153_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:95f73756b6131fe9798ae620de689a405150ca71c60fd6413bb1174c0b7b732b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:d8e9ac204dd8c409f5cb2d732bfa2fe56688fbb9e285fc5b3557675b0b04363a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:40d03ceb295d791dd2929568883cb35fa1617090b85ba6e0fdadbad4778084f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4e72b1544de64ad3fa7eb5cea54d8504da71ac51271d6f27e719ababc4bd5c92_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:83c7234284d56d2ab10e7adf720aace8f950831003a6fea7f5fcf19203110d95_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c13d4ebf65e53ba5423c136c3aa5eecdc1c3026a48069d4583e7a242969f3c9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7ab32bd6127326b4219c0adb9859a3903e1615dc62ecfee18098e7f19bef509a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:c10950aab7a9a4b6f43328988cbfee1278ee0dacc3cd48d518a930b07d645ecc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:ea769d248ec228fa96e899a485342677caff1cbb34dc74cb373cc3458c97ea99_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:12d4819a8f33662442e84aebb4e099481ef42f30cccba5175268a5435a921279_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:936e5483a4b418d9b46f3c3e653edb306e2ef88b6bbee26ce75065aa092533a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:9392a0e57be7343f36a7424e35dc41b57559948e2bebfe1d37525a3da8903016_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:adab22f8e3ea1497fec4af641e0cecfc922a853a712af64a05a5aeea4d008830_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1952fec37467f0d752c3aeae6f282a399fc970f7d229f21c2384fd868314064a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:4ee66eb652a105bdf389a10a2362e508fe4cb3b1c0c0f402bc5dd8c6b2e7d758_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:e9eae42d74c6bd619cc4ad405c84efceb1267f39872e30714c09eb21bdd9b136_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:f5645172fc671e0ff1b8473aaf65739d061d84566307bdd1a8e572740946a4df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5f976edd69309183df47cafc509fa41dff74dcc7430bb3c60cd01f0720eb75af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:6f048cdbce0b2c38f5e3067bb98b260abe3d6b29eb7ab2a4e114f0ce0d83be76_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:ac6996c6cbbc8cbc87565be6b954df6970fc1241b08ee1be91a3a0e6fdc1c204_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:c761558733b996cb74ea846b382ccd3cb3ebedc4358173803ea6d6f3e0ae8b63_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:299895c90d5969068dafb0e578fae619bc98c829bea7bad21de1d2093129d54d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:63e2494007e87dfe4efefe6fa2fb98280a98108742c1565fcdfc5bda797b9fe8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:e33eb2b816ed5a96728a61a016a373610f6acbdf8f269c690ae97d149743cffa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f9e6438d8bb8cb8a980030a214ad8352af9d9662792a944266b985ccd72b90d8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:38b844901ee37dbc3dcca9756e76e10064f13a1ae2e823c9cf1d2bb6cd5e94a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:6acce2dad51b12eef8d27ba8e19cf63fe47a59fe4c8a26aac717be24738d3dba_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7c091c88579324dd81748a32fccfc6f48717c79a50fcbe3413cbe86259e820c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:1ae5c0c51079200e965198572ccea4b6f3d4d5a7d154d731a541b2b0e67cc49b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:cf2c02d6b781c1d2ed134eacc01d93527f04d0b8ffb18ec36ae16437d7a75e09_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb279201c0d9fbec671e9ea30d6157c9a7b107eefb0129b3d0f01e532d23198_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:00f6e275dd5ce5afc901c13cd2f8cbf80b0801b6253275cd1204d2336361d2df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:3464fcfc3fb2f4ed2b5a7a288618dcd9ba8b13ea4740174450f718e3bc6ad19a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77530e04f1282819461d568c0b6c471ab678484c41f7ec0979daa6a6fe0fc832_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:2da1d802a74bd318f5cfa713525577919eb4298866e7ae2e9207b53df7c538a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:b91a49fdea8f50cfe136e98eb4acd4c4af81d95c73746ddfe8f0e8a4dbb07e09_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:e7afc14ab6d21818d74c063e49e38685ff06c1515566d79245e9eac05b9d30fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3d1608852ce75a2b49c3434f4e8ee7dda0d8be548e18476162e994791d623437_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5dc5786ad4606e2d7165afa3421ed865a19d4963253eedff5f86c43fcf488033_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c385f757788b60adc79613dad6cdc18145c4be72e5cbe4c3f687f15b67ce414a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:818464b1d00755f44c21057470d2035f12cc99d383a0b84dcfd6d15738a0c022_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b57c0cf0a47e13787a17ef149145187e5bee297a018decf1d4c662458dd9eb60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ed7a27693b8ce6145d0dfed31c9322cf65e938c8686075f6fbc574d97c96b0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:01ac980555c97d1bcf57ced77784a06f8ddb8642abf50d907e89d0d57615799c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7953533d7dbba90dbe9057e7a6df5069047f78677aa9efcbd41175526238c45e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:c30984f2a78b187044a36e3547869b019089209b775f6059b9b8f72d9b020e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:3e546832162068b5d956ad5d4ef47eb47d31f109bd8ec5be554a557e74b861a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:62538913a5cab44dc1684b844eebdc07e50bec986279b1992fbe1b67e25fd5dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6e1bff042795d74a89f6131141b0823f618f605868f53ddcb86a42711628d45d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:9fb670d43654f2e312606d55c7a4a24701dd06cd99abd032ac3218db62b7b80b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1e5df4b408114deeccff4a9529e40fc1961302171a92361a8bfc4db21425bfac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2733973ad952cc77643356c918f34d16a6decd25c47b2f752d42fd75f3724f9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:781eed024814a6e7b9531a10e3a4c94fa4b378134f67c8b7fd7d723bea6b7d07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:c2023cbf079d625f3d321a8ef1bfa23e993f555c67e593d677b79356bf3a0807_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b42061c6aaba87aa86d88f54cc86dcec56015a74576cb63de5294d5f5b7090ae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b640235198fb64e5b6ed7c913fc372c773e69342bb319226919f3c2060cebe79_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:c090ede014662ec44a92e12a346d4f58e3f7834f103101e54946159fb3c7f4a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:c3d6bd5dcaf2551190cf1535ee45bce23b95eacccf89eab4d99e6f642dc51506_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:75b28916972d49f8dea1080a7159a2293dc8b32259e3dc7f3b23774dc7ea0d37_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:aa7de77cdb1a6fb1cf51c986fbbd6517753cc49bff44d995a13dde578a118e60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:cd6c55b0d09b7a02869d615361bfe8a5a10719b292d5fb3a733a7228a1729181_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e679006db13dd82f7fe440c3c0fa94bcdfa96393a4927ec0c30987de04c1611a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:294d787e27c198b1cff83436fa229af1981b408ce06eee41f539aeb20e32954e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3c2071f6c2c80483afe745c5a5ba8b51e9976171d84e01a1189288c4cda3b811_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:5094c9335393938c6aa2d586963ed3f6db302d14f1a2e4480284b81df1e06b34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2165c8f2bfcc8f943f3a4e8d30b926ae4e1ba55af9ca28c7185de0141bb48032_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:399028b92bf1ec4a6fb7c8b171fe92845433172f494cf933dca5d778eb067a5c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:61e4e758b278a31cca08c998b58652bd696ba97c195574520b2e5ceeced97de9_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-29T07:27:54+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8be03eb8cddd01ebdb98180c67dd640848a997e7ddf8b6e7f22a7559499869ea_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c5c6c5f957b61fac8e6d232de221b97dddea47eafdfb0774361badc893a05e5e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e8a37402e7ca28e5ed2b854448887aaece1515680082efbcd0774002b9645011_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:10094"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:27045aabfee1bef5a0e5fe7c8d87998b5d085e90914cf0cc879be88a0b289f32_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:c8c5207f1784a5357e087914354fa0f77b8f315809a88562ed2c27c1dc1693ba_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d717c8260a3499f114f146efe58afc1137caa648dc2c57791fa31bd6554ae458_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f1ab962fa8e19af109094f673b205461b1b1a4ea26b7620268d15d3fd1b8ecd4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4c598df247745481bfaea4aba7598496d87e6407e1c080b59384b3a04c43ca0e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:816548bd51389d5cc6f6354d3893d252d3201e4bf96593e91259104e81d67759_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:826d0571835e3585f7709f36b8319ef8ddf4e8ef8a529e89728b20f35399f1dc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d27b8222063a442039c3fa5e960c256eef2c7f44c91ebc17686dc596595f1d14_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:241f11e567990a11f25ebbcb91cec2d5698ac736fa7ecc3bf5d6505c2e590b5d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:893e94bcd1ea377a5f2bae00dee9030dace7eef11fc6e54229e00472ac210ec2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8cde7c931c746c4428bf22d9dcdd8caf518e4273bcc2b88c8c3cb025b445fbec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ebccab85b2775fb13e29872d87985ab69a774a4aa6556402dc1e4478232dfa4b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:7284df8190c5e8cc412917b22396f6db8a09f932851e94b934dd73fea6b7e9e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c042aafcfd8feb67684753e52602431b1181621acdcc9e61fae9601961637ff6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:cca78bfdd762f3413ab1762660ccd5e0ee61da1f83fc2179fbb803518011819c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d1f7bdf7807d6d0741275d3bb9510eb892dadae930826f3d2c24a55e9782d5ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:0145eea7baa031331c188b69ddef4ad0765a5c9ca37fd27d54e2fc30e3eaee47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:445beae6bc5a6295d12310bee6bbd6f3a48011c95b40515e6382e27b2421aa9e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:64edff7956f6b9a8e508080dd1ff3db9dcf4646a5945e4f5a568ff9de8479598_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:849dbb2d6396654470d6dcadc0754f6917bfb7cb41f339d9a9d07009fecebc06_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:2dcfefacc2e1e3253cd017d52e099ddabbcc122f133455fa9e445b73ac3ac083_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:ab33e7aa29a7001f8d86575f885e9b6d38ba4d7f0954539757817aeba480e524_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:be6abecefbcb3a36db0535262987171a032ee22a824880a4d41922808a0a0bc5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:f8b3c8686ffdc3c6d92e46fe5246566cefb9d12e355e3edfc82741e9888dadd2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1e9f84c94a6f2320b18d426e34ce5614585a785b0d260706fb7b3e2ed653df5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:5e1d0d8d79e70eb5ca5bc971b767a108244edfdfa08aa4f9b1a1a7ea714b11e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:ebf8bf1c22cc0adc2a59b4f8eaeb1b81191587a94aa816d6da666a261719af08_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eca15f37d0de3827cbd8456edc10124c849b423928473902afaf54aa0bcbd624_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:51f179d88b85e36f646435828302d67c8ff327d5560866c5dfa1b7bba5c0a5f4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:db4b25de2051b1762ff366ffca0e6f93f4f810f0ea38cb2c7803adf019f840f4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:e2160827e92d2fbbb7e624fe92e762b3b50320fafb76ede4f66b882228b78540_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f50289ca9ec0a4abf468b3a93476b10415bb6da99f16ca316d4c3f08f1f16594_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:16b358289777243a6763223070dd0012a1ef5733ed810ba27aee168ecbf0a9eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:5dfb9bb1038b0a057da7ac7e0367dce3601acf3494704b057070a786baaad59a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:541fb836a9c207e030f91060fe9bd31dd1cfa8900a1b74463f9858cc36d97ed2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:5c53c6d78a52b17d51db99a72117549e2179f90d4243f0930355d1378d528201_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:08238fbaa230a53fd4ea7f3eb701b398349b55161d57dbc4e303b0a46080d985_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:89ae87596cb9e3524dbb1cafeb8133e1d9a3a3aa9e8ea039b804f40cf44e1c9c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:fec596fdba12eef010aea34b308282370242e96ff65cff8936e28369702079f6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:0a07ba50051553c3dcff9068c9040dfa8775fc128bac0784900ba4863fa81609_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1b465eaf900309bed4cedb06b46a1e4edb10b9d0ba993585aed84a97c91ae70a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2ea6e5bcc3b3e2dfd98eadbf96dd9cea26308a0542fb1d953137a04a48456985_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:67eb2f9fffe76c2e3bb133c7c4a2cec0178e3ee0076ddfc18b08bcda407940b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2f849055d3a811c2ec3f5391e0fd01f3fd7d8b9ea483a39df47e5d8a2ed6baee_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:503f0ab56d42395194dc5f050b43ec4fb69414750630e76a2634d881e2bd671f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:9bf7b748def1c91caa1e93bbb9f13f5d054c97c328d667ad00b060559d76c1c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:c8b1c0c42003158da4042929ed9b598a0c5dad70ed87163ef72cb13657de0e52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:098ccc2275ab68cee3e5ec20e7f6b302ed76e4d66bf65957376ecf184a47c1be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:3406801cb156af01e2c4f78dec2e1a4f9a5bb881dd2fb4268dd621435e634b93_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:b18d87c7b68badc9c90165b6206d8ecb1bbae17d0ad401fdf7bbed5df4ded0f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:cf7f6124729e761b1acab5f7ea343365bf66942c85fe92b030ad568cb20a8e08_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:593e1d0e8b26b19eb319b94e0c5338d7bee33863456eae9d59674b0239a9d2e5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8ffcbc96bdd5e6b4f55d1fa1e4cdc4acfbc2d4f62705fc13e3b0a37dcb08eff9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d19cb645ed48afbf70ffd3f9c096f971192f0c5c00c7e8897f36c328e68c7690_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:db7c9685d5a8c1bafb226e2673a69bac67691768338bb42a3b8d278bd9ed813f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:81cd79485653bad71c4142ac661ff1102cc977ae678e715caa8494b011a42dbf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:c3c25537f0d938d99403e7c02f1e7d7c88665bbc08c2bfcd70b8d100a4c7cfa4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:c561564a9eda424df7392e4f220c80ae4f8b7fda8de60157d5ddbd65d5135f27_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e11806e1270b7734a3a1306f0a69d4b5337450e95b29b9b495a7d9670e99f0c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:489e5e540c0bbe17b29d839412ff237e9b4d72828cf32fbe512b1a4a0c920443_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5a93d29002aa07e5f503916b106a0d97d43738dd6340f3aeec1320d47b9c6928_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:b55bd4c4cab0f5277aca4573b676d595429b345df2de10f34ea1661b9c3b68d0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:f504360dffc0b90a4721394aa068ddb95038a6f1b3d6d6023d799d2b6ea4b739_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:cb02ee426076c69bda9459299653a67e19b84663d6b18d08f8ab47843d69e151_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:cc9cd14a515fd851ab843c62a6a3443f6ff2684710044d232a304caa18121e84_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:0546d72bd41c58d8094de7cc88d3e634ea75e4f3e7cb44ca8198cf1b2e5ab04c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:a8c11de11e7778c5357f962f731530c815ee73a519f54b7a71897092d1377796_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:09522adc9acad2be18602e32991e68d0127f894460506e70aa86df54c20affd0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bcfa40dbf26735094fd0f6ac3cf1cad83b7539f8bc75d81eb64e0a19d97c1b1d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:f6d05e4d58c287bd21329a044848e47c197fc83e4af67f7e64306d95b69a6498_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:fb4a1d15131490352837f759ee7b2f7b55696f794a40ba786627a1cb615cfa64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:031433fa156008a7ce297b63ede479a6efd8791f5c5ce4ceb9f132f209ff656c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:294ec77677a6481d4cfe216f425703b5476165ffe1ff86e835ec2becac8f7dca_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:74298b0408210925cb94b412d12f5a16941e1fe5991c2cead3d26cd5c6ffb4cc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:a86dd4ae0fb2a6057eb30e594f7fc3c722f33dd554dff36aa498b15d8c1dcc13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:0f89db43d98c11d69c2edb9d3fae3085d22a70b3de42a2f4e68969391b4565ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:28aeb2ad9b5bd6bec712ef4dc3f773f5dedd47acd145bcd6007a1f9778bb07e6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:bc7715e7835899f6f3ef173778ce2d07e1a2d058b87031a6d7b2202a42ccef33_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:dd4b41d440d00aba3c6e30c2b1c116516402d7fb8e7c1ab10b97a4e8f4fc507e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3da13d1a5e673734b43f85ade4ae4d40575945a62e756563755c226783829959_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:44a56cd708f76ac94195de3861748ec1c5aaab4127a6e39f219635963722e395_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:4572a0ae30f3467cd7ae083acfc05ed045b5397ae284ca16c40886f6ae675baa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:9f1730db64403eefae6310cf58890d16a5e21aa1b9086028620cd6d29e6cd754_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:28a48ad6aff8602a5b59c2203047a598d5adfeea59503bbaad02d1e3986a2279_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:8c21500cbb9ee0973efb67aa8c32cc1359a94548b2c2a6386b30cbae695934ba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:ae4d82e3713722e1aed6abc0a7ac1b08766fc24d64f3f3ba01f58dda96fc0408_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:3c89b10216b34a43128a9ffafcd10adb92517166554966b3f8b016679ee8d133_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9987c9ba25b20cf8e8bf11d388f03330358c1ca37e76724f5d229670d61580d0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:bd0a7767d4dd5c049fcfa6a181fb4dc7b44149ab5790be1cec1b6525d9ba6cff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2d52d819f0a37f9df61dcf3ab118e4fc391fb434fc5703570161422df34d4461_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:37b9c5f1a90b03a883f0b1eed4333b2f12e5f13cc664d8335daa1cb8a3f26d64_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ab485d4b0369a967fbc4125ffa539f43b28f9ad7bf3ad0c5885bd86dee0214ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:f3092387090218098102e8eb44f1f4c05dcd62e5b31fbc00ac258684bb2a8609_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4f54178cce1ac5c8f00aa958d61f747402c0e4ef3d59f3c9afe7809353be45dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d05d48ea317a9466c4f9e5cc9a1cd60422830da0eea823f686cd8d3aae317c00_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e7209fd84bb9522237f9caedb43e0dd27a93b63d9066dac1330e5f6974b89810_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:f50fa05848ec5ecb085b106903890d7c58d583c3d0b0697c9f739fc9fcef7a3b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0538c3ce443ce61357594d15eb9e70a1a3dd2b3b0672e90ef0c0fb200c77f392_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:1bab45debd45c344b562c46d75c27540a1f05492028970f6991f9d30dfe680de_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:23d3c2b463442f8c93706486e537be521a760e0fa51c75a2723f0fc1dbfe20ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:598b03d5232daa203ffcf4d772e7035ca2f51cd1b11a091dd6306a56a2c8615d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5e26da0b5c556d8015c8bd66f2f3d2ba103f58c138ca618448cd403d805c809d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:982b77ab4a9a65923c0720725a7e1b3978a4ef06c29ad240932ec119bf189a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:eee869f77558af2bc003569f17812b7d5897b38f4d7afb24cbf7d87adb6483af_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f71282ababe15f450e152270ca7a1fa1fee389c72717e5539ca443ef7a852fba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:549c32c61d6d2d538b9433af65debc4a576c25b88ec3bd868599dd2c50667e6a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6ab99bdcedbf6cd877158e15f398450e4d9386bba842eb2a778c88053e1b22a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:accb05d004c7bdd050b8949a882a788b4ec4199afb9d0bfdd3e96202ca2666d0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c414aa18fc8ef38befe69cab2e7cd12283cf8b3148c7a9596c9183c5f4ac49c4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:422185f18695351d07ef4afacb3122b6f1a680bb53e33c5674a76bc9ee61ea11_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:63c777b15d54d714c7d266dfb286592bc422b638bec176878fa2e0dcc44afd87_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:64e1a4e57dbbd35238fcdd3b80baf0281566a27ce76f2ad389fcc50a7a16c3ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:cdc406a39b5241843f71964910bffd15bcd9ff3f4467e9b13bf6ea707bba3a8e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:7dfcc4fe44678675d4292555c78593b176bcb0e1ee7c1cdc83b8de3045ac3153_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:95f73756b6131fe9798ae620de689a405150ca71c60fd6413bb1174c0b7b732b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:d8e9ac204dd8c409f5cb2d732bfa2fe56688fbb9e285fc5b3557675b0b04363a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:40d03ceb295d791dd2929568883cb35fa1617090b85ba6e0fdadbad4778084f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4e72b1544de64ad3fa7eb5cea54d8504da71ac51271d6f27e719ababc4bd5c92_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:83c7234284d56d2ab10e7adf720aace8f950831003a6fea7f5fcf19203110d95_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c13d4ebf65e53ba5423c136c3aa5eecdc1c3026a48069d4583e7a242969f3c9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7ab32bd6127326b4219c0adb9859a3903e1615dc62ecfee18098e7f19bef509a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:c10950aab7a9a4b6f43328988cbfee1278ee0dacc3cd48d518a930b07d645ecc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:ea769d248ec228fa96e899a485342677caff1cbb34dc74cb373cc3458c97ea99_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:12d4819a8f33662442e84aebb4e099481ef42f30cccba5175268a5435a921279_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:936e5483a4b418d9b46f3c3e653edb306e2ef88b6bbee26ce75065aa092533a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:9392a0e57be7343f36a7424e35dc41b57559948e2bebfe1d37525a3da8903016_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:adab22f8e3ea1497fec4af641e0cecfc922a853a712af64a05a5aeea4d008830_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1952fec37467f0d752c3aeae6f282a399fc970f7d229f21c2384fd868314064a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:4ee66eb652a105bdf389a10a2362e508fe4cb3b1c0c0f402bc5dd8c6b2e7d758_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:e9eae42d74c6bd619cc4ad405c84efceb1267f39872e30714c09eb21bdd9b136_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:f5645172fc671e0ff1b8473aaf65739d061d84566307bdd1a8e572740946a4df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5f976edd69309183df47cafc509fa41dff74dcc7430bb3c60cd01f0720eb75af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:6f048cdbce0b2c38f5e3067bb98b260abe3d6b29eb7ab2a4e114f0ce0d83be76_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:ac6996c6cbbc8cbc87565be6b954df6970fc1241b08ee1be91a3a0e6fdc1c204_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:c761558733b996cb74ea846b382ccd3cb3ebedc4358173803ea6d6f3e0ae8b63_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:299895c90d5969068dafb0e578fae619bc98c829bea7bad21de1d2093129d54d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:63e2494007e87dfe4efefe6fa2fb98280a98108742c1565fcdfc5bda797b9fe8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:e33eb2b816ed5a96728a61a016a373610f6acbdf8f269c690ae97d149743cffa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f9e6438d8bb8cb8a980030a214ad8352af9d9662792a944266b985ccd72b90d8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:38b844901ee37dbc3dcca9756e76e10064f13a1ae2e823c9cf1d2bb6cd5e94a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:6acce2dad51b12eef8d27ba8e19cf63fe47a59fe4c8a26aac717be24738d3dba_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7c091c88579324dd81748a32fccfc6f48717c79a50fcbe3413cbe86259e820c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:1ae5c0c51079200e965198572ccea4b6f3d4d5a7d154d731a541b2b0e67cc49b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:cf2c02d6b781c1d2ed134eacc01d93527f04d0b8ffb18ec36ae16437d7a75e09_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb279201c0d9fbec671e9ea30d6157c9a7b107eefb0129b3d0f01e532d23198_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:00f6e275dd5ce5afc901c13cd2f8cbf80b0801b6253275cd1204d2336361d2df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:3464fcfc3fb2f4ed2b5a7a288618dcd9ba8b13ea4740174450f718e3bc6ad19a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77530e04f1282819461d568c0b6c471ab678484c41f7ec0979daa6a6fe0fc832_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8be03eb8cddd01ebdb98180c67dd640848a997e7ddf8b6e7f22a7559499869ea_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c5c6c5f957b61fac8e6d232de221b97dddea47eafdfb0774361badc893a05e5e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e8a37402e7ca28e5ed2b854448887aaece1515680082efbcd0774002b9645011_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:2da1d802a74bd318f5cfa713525577919eb4298866e7ae2e9207b53df7c538a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:b91a49fdea8f50cfe136e98eb4acd4c4af81d95c73746ddfe8f0e8a4dbb07e09_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:e7afc14ab6d21818d74c063e49e38685ff06c1515566d79245e9eac05b9d30fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3d1608852ce75a2b49c3434f4e8ee7dda0d8be548e18476162e994791d623437_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5dc5786ad4606e2d7165afa3421ed865a19d4963253eedff5f86c43fcf488033_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c385f757788b60adc79613dad6cdc18145c4be72e5cbe4c3f687f15b67ce414a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:818464b1d00755f44c21057470d2035f12cc99d383a0b84dcfd6d15738a0c022_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b57c0cf0a47e13787a17ef149145187e5bee297a018decf1d4c662458dd9eb60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ed7a27693b8ce6145d0dfed31c9322cf65e938c8686075f6fbc574d97c96b0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:01ac980555c97d1bcf57ced77784a06f8ddb8642abf50d907e89d0d57615799c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7953533d7dbba90dbe9057e7a6df5069047f78677aa9efcbd41175526238c45e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:c30984f2a78b187044a36e3547869b019089209b775f6059b9b8f72d9b020e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:3e546832162068b5d956ad5d4ef47eb47d31f109bd8ec5be554a557e74b861a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:62538913a5cab44dc1684b844eebdc07e50bec986279b1992fbe1b67e25fd5dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6e1bff042795d74a89f6131141b0823f618f605868f53ddcb86a42711628d45d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:9fb670d43654f2e312606d55c7a4a24701dd06cd99abd032ac3218db62b7b80b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1e5df4b408114deeccff4a9529e40fc1961302171a92361a8bfc4db21425bfac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2733973ad952cc77643356c918f34d16a6decd25c47b2f752d42fd75f3724f9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:781eed024814a6e7b9531a10e3a4c94fa4b378134f67c8b7fd7d723bea6b7d07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:c2023cbf079d625f3d321a8ef1bfa23e993f555c67e593d677b79356bf3a0807_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b42061c6aaba87aa86d88f54cc86dcec56015a74576cb63de5294d5f5b7090ae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b640235198fb64e5b6ed7c913fc372c773e69342bb319226919f3c2060cebe79_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:c090ede014662ec44a92e12a346d4f58e3f7834f103101e54946159fb3c7f4a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:c3d6bd5dcaf2551190cf1535ee45bce23b95eacccf89eab4d99e6f642dc51506_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:75b28916972d49f8dea1080a7159a2293dc8b32259e3dc7f3b23774dc7ea0d37_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:aa7de77cdb1a6fb1cf51c986fbbd6517753cc49bff44d995a13dde578a118e60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:cd6c55b0d09b7a02869d615361bfe8a5a10719b292d5fb3a733a7228a1729181_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e679006db13dd82f7fe440c3c0fa94bcdfa96393a4927ec0c30987de04c1611a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:294d787e27c198b1cff83436fa229af1981b408ce06eee41f539aeb20e32954e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3c2071f6c2c80483afe745c5a5ba8b51e9976171d84e01a1189288c4cda3b811_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:5094c9335393938c6aa2d586963ed3f6db302d14f1a2e4480284b81df1e06b34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2165c8f2bfcc8f943f3a4e8d30b926ae4e1ba55af9ca28c7185de0141bb48032_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:399028b92bf1ec4a6fb7c8b171fe92845433172f494cf933dca5d778eb067a5c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:61e4e758b278a31cca08c998b58652bd696ba97c195574520b2e5ceeced97de9_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.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:27045aabfee1bef5a0e5fe7c8d87998b5d085e90914cf0cc879be88a0b289f32_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:c8c5207f1784a5357e087914354fa0f77b8f315809a88562ed2c27c1dc1693ba_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d717c8260a3499f114f146efe58afc1137caa648dc2c57791fa31bd6554ae458_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f1ab962fa8e19af109094f673b205461b1b1a4ea26b7620268d15d3fd1b8ecd4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:4c598df247745481bfaea4aba7598496d87e6407e1c080b59384b3a04c43ca0e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:816548bd51389d5cc6f6354d3893d252d3201e4bf96593e91259104e81d67759_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:826d0571835e3585f7709f36b8319ef8ddf4e8ef8a529e89728b20f35399f1dc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d27b8222063a442039c3fa5e960c256eef2c7f44c91ebc17686dc596595f1d14_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:241f11e567990a11f25ebbcb91cec2d5698ac736fa7ecc3bf5d6505c2e590b5d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:893e94bcd1ea377a5f2bae00dee9030dace7eef11fc6e54229e00472ac210ec2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8cde7c931c746c4428bf22d9dcdd8caf518e4273bcc2b88c8c3cb025b445fbec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ebccab85b2775fb13e29872d87985ab69a774a4aa6556402dc1e4478232dfa4b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:7284df8190c5e8cc412917b22396f6db8a09f932851e94b934dd73fea6b7e9e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c042aafcfd8feb67684753e52602431b1181621acdcc9e61fae9601961637ff6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:cca78bfdd762f3413ab1762660ccd5e0ee61da1f83fc2179fbb803518011819c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d1f7bdf7807d6d0741275d3bb9510eb892dadae930826f3d2c24a55e9782d5ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:0145eea7baa031331c188b69ddef4ad0765a5c9ca37fd27d54e2fc30e3eaee47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:445beae6bc5a6295d12310bee6bbd6f3a48011c95b40515e6382e27b2421aa9e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:64edff7956f6b9a8e508080dd1ff3db9dcf4646a5945e4f5a568ff9de8479598_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:849dbb2d6396654470d6dcadc0754f6917bfb7cb41f339d9a9d07009fecebc06_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:2dcfefacc2e1e3253cd017d52e099ddabbcc122f133455fa9e445b73ac3ac083_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:ab33e7aa29a7001f8d86575f885e9b6d38ba4d7f0954539757817aeba480e524_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:be6abecefbcb3a36db0535262987171a032ee22a824880a4d41922808a0a0bc5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:f8b3c8686ffdc3c6d92e46fe5246566cefb9d12e355e3edfc82741e9888dadd2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1e9f84c94a6f2320b18d426e34ce5614585a785b0d260706fb7b3e2ed653df5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:5e1d0d8d79e70eb5ca5bc971b767a108244edfdfa08aa4f9b1a1a7ea714b11e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:ebf8bf1c22cc0adc2a59b4f8eaeb1b81191587a94aa816d6da666a261719af08_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eca15f37d0de3827cbd8456edc10124c849b423928473902afaf54aa0bcbd624_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:51f179d88b85e36f646435828302d67c8ff327d5560866c5dfa1b7bba5c0a5f4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:db4b25de2051b1762ff366ffca0e6f93f4f810f0ea38cb2c7803adf019f840f4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:e2160827e92d2fbbb7e624fe92e762b3b50320fafb76ede4f66b882228b78540_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f50289ca9ec0a4abf468b3a93476b10415bb6da99f16ca316d4c3f08f1f16594_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:16b358289777243a6763223070dd0012a1ef5733ed810ba27aee168ecbf0a9eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:5dfb9bb1038b0a057da7ac7e0367dce3601acf3494704b057070a786baaad59a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:541fb836a9c207e030f91060fe9bd31dd1cfa8900a1b74463f9858cc36d97ed2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:5c53c6d78a52b17d51db99a72117549e2179f90d4243f0930355d1378d528201_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:08238fbaa230a53fd4ea7f3eb701b398349b55161d57dbc4e303b0a46080d985_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:89ae87596cb9e3524dbb1cafeb8133e1d9a3a3aa9e8ea039b804f40cf44e1c9c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:fec596fdba12eef010aea34b308282370242e96ff65cff8936e28369702079f6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:0a07ba50051553c3dcff9068c9040dfa8775fc128bac0784900ba4863fa81609_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1b465eaf900309bed4cedb06b46a1e4edb10b9d0ba993585aed84a97c91ae70a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2ea6e5bcc3b3e2dfd98eadbf96dd9cea26308a0542fb1d953137a04a48456985_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:67eb2f9fffe76c2e3bb133c7c4a2cec0178e3ee0076ddfc18b08bcda407940b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2f849055d3a811c2ec3f5391e0fd01f3fd7d8b9ea483a39df47e5d8a2ed6baee_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:503f0ab56d42395194dc5f050b43ec4fb69414750630e76a2634d881e2bd671f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:9bf7b748def1c91caa1e93bbb9f13f5d054c97c328d667ad00b060559d76c1c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:c8b1c0c42003158da4042929ed9b598a0c5dad70ed87163ef72cb13657de0e52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:098ccc2275ab68cee3e5ec20e7f6b302ed76e4d66bf65957376ecf184a47c1be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:3406801cb156af01e2c4f78dec2e1a4f9a5bb881dd2fb4268dd621435e634b93_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:b18d87c7b68badc9c90165b6206d8ecb1bbae17d0ad401fdf7bbed5df4ded0f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:cf7f6124729e761b1acab5f7ea343365bf66942c85fe92b030ad568cb20a8e08_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:593e1d0e8b26b19eb319b94e0c5338d7bee33863456eae9d59674b0239a9d2e5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8ffcbc96bdd5e6b4f55d1fa1e4cdc4acfbc2d4f62705fc13e3b0a37dcb08eff9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d19cb645ed48afbf70ffd3f9c096f971192f0c5c00c7e8897f36c328e68c7690_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:db7c9685d5a8c1bafb226e2673a69bac67691768338bb42a3b8d278bd9ed813f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:81cd79485653bad71c4142ac661ff1102cc977ae678e715caa8494b011a42dbf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:c3c25537f0d938d99403e7c02f1e7d7c88665bbc08c2bfcd70b8d100a4c7cfa4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:c561564a9eda424df7392e4f220c80ae4f8b7fda8de60157d5ddbd65d5135f27_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e11806e1270b7734a3a1306f0a69d4b5337450e95b29b9b495a7d9670e99f0c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:489e5e540c0bbe17b29d839412ff237e9b4d72828cf32fbe512b1a4a0c920443_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5a93d29002aa07e5f503916b106a0d97d43738dd6340f3aeec1320d47b9c6928_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:b55bd4c4cab0f5277aca4573b676d595429b345df2de10f34ea1661b9c3b68d0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:f504360dffc0b90a4721394aa068ddb95038a6f1b3d6d6023d799d2b6ea4b739_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:cb02ee426076c69bda9459299653a67e19b84663d6b18d08f8ab47843d69e151_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:cc9cd14a515fd851ab843c62a6a3443f6ff2684710044d232a304caa18121e84_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:0546d72bd41c58d8094de7cc88d3e634ea75e4f3e7cb44ca8198cf1b2e5ab04c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:a8c11de11e7778c5357f962f731530c815ee73a519f54b7a71897092d1377796_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:09522adc9acad2be18602e32991e68d0127f894460506e70aa86df54c20affd0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bcfa40dbf26735094fd0f6ac3cf1cad83b7539f8bc75d81eb64e0a19d97c1b1d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:f6d05e4d58c287bd21329a044848e47c197fc83e4af67f7e64306d95b69a6498_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:fb4a1d15131490352837f759ee7b2f7b55696f794a40ba786627a1cb615cfa64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:031433fa156008a7ce297b63ede479a6efd8791f5c5ce4ceb9f132f209ff656c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:294ec77677a6481d4cfe216f425703b5476165ffe1ff86e835ec2becac8f7dca_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:74298b0408210925cb94b412d12f5a16941e1fe5991c2cead3d26cd5c6ffb4cc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:a86dd4ae0fb2a6057eb30e594f7fc3c722f33dd554dff36aa498b15d8c1dcc13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:0f89db43d98c11d69c2edb9d3fae3085d22a70b3de42a2f4e68969391b4565ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:28aeb2ad9b5bd6bec712ef4dc3f773f5dedd47acd145bcd6007a1f9778bb07e6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:bc7715e7835899f6f3ef173778ce2d07e1a2d058b87031a6d7b2202a42ccef33_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:dd4b41d440d00aba3c6e30c2b1c116516402d7fb8e7c1ab10b97a4e8f4fc507e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3da13d1a5e673734b43f85ade4ae4d40575945a62e756563755c226783829959_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:44a56cd708f76ac94195de3861748ec1c5aaab4127a6e39f219635963722e395_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:4572a0ae30f3467cd7ae083acfc05ed045b5397ae284ca16c40886f6ae675baa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:9f1730db64403eefae6310cf58890d16a5e21aa1b9086028620cd6d29e6cd754_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:28a48ad6aff8602a5b59c2203047a598d5adfeea59503bbaad02d1e3986a2279_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:8c21500cbb9ee0973efb67aa8c32cc1359a94548b2c2a6386b30cbae695934ba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:ae4d82e3713722e1aed6abc0a7ac1b08766fc24d64f3f3ba01f58dda96fc0408_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:3c89b10216b34a43128a9ffafcd10adb92517166554966b3f8b016679ee8d133_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9987c9ba25b20cf8e8bf11d388f03330358c1ca37e76724f5d229670d61580d0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:bd0a7767d4dd5c049fcfa6a181fb4dc7b44149ab5790be1cec1b6525d9ba6cff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2d52d819f0a37f9df61dcf3ab118e4fc391fb434fc5703570161422df34d4461_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:37b9c5f1a90b03a883f0b1eed4333b2f12e5f13cc664d8335daa1cb8a3f26d64_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ab485d4b0369a967fbc4125ffa539f43b28f9ad7bf3ad0c5885bd86dee0214ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:f3092387090218098102e8eb44f1f4c05dcd62e5b31fbc00ac258684bb2a8609_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4f54178cce1ac5c8f00aa958d61f747402c0e4ef3d59f3c9afe7809353be45dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d05d48ea317a9466c4f9e5cc9a1cd60422830da0eea823f686cd8d3aae317c00_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e7209fd84bb9522237f9caedb43e0dd27a93b63d9066dac1330e5f6974b89810_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:f50fa05848ec5ecb085b106903890d7c58d583c3d0b0697c9f739fc9fcef7a3b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0538c3ce443ce61357594d15eb9e70a1a3dd2b3b0672e90ef0c0fb200c77f392_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:1bab45debd45c344b562c46d75c27540a1f05492028970f6991f9d30dfe680de_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:23d3c2b463442f8c93706486e537be521a760e0fa51c75a2723f0fc1dbfe20ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:598b03d5232daa203ffcf4d772e7035ca2f51cd1b11a091dd6306a56a2c8615d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5e26da0b5c556d8015c8bd66f2f3d2ba103f58c138ca618448cd403d805c809d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:982b77ab4a9a65923c0720725a7e1b3978a4ef06c29ad240932ec119bf189a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:eee869f77558af2bc003569f17812b7d5897b38f4d7afb24cbf7d87adb6483af_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f71282ababe15f450e152270ca7a1fa1fee389c72717e5539ca443ef7a852fba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:549c32c61d6d2d538b9433af65debc4a576c25b88ec3bd868599dd2c50667e6a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6ab99bdcedbf6cd877158e15f398450e4d9386bba842eb2a778c88053e1b22a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:accb05d004c7bdd050b8949a882a788b4ec4199afb9d0bfdd3e96202ca2666d0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c414aa18fc8ef38befe69cab2e7cd12283cf8b3148c7a9596c9183c5f4ac49c4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:422185f18695351d07ef4afacb3122b6f1a680bb53e33c5674a76bc9ee61ea11_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:63c777b15d54d714c7d266dfb286592bc422b638bec176878fa2e0dcc44afd87_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:64e1a4e57dbbd35238fcdd3b80baf0281566a27ce76f2ad389fcc50a7a16c3ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:cdc406a39b5241843f71964910bffd15bcd9ff3f4467e9b13bf6ea707bba3a8e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:7dfcc4fe44678675d4292555c78593b176bcb0e1ee7c1cdc83b8de3045ac3153_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:95f73756b6131fe9798ae620de689a405150ca71c60fd6413bb1174c0b7b732b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:d8e9ac204dd8c409f5cb2d732bfa2fe56688fbb9e285fc5b3557675b0b04363a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:40d03ceb295d791dd2929568883cb35fa1617090b85ba6e0fdadbad4778084f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4e72b1544de64ad3fa7eb5cea54d8504da71ac51271d6f27e719ababc4bd5c92_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:83c7234284d56d2ab10e7adf720aace8f950831003a6fea7f5fcf19203110d95_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c13d4ebf65e53ba5423c136c3aa5eecdc1c3026a48069d4583e7a242969f3c9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7ab32bd6127326b4219c0adb9859a3903e1615dc62ecfee18098e7f19bef509a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:c10950aab7a9a4b6f43328988cbfee1278ee0dacc3cd48d518a930b07d645ecc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:ea769d248ec228fa96e899a485342677caff1cbb34dc74cb373cc3458c97ea99_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:12d4819a8f33662442e84aebb4e099481ef42f30cccba5175268a5435a921279_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:936e5483a4b418d9b46f3c3e653edb306e2ef88b6bbee26ce75065aa092533a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:9392a0e57be7343f36a7424e35dc41b57559948e2bebfe1d37525a3da8903016_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:adab22f8e3ea1497fec4af641e0cecfc922a853a712af64a05a5aeea4d008830_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1952fec37467f0d752c3aeae6f282a399fc970f7d229f21c2384fd868314064a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:4ee66eb652a105bdf389a10a2362e508fe4cb3b1c0c0f402bc5dd8c6b2e7d758_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:e9eae42d74c6bd619cc4ad405c84efceb1267f39872e30714c09eb21bdd9b136_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:f5645172fc671e0ff1b8473aaf65739d061d84566307bdd1a8e572740946a4df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5f976edd69309183df47cafc509fa41dff74dcc7430bb3c60cd01f0720eb75af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:6f048cdbce0b2c38f5e3067bb98b260abe3d6b29eb7ab2a4e114f0ce0d83be76_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:ac6996c6cbbc8cbc87565be6b954df6970fc1241b08ee1be91a3a0e6fdc1c204_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:c761558733b996cb74ea846b382ccd3cb3ebedc4358173803ea6d6f3e0ae8b63_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:299895c90d5969068dafb0e578fae619bc98c829bea7bad21de1d2093129d54d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:63e2494007e87dfe4efefe6fa2fb98280a98108742c1565fcdfc5bda797b9fe8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:e33eb2b816ed5a96728a61a016a373610f6acbdf8f269c690ae97d149743cffa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f9e6438d8bb8cb8a980030a214ad8352af9d9662792a944266b985ccd72b90d8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:38b844901ee37dbc3dcca9756e76e10064f13a1ae2e823c9cf1d2bb6cd5e94a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:6acce2dad51b12eef8d27ba8e19cf63fe47a59fe4c8a26aac717be24738d3dba_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7c091c88579324dd81748a32fccfc6f48717c79a50fcbe3413cbe86259e820c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:1ae5c0c51079200e965198572ccea4b6f3d4d5a7d154d731a541b2b0e67cc49b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:cf2c02d6b781c1d2ed134eacc01d93527f04d0b8ffb18ec36ae16437d7a75e09_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb279201c0d9fbec671e9ea30d6157c9a7b107eefb0129b3d0f01e532d23198_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:00f6e275dd5ce5afc901c13cd2f8cbf80b0801b6253275cd1204d2336361d2df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:3464fcfc3fb2f4ed2b5a7a288618dcd9ba8b13ea4740174450f718e3bc6ad19a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77530e04f1282819461d568c0b6c471ab678484c41f7ec0979daa6a6fe0fc832_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8be03eb8cddd01ebdb98180c67dd640848a997e7ddf8b6e7f22a7559499869ea_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c5c6c5f957b61fac8e6d232de221b97dddea47eafdfb0774361badc893a05e5e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e8a37402e7ca28e5ed2b854448887aaece1515680082efbcd0774002b9645011_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:2da1d802a74bd318f5cfa713525577919eb4298866e7ae2e9207b53df7c538a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:b91a49fdea8f50cfe136e98eb4acd4c4af81d95c73746ddfe8f0e8a4dbb07e09_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:e7afc14ab6d21818d74c063e49e38685ff06c1515566d79245e9eac05b9d30fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3d1608852ce75a2b49c3434f4e8ee7dda0d8be548e18476162e994791d623437_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5dc5786ad4606e2d7165afa3421ed865a19d4963253eedff5f86c43fcf488033_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c385f757788b60adc79613dad6cdc18145c4be72e5cbe4c3f687f15b67ce414a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:818464b1d00755f44c21057470d2035f12cc99d383a0b84dcfd6d15738a0c022_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b57c0cf0a47e13787a17ef149145187e5bee297a018decf1d4c662458dd9eb60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ed7a27693b8ce6145d0dfed31c9322cf65e938c8686075f6fbc574d97c96b0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:01ac980555c97d1bcf57ced77784a06f8ddb8642abf50d907e89d0d57615799c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7953533d7dbba90dbe9057e7a6df5069047f78677aa9efcbd41175526238c45e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:c30984f2a78b187044a36e3547869b019089209b775f6059b9b8f72d9b020e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:3e546832162068b5d956ad5d4ef47eb47d31f109bd8ec5be554a557e74b861a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:62538913a5cab44dc1684b844eebdc07e50bec986279b1992fbe1b67e25fd5dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6e1bff042795d74a89f6131141b0823f618f605868f53ddcb86a42711628d45d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:9fb670d43654f2e312606d55c7a4a24701dd06cd99abd032ac3218db62b7b80b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1e5df4b408114deeccff4a9529e40fc1961302171a92361a8bfc4db21425bfac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2733973ad952cc77643356c918f34d16a6decd25c47b2f752d42fd75f3724f9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:781eed024814a6e7b9531a10e3a4c94fa4b378134f67c8b7fd7d723bea6b7d07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:c2023cbf079d625f3d321a8ef1bfa23e993f555c67e593d677b79356bf3a0807_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b42061c6aaba87aa86d88f54cc86dcec56015a74576cb63de5294d5f5b7090ae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b640235198fb64e5b6ed7c913fc372c773e69342bb319226919f3c2060cebe79_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:c090ede014662ec44a92e12a346d4f58e3f7834f103101e54946159fb3c7f4a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:c3d6bd5dcaf2551190cf1535ee45bce23b95eacccf89eab4d99e6f642dc51506_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:75b28916972d49f8dea1080a7159a2293dc8b32259e3dc7f3b23774dc7ea0d37_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:aa7de77cdb1a6fb1cf51c986fbbd6517753cc49bff44d995a13dde578a118e60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:cd6c55b0d09b7a02869d615361bfe8a5a10719b292d5fb3a733a7228a1729181_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e679006db13dd82f7fe440c3c0fa94bcdfa96393a4927ec0c30987de04c1611a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:294d787e27c198b1cff83436fa229af1981b408ce06eee41f539aeb20e32954e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3c2071f6c2c80483afe745c5a5ba8b51e9976171d84e01a1189288c4cda3b811_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:5094c9335393938c6aa2d586963ed3f6db302d14f1a2e4480284b81df1e06b34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2165c8f2bfcc8f943f3a4e8d30b926ae4e1ba55af9ca28c7185de0141bb48032_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:399028b92bf1ec4a6fb7c8b171fe92845433172f494cf933dca5d778eb067a5c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:61e4e758b278a31cca08c998b58652bd696ba97c195574520b2e5ceeced97de9_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:10105
Vulnerability from csaf_redhat - Published: 2026-04-30 10:57 - Updated: 2026-06-28 21:15A 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.16:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:3f36c9fe97e7a51fe5690f19c604c3713527981c9367b8b7686882e36aaf93ea_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c6ca80552aa3d1f36654251a3f67161b2083b67d3df2c3e6f38c3c3572baabf6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:dbffc77d9a086c3b9af2422e2727dca4c1838ae8b48b390d6ad69fc02705f995_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/frr-rhel9@sha256:9514006a33ab484e3135736118c70f51c31f34005629556bc156928db87196ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/frr-rhel9@sha256:a656db8efd65a9786fab384a205ece12309615580a3340bb9109bcff8e61f7dc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/frr-rhel9@sha256:b68a7a5859cbca02dfa05e925af2714227c15fb516ae7cf89d9313348dade299_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/frr-rhel9@sha256:f37f754c6359c687707a86e0a9bf1755041c9af85171ae0599a81dd48c53e2d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:02e6dfae6c48696bf53651ad272cc9374f04b20ed24fd6be7c67a087574e48d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:06b0c4535f06bae52fc8ca90a89dbb8d5619ba0d7798211028af1ee784d13f5e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:513ad3de187403dc1007e248428c745eb2d522a03b3a9b23aa26fc65c3d93a37_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a08c612f8cb22aa5c3efd6ff330642e3d235dfef0b3e827bc985b9ca7eaf504c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:147c132bafabcef7f8efdab81744d7879385d8dac010dd995b9d42e309817470_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:17ea1ff2373aec50c91d6a3958608f27d16952afd2e75db11cc5c8d44efdb118_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:577777cd08c2c9418331ca7bcd39c3d56de4250e17d45a07f6eab8f5e5c25671_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f5142c29e3deadf5bdaaf86c4e47c3849e8d184fa0e94e20f90d8b5c734c1f5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:0542361aef325e1a07e8eec868aa9bb283c84ad7dbd1efeba4c6184fa2ad4d77_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:16dfc66eb443f912b84829d7eecc7c1f53dfe8472212f15c59791d979fa84a66_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:4082c82eb5fb26c26453a59b22657ddc1326dc3a9ea92ef37b459e6ba8ca6a22_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:7e42f0261d3670ee802686d3dc7af1f0e759e08a69f9af3b470e03fab4913a14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9@sha256:01450301456878e9674db2ddfc3f04576fe55c69e99d3aa04eba94ae17b2080f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9@sha256:96693f8126646d7059ade26f2c67eee3b7be8578938434357788e657805d999e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9@sha256:a0ae51bb6f4d7051ac74b3010716c718cdbaf76a662ff7cd8cd6e0b576805234_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9@sha256:c44a4d6954452e5bc682afa6fba25ab51dc51d74b1a70cafe0e7cf25ebb0cfd8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7f6258266bccbcca635498ce666e66a8507d01e2ba9efaaaf337b57d14f26d10_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d714bb305f982efa78da071289508ba8db2baf58649a1e2f0ae9b0ddb57a2263_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7d0217453426ca0c9575b158abc341103ea13cd67bafd92124f8825bc41cdda_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:f4c42ff98d49337a1cb96f8232cab9b349625de78585279d8942e526be459cea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:3151eed2a25d88ff78011c11d7c1919a2596fd923895b2778e34629b8bfbd610_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:5d6d2ae0f3181abb25d2c933c13ae588d44878f8caf843b2ef3a48bf5c5080a3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a2973d796abe669f4bdc36fd7a9a074446de62e7129e519a137932cab9986cdc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a8cc726e618cfe1c7ee8d99172a5006efce6151f45c1658f784afa5ddc807868_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:74c8507e18640e95b55a9d1865a5604d5573a6d803b3bd6ad140252116daddbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:80ed81e053fd2747a1e902c4903f1e5e16ff7228dcf0de3b29a2d4c2c72a717d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:54df3621a2eceda85b684c4e00569b83e92b904ad33eba8f16bdd7a524a5617d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d2738696ceccc3b938bc86998ca586af3499938778ae6fbc6d17978821ae62e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:45965c8fcffc60c7486b3f0d6529e94e693857c0b672ddee7d19763e37b78e61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:88adfb5ccb4e317b42349aa070de3bd7e5c27bd6d0742765b82e1eaee472d6b6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bbb1289250fbfc5ff3ab65334a06c58e702b405667d2b04babbdaf4a80be0478_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:fdc08f17b67d399f4580ec9dbe173cdcc449cd39e435bd1a7f461f42693783df_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:3951cf8a27c45f072e652db6d082b7da3918f45c396c3c2741a6c601450fc479_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:864fb13cffda7d5823ba4a4383567d17dac490d73bb4b4315c66b6cc72353063_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9deba7562e574a1f0f8682301e5a462d8a4e287413e7df1c24c1dc9858c47ecf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1a61574663cc4f4990f8a2c49747c168b9ca99054294d72f243fa945574730ab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58b83258b1b2e8dab86a823cb71c8e65cca8563f3054f05fbdbed22c5f26d79a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:b85ea1417cf415e90481c517a281cf0911b15f4e05481b8e0af89a981f594863_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e093813edbb6d05b5e3ee2521569da55627ae80959e582ed6bfd1afac915e28e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:5b0dd05af5d0a5ba757f64ae98c8bef6e124d6893ec50ae58c2fa490ad1da9da_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:71bea17824ad9b14c6a1ac704d67bd88cc8b1915553688244537334af75c3d4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b5afe724298038c6bd4ef1aec50070dc05dcd6a0c7753895192a1ad9b5ce1fc6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d579a6ab524711f7bdd41e290c5ac02ce99844e4ff7009cde714852faa1e68e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1457c8c70f8f7530125aa2b3117ae25d5d6a0580ffc8656cbfac07cc13909d93_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:3ee44121c26163f6000dae58840f7f90ad4cde9b558b508f83f67ae1825bacc1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:54096f6eca87b0850865f1e2734af4aa375a77713137b895e4d3889955458493_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:d1888e9f7c082d7d18fba94ff0feb4acc1d6558b19188832a0509d5cfdd1cbf5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:55348dd1ebb0cfb9e8e96ebd0a55b4141178d01e7e26f202d69e1dba5992e023_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:87658a7ba8ceab40b559b7758a7f00698eae2cf3847a3cfb1e8e4b5889e1686f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a3a0883e5f0c5629c9430ea0c56d8f997742d4062d78b8227fb234c680a0a4a3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a5c42bdfc20281fd84d2ee0b940b46552e817e854d5fe9ba39860c82a4ee923e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:324d1d362c9bea02f5ddba10494c2ef8c90e989642dc4e6f0c5bc89d16b53a0a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:6ab29f53a706d108df289c5db2998fe96791571bc8bcd6754b907abcaf4379ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:6ec2a820720d5748c98ba86aec077d6d59226d51b5e3588707510d3d36e84eb9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:9ad4efcc603ed7757a0b0a7845aa7d72f5e23ba40f8298190a5793db965e2f75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:297a34f0de639347abfd52c0951a519cbe4beab738585a23dc3f8a67a9e5e398_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34fb3b211f74e041b9629668ad4b2d62167a62148682b427d96c0eccbe290c49_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0d269efc7c71d4d76586576c8c38b5b7b08693c029075e254b80a648d7f33a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fad9afe5d9d39e6644c8bc36eea8e34bde18e913f22d642e4b2f54c1081d1034_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6bebe3c5e9777fe0e0074ffdef26cdb219accc3f7b0eb18c63107377a28c674e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9031054e71f4ddd88ba35bf405221a3a2041e60c065cee5816bf8d97327563af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c207a46f0485910f3f08af7dfd7d15e20cc18a0201be59ff1495e9d826171fcc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cd1374515057f729d2cf1db898169a854f02dd73fad3ffe1ed8fa8a70961c55a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:081e7552cd297b7f12ae3ea2096636309b06b2b61561c9c39198dd2e0206027c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c4848aae14e6061af2347acefe372e64c5b68fa5c81354f632ce514e5d0087f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:93edabd2f066dee4beb96de47f43d89dfe67797bc67721f0e4d62f8bfd51fe63_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a5809d0e184c70d5d0d94ebb867bfb15742e99c480130df2ea6758fd3333d4a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:215b81bdaf6bfb80a6cbe8bae87f6da6b7ea153213c888bc0482a3fb57f07f5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5592db0a15ab4260c830189c78e320d55eb49670fe78861ffaa934dfc7b75e3e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:953d1556ce9fefc128d1fb47d7ac17f6e7b6509e6aad299e08ea5c0efc55140b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e9eed073a460afbab96736e200e080bfeba63e0cec4dedcdcec9b680adb33617_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:001047be9a9833099b587275b2955f33b74e43663bd9aa7a103be48ff66741c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:186686757f9c92645c8b99bf223e54d4530e5c8890eb66691f27259823258f54_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:27771fc6d92c5d01e96b1f742ae529f6e8f093dfe05bb45e9845974ecd02767e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:68f897418a57e3a04dca031c97baacd8596ddcb08e7542d0b2a05b6b3cfb1635_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:3a91eecf139eed92ad863b3efe6b2276e6130fa263f886ae24602de45199d9eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8e40d4bcc668e06e641a92352a5dab6ac27bb207a325ed4e7a3146543075b70e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:98c4b2c4049339400ed684b431e1634f595b6c3c3f8fa7037f1ddb2d04f4e3d0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:e4b3eff70c600b70374b1c5992b2362f590809afaed6b421795d1b869601e9b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:29c7ea3bc70551e7303de88482d31c404d70fefd6798366108ece99d866dfef7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:7eff4354cc1ba713da7ac40addb41a18d2890fabe6b2e8741afef2b1648e5880_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:89157ee64b9be78c6d64e6ccfbfb00a2f3c63d2e8997c88ef0ac966644e7280a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:e3b4385f15c779dc161a3765202bb70e5c9737393361adebdc5b45f0e9a0e7f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:1e0f9ed2a7106f3a6c2b9a38fb3cd755f7a9f3f7908c6bc6ecd119d4c3f545b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:a84aa36083e58b3c0f58eba66664d03f6704c5ac5a1ef8c2914ee3c72e409e8e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:b8a68a480dd92d1b58d5b22c3e72a8dccfc72f29b71400c449ae182a41330fcb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:dca0eb8d677c1a677dedab68d837878633edc0872198ea069ee14ff4ffe84784_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:2c94db335463a852c1c86a1e9e10b618dacf97f8f9cb9d3940cc81c59fa2dc4e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3b4c1045738a2c7afdf066b79c8314dd873696e5ad4ef6bd5e4b64c25f6d8a76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:451946b1dbe0496f4bae9f5706dffa67eb2e0c6e6834a379c2e512089baf11d8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8e21b89096862a83bd75d0a16a9f84776413d412b5f082e1eb59395421f12ea5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1f56244b8c2a31afbc98a7ec10c80a420cfabccbdd486c0d4f66916a1738836a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1ff9be3e9b7a97248033d7eebafb96e746764b7a34f5596cb6e40307bb8ebb14_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:362608b3b3554ca4aa53942b84cd8edc67b538958c0e0304bd150f86c696fcea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:4367e4aba42529560f7f107ecbac40e976bdf2a65094ca2a7c0915e3ef7e25e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:a9dffb4a8c56f80bd9360647b101af8f6f1aefb319cc22e5fca548854806e7b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:d048f016f53cd366d7baf5d493cb54d7d0048d06bd78df94af05aeabbfca36a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:26fea8b5ab20892ee95f29154544f43edf0af21b902de6f0e44e43cc92a0041c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:88ad485a4343852a9c8fc2c28f9e9aafa6b0f33ee76e2b1b707716f93500fa61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:a582dca50e55146395dc3d74425f4bf3d67ea94e8548301663ce839ec82cf336_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:e161c060ee33667088bb06106f2fb5f0e6b8ed8a73ffe07a47aa4a1542bab369_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0331d92ee2311506854cb2356d76af0c91511b0666780bc8a9f56fd4eab76caa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0416098c93062580897f27418206a04764519dd2680ec3abcf3eea0744522e74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5077c8e7184bb5ee3f560467a9f024b9b4db8e578d7399051d0af0a3fa98b29d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ec438084de12495a2e5e8a65e70cb6462428a173f632db719f8fcf3b1ffe03b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2c3df103fa272232278285c627dc147df35e8210fad25ad2c4da716fca597ef9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3ef41a628927d4d1be349dea48733cf0f88b549a07b2bc9ff80a3509a9d38f09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f39237845df57f3f842c3ffe086f07951e27fba8ad22562e7b629057b84e7767_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f4665da79faf6599d6ab248f37613d2ddcc65279dcb1b28c58c5179d3e2eb3b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c407b419feced6e958a592b6313c7ebb45473bcae6584e6199c130668c93260_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:6d5f8ab7a7f4a8f0e02b03238c5a558b09196e39e0dd67f4c8162a87e5057f67_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ddb8ec811dfdd925af7efe0aeafd1ca0055fb7cbe2ee0838c65b650757170258_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f0ed06d20b9f79f75cc74f3975da40e4d2cbbd19a5650d3fae12b4b8b1eb8d5d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3cf6e29e0ea8122e1f49e86d94fb8b33745abb5efdb8a3168b1655c9eb1aa634_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:71e2c086f21d1104091bbf5ea16c8a71f7b8c70fd191386e6ed6350519e96fb6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:93cba4b60a1f94d70bb726e8b35e054b801f8ef983a394378dbb62af04b1a279_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:e32224f0902c5bee46d900baeb3a0d5ff3c4446783316a6f4218ea9ea3d96d6d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:5cca093d2d8bf4b821fcefa60ed31994f583e6b4d0f36add2e15837ba13a54ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:c7e11295d158ece33bb1533c7ab2146734afae7997403c3313039fe8e4042b62_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ce29ee041d2a07642d3d63e847dc8bfe4be2ac935040c46c2fb489fd079abbb6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:eb43e0d479af584f6843d63541edc6b626ab712ad0a315aeeb526a268df810ed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:dacb5557f0aa61fd3d02d41fbf6774f836da79e039407a360c6101beef800c20_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:de2ba088ca5b6ac82841b4a02e3fa21df833fe7384635339885e14c6f2693e78_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:fbec93b6bb528247057c5a80de12ba08e48cf739139f885cdc3b99d53413a55f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:fdadd0941e2c21e6769ba153cfc2ae0b1f0a5a21e277511bff8fe0534fd4c7e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:4d2a45f85944228d66b2c7faa97b809535db2ab1a9f750ee881860a4e75a72d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:5d4245709a7d4376ce80773394e75d0f8b36f13b7af5e32bdc1ac5fdf589c5bd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e1f24bc46f7bf4cf5ec64ea17425a90129f0a99488fcc359c3db29398113e33a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:14d279701588ec2d73dd320faeca2e42a4c4e686814f98f6a17d8d9f1fdc0d3a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:2b93d944ca281693be0eb183e59334cdb8c0216f6a7aea80ff0404560b98354c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:50273d0d6da9c69ee2a8b78fe795bea3d3619b119a12e5683229ec407a513be6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4189bdf7b4b0257e0c860c4213e758b8d0cbab4f06e838bcdfed5323a4b38898_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4649d2d44fd2c3a8f91e81028452a98164210b9aafb8017e617cb6d7050853e5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:c2cc38b4fb8d7f8775d256826bb3b5e7c3e6ca35b3ac24b004a30258cd4f4c74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f33e9f7ff97ef473102b90016c327855d5ff1d27bf17fd36f4d2b546553f8b46_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2054859965b5f9815471daf7bcbf9e55ae57b36317ba5a6601f36bb1d0e77abe_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3be4aeab13b379ba5b6cd9d9797ee36da7dd685b35a6f45e399e79f4ba420409_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:424cfb306af67d196216b38a959824ec744c95e20fbcde525c0f302bcd6964c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5fe6bfc5b4061a7a2714c29b3cafbcce7f9f9b64afd14892a14299a7bf29d26e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:666b60cbe20f50e81d8dcc7c0c7fddc8abb643a93095b6118db7817868f43289_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:7eb1951694f5bae2173a988d761e6ece80fbf0ab36bd4ec1a014f9fa1a84db43_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:9765693924b8ec640974c64376a5720c8ab185c3964419578b9925a4eaac5248_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:dd48a7604537b65b80d2a4159fd37a824449a8fae81207475befbbb77c361ba7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:19535ae956f07aba6ca4695099c10f809b2cea36d376a9eb7bc9d0a84495a504_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:7a30179910c1784d01aad7326c062508cfc965cfc755712a1d38e8289e8f9379_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d0ea8f45c76014e6ea5fb9d6dc4e4af393a071f41e54c57abd862e7a8fbda431_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d2e5352a507aab9aca55c54318b6736163553d3de38d2d1e8d4243758fcc8def_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:2ac4a28094f99ab002bebb7c546e65a12f9d95ad9f9f62f4e4aef3247622bb17_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:4f61f95a11a8cd70dc27d14dbd7dd91f7d2b57a9719266fa73582005acad545b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b78a9ff749c9da98c29b918f45d5f11ca026512672bed7e90ae50a35f5c33e4d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:fc5f81c11a6065ce7114852e8464593cff69e60bf9277e616b5589e3a48b5a68_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:337ec522df81fc8bc58c9bbd648423749acbcd4513d5faa056bbfa81810585a8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:91b415630888ae0cf4e3ca432f9b9be7d00681481b681522211b031be3dcf9db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:9372cd049753cf4a91dfd5d025344f62e5b24135943c879f1fa9407cb47de1ab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:4b05f7f91c43570086657a04af7fd7240ab0ebe74a4ab163cc7e86d3c700c539_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f9eb14dbc03fbc1b7b1638d45c7143416d8b20aafd8dc31ff2d76f2dbce5eb71_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fa5aceb2480d81c302efb6849ccdd0c9903458a546acec9e389f136388acff2a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:068b100b0c15df30d9664032a88f1a01883911ca8b220de1db76f1c6791b141b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:3d895e8c27a2f0430418c85b50f40162fd0c1c796537f3ad30bdad60f2240645_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:70182f1d3a0c4a31a2f849d96efda9ffec182920e672d4384a493c02048c2707_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:15f98ff30d6198a3f2e6761a18123076b7d958d7520f0b12d6dd3a46ad9719d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:a43215e2db94f3ab53616b520f2ab1c7fb0076a5774161bd8767a27a2390065d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:b99f56f5e7f16c1e04a4a6d72e4c32322ef6bb2343eca87946de54f069bbb647_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08782101e310104c5d19c930d4edd49eb124832415618416d20049dfbed4cbf5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:27f4edc3cde1c7d948b73260b1de3fba136da756dd9f0f22916e02778b3823a8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:ab0896ce872f78ba1eb00bd4f0788fc4d8f75f29a50d09628faffc085ec79805_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:11e39079c8bab75830ec62ecb5816c9a7346387c76ba8ffb281bf8198becedbe_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:80721d9f6473ed2be5061f623d5946fa8161cc85b98c04355ba2fe95dfa47022_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:d3d4dc2ab077526554aa961e27a598e0cd11e5efee8ed64eed14f816d458423b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:202b5c866073a825c534e7025633d931d13d0b09fc7ffa8b9bfb7d03090ecee0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30b13ae772570ab84e7f5c8a12d34e9fb4c5c1bcdb5a6263bf34d257b2a841e1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:50978fd902161120b371e10fb333d101c2136c7c409cb360760611ee5e442c53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:59dec63a108221372a2c2538541ccdba81d0d4d9f3a7697be2099939342631ca_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0955416b7534ba4cc93b531d8ff5c924581718279fda1f3959d615763ab12616_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2375ba78f391d033133fbadf90d29d0dfa8989d7a395c9195433434042bd51cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:3556aab04fabcaceb6e9ad532d7081505ebd5cdff7cc605741969d13e59c7a42_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4c974f9cbf5e6a69c618f8d8e891bfe981a3cfc47a881d53f4eeef81c377b922_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:0f650a9fe5f6809895cad70c61ae1e51308923850efe02f3aa0f168cdbcaaf01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:694660afd01c0ab1dd9bfb7fa1475329465ec1cf42b131f75d97660e76b88838_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:f00d592e4c374dc18daa2bae226aaf440ca01881d5886f1227e7225d8a3f5d98_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8b0c3ef8a06fec1794efa1478952a25c9faccdcf30a46536879e0d3b87f4dcfb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:da4ee9e80f6da27bc38f102f60df392b3be77f3c6e9e6b95247f7a390c91cd09_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:e8b70363470153ed4f105873f8238befcb47e3022d4c5d0c5986bfcdd33452e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:15f98ff30d6198a3f2e6761a18123076b7d958d7520f0b12d6dd3a46ad9719d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:a43215e2db94f3ab53616b520f2ab1c7fb0076a5774161bd8767a27a2390065d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:b99f56f5e7f16c1e04a4a6d72e4c32322ef6bb2343eca87946de54f069bbb647_arm64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.16.60 is now available with updates to packages and images that fix several bugs.\n\nThis release includes a security update for Red Hat OpenShift Container Platform 4.16.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the RPM packages for Red Hat OpenShift Container Platform 4.16.60. See the following advisory for the container images for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:10104\n\nSecurity Fix(es):\n\n* google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation (CVE-2026-33186)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.\n\nAll OpenShift Container Platform 4.16 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.16/html-single/updating_clusters/index#updating-cluster-cli.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:10105",
"url": "https://access.redhat.com/errata/RHSA-2026:10105"
},
{
"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_10105.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.16.60 security and extras update",
"tracking": {
"current_release_date": "2026-06-28T21:15:03+00:00",
"generator": {
"date": "2026-06-28T21:15:03+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:10105",
"initial_release_date": "2026-04-30T10:57:19+00:00",
"revision_history": [
{
"date": "2026-04-30T10:57:19+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-04-30T10:57:52+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-28T21:15:03+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.16",
"product": {
"name": "Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.16::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:864fb13cffda7d5823ba4a4383567d17dac490d73bb4b4315c66b6cc72353063_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:864fb13cffda7d5823ba4a4383567d17dac490d73bb4b4315c66b6cc72353063_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:864fb13cffda7d5823ba4a4383567d17dac490d73bb4b4315c66b6cc72353063_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3A864fb13cffda7d5823ba4a4383567d17dac490d73bb4b4315c66b6cc72353063?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:71bea17824ad9b14c6a1ac704d67bd88cc8b1915553688244537334af75c3d4c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:71bea17824ad9b14c6a1ac704d67bd88cc8b1915553688244537334af75c3d4c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:71bea17824ad9b14c6a1ac704d67bd88cc8b1915553688244537334af75c3d4c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A71bea17824ad9b14c6a1ac704d67bd88cc8b1915553688244537334af75c3d4c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699283"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a3a0883e5f0c5629c9430ea0c56d8f997742d4062d78b8227fb234c680a0a4a3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a3a0883e5f0c5629c9430ea0c56d8f997742d4062d78b8227fb234c680a0a4a3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a3a0883e5f0c5629c9430ea0c56d8f997742d4062d78b8227fb234c680a0a4a3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3Aa3a0883e5f0c5629c9430ea0c56d8f997742d4062d78b8227fb234c680a0a4a3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:d1888e9f7c082d7d18fba94ff0feb4acc1d6558b19188832a0509d5cfdd1cbf5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:d1888e9f7c082d7d18fba94ff0feb4acc1d6558b19188832a0509d5cfdd1cbf5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:d1888e9f7c082d7d18fba94ff0feb4acc1d6558b19188832a0509d5cfdd1cbf5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3Ad1888e9f7c082d7d18fba94ff0feb4acc1d6558b19188832a0509d5cfdd1cbf5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699034"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6bebe3c5e9777fe0e0074ffdef26cdb219accc3f7b0eb18c63107377a28c674e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6bebe3c5e9777fe0e0074ffdef26cdb219accc3f7b0eb18c63107377a28c674e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6bebe3c5e9777fe0e0074ffdef26cdb219accc3f7b0eb18c63107377a28c674e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A6bebe3c5e9777fe0e0074ffdef26cdb219accc3f7b0eb18c63107377a28c674e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:93edabd2f066dee4beb96de47f43d89dfe67797bc67721f0e4d62f8bfd51fe63_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:93edabd2f066dee4beb96de47f43d89dfe67797bc67721f0e4d62f8bfd51fe63_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:93edabd2f066dee4beb96de47f43d89dfe67797bc67721f0e4d62f8bfd51fe63_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A93edabd2f066dee4beb96de47f43d89dfe67797bc67721f0e4d62f8bfd51fe63?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697774"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0d269efc7c71d4d76586576c8c38b5b7b08693c029075e254b80a648d7f33a6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0d269efc7c71d4d76586576c8c38b5b7b08693c029075e254b80a648d7f33a6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0d269efc7c71d4d76586576c8c38b5b7b08693c029075e254b80a648d7f33a6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Ae0d269efc7c71d4d76586576c8c38b5b7b08693c029075e254b80a648d7f33a6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697822"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e9eed073a460afbab96736e200e080bfeba63e0cec4dedcdcec9b680adb33617_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e9eed073a460afbab96736e200e080bfeba63e0cec4dedcdcec9b680adb33617_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e9eed073a460afbab96736e200e080bfeba63e0cec4dedcdcec9b680adb33617_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3Ae9eed073a460afbab96736e200e080bfeba63e0cec4dedcdcec9b680adb33617?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697884"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:68f897418a57e3a04dca031c97baacd8596ddcb08e7542d0b2a05b6b3cfb1635_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:68f897418a57e3a04dca031c97baacd8596ddcb08e7542d0b2a05b6b3cfb1635_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:68f897418a57e3a04dca031c97baacd8596ddcb08e7542d0b2a05b6b3cfb1635_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A68f897418a57e3a04dca031c97baacd8596ddcb08e7542d0b2a05b6b3cfb1635?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697769"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8e40d4bcc668e06e641a92352a5dab6ac27bb207a325ed4e7a3146543075b70e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8e40d4bcc668e06e641a92352a5dab6ac27bb207a325ed4e7a3146543075b70e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8e40d4bcc668e06e641a92352a5dab6ac27bb207a325ed4e7a3146543075b70e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3A8e40d4bcc668e06e641a92352a5dab6ac27bb207a325ed4e7a3146543075b70e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698970"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f9eb14dbc03fbc1b7b1638d45c7143416d8b20aafd8dc31ff2d76f2dbce5eb71_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f9eb14dbc03fbc1b7b1638d45c7143416d8b20aafd8dc31ff2d76f2dbce5eb71_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f9eb14dbc03fbc1b7b1638d45c7143416d8b20aafd8dc31ff2d76f2dbce5eb71_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3Af9eb14dbc03fbc1b7b1638d45c7143416d8b20aafd8dc31ff2d76f2dbce5eb71?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697847"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:577777cd08c2c9418331ca7bcd39c3d56de4250e17d45a07f6eab8f5e5c25671_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:577777cd08c2c9418331ca7bcd39c3d56de4250e17d45a07f6eab8f5e5c25671_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:577777cd08c2c9418331ca7bcd39c3d56de4250e17d45a07f6eab8f5e5c25671_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A577777cd08c2c9418331ca7bcd39c3d56de4250e17d45a07f6eab8f5e5c25671?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697780"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:06b0c4535f06bae52fc8ca90a89dbb8d5619ba0d7798211028af1ee784d13f5e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:06b0c4535f06bae52fc8ca90a89dbb8d5619ba0d7798211028af1ee784d13f5e_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:06b0c4535f06bae52fc8ca90a89dbb8d5619ba0d7798211028af1ee784d13f5e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A06b0c4535f06bae52fc8ca90a89dbb8d5619ba0d7798211028af1ee784d13f5e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698560"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:50273d0d6da9c69ee2a8b78fe795bea3d3619b119a12e5683229ec407a513be6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:50273d0d6da9c69ee2a8b78fe795bea3d3619b119a12e5683229ec407a513be6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:50273d0d6da9c69ee2a8b78fe795bea3d3619b119a12e5683229ec407a513be6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A50273d0d6da9c69ee2a8b78fe795bea3d3619b119a12e5683229ec407a513be6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697815"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2c3df103fa272232278285c627dc147df35e8210fad25ad2c4da716fca597ef9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2c3df103fa272232278285c627dc147df35e8210fad25ad2c4da716fca597ef9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2c3df103fa272232278285c627dc147df35e8210fad25ad2c4da716fca597ef9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A2c3df103fa272232278285c627dc147df35e8210fad25ad2c4da716fca597ef9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776827062"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ddb8ec811dfdd925af7efe0aeafd1ca0055fb7cbe2ee0838c65b650757170258_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ddb8ec811dfdd925af7efe0aeafd1ca0055fb7cbe2ee0838c65b650757170258_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ddb8ec811dfdd925af7efe0aeafd1ca0055fb7cbe2ee0838c65b650757170258_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3Addb8ec811dfdd925af7efe0aeafd1ca0055fb7cbe2ee0838c65b650757170258?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776827012"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:e32224f0902c5bee46d900baeb3a0d5ff3c4446783316a6f4218ea9ea3d96d6d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:e32224f0902c5bee46d900baeb3a0d5ff3c4446783316a6f4218ea9ea3d96d6d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:e32224f0902c5bee46d900baeb3a0d5ff3c4446783316a6f4218ea9ea3d96d6d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3Ae32224f0902c5bee46d900baeb3a0d5ff3c4446783316a6f4218ea9ea3d96d6d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776827019"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7d0217453426ca0c9575b158abc341103ea13cd67bafd92124f8825bc41cdda_arm64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7d0217453426ca0c9575b158abc341103ea13cd67bafd92124f8825bc41cdda_arm64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7d0217453426ca0c9575b158abc341103ea13cd67bafd92124f8825bc41cdda_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3Ad7d0217453426ca0c9575b158abc341103ea13cd67bafd92124f8825bc41cdda?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776827814"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ce29ee041d2a07642d3d63e847dc8bfe4be2ac935040c46c2fb489fd079abbb6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ce29ee041d2a07642d3d63e847dc8bfe4be2ac935040c46c2fb489fd079abbb6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ce29ee041d2a07642d3d63e847dc8bfe4be2ac935040c46c2fb489fd079abbb6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3Ace29ee041d2a07642d3d63e847dc8bfe4be2ac935040c46c2fb489fd079abbb6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697880"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:3151eed2a25d88ff78011c11d7c1919a2596fd923895b2778e34629b8bfbd610_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:3151eed2a25d88ff78011c11d7c1919a2596fd923895b2778e34629b8bfbd610_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:3151eed2a25d88ff78011c11d7c1919a2596fd923895b2778e34629b8bfbd610_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A3151eed2a25d88ff78011c11d7c1919a2596fd923895b2778e34629b8bfbd610?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698486"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1a61574663cc4f4990f8a2c49747c168b9ca99054294d72f243fa945574730ab_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1a61574663cc4f4990f8a2c49747c168b9ca99054294d72f243fa945574730ab_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1a61574663cc4f4990f8a2c49747c168b9ca99054294d72f243fa945574730ab_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A1a61574663cc4f4990f8a2c49747c168b9ca99054294d72f243fa945574730ab?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776728360"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:e3b4385f15c779dc161a3765202bb70e5c9737393361adebdc5b45f0e9a0e7f3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:e3b4385f15c779dc161a3765202bb70e5c9737393361adebdc5b45f0e9a0e7f3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:e3b4385f15c779dc161a3765202bb70e5c9737393361adebdc5b45f0e9a0e7f3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3Ae3b4385f15c779dc161a3765202bb70e5c9737393361adebdc5b45f0e9a0e7f3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699636"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8e21b89096862a83bd75d0a16a9f84776413d412b5f082e1eb59395421f12ea5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8e21b89096862a83bd75d0a16a9f84776413d412b5f082e1eb59395421f12ea5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8e21b89096862a83bd75d0a16a9f84776413d412b5f082e1eb59395421f12ea5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3A8e21b89096862a83bd75d0a16a9f84776413d412b5f082e1eb59395421f12ea5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776728615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:e161c060ee33667088bb06106f2fb5f0e6b8ed8a73ffe07a47aa4a1542bab369_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:e161c060ee33667088bb06106f2fb5f0e6b8ed8a73ffe07a47aa4a1542bab369_arm64",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:e161c060ee33667088bb06106f2fb5f0e6b8ed8a73ffe07a47aa4a1542bab369_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3Ae161c060ee33667088bb06106f2fb5f0e6b8ed8a73ffe07a47aa4a1542bab369?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:de2ba088ca5b6ac82841b4a02e3fa21df833fe7384635339885e14c6f2693e78_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:de2ba088ca5b6ac82841b4a02e3fa21df833fe7384635339885e14c6f2693e78_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:de2ba088ca5b6ac82841b4a02e3fa21df833fe7384635339885e14c6f2693e78_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel9@sha256%3Ade2ba088ca5b6ac82841b4a02e3fa21df833fe7384635339885e14c6f2693e78?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699215"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0416098c93062580897f27418206a04764519dd2680ec3abcf3eea0744522e74_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0416098c93062580897f27418206a04764519dd2680ec3abcf3eea0744522e74_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0416098c93062580897f27418206a04764519dd2680ec3abcf3eea0744522e74_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A0416098c93062580897f27418206a04764519dd2680ec3abcf3eea0744522e74?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699043"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:80ed81e053fd2747a1e902c4903f1e5e16ff7228dcf0de3b29a2d4c2c72a717d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:80ed81e053fd2747a1e902c4903f1e5e16ff7228dcf0de3b29a2d4c2c72a717d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:80ed81e053fd2747a1e902c4903f1e5e16ff7228dcf0de3b29a2d4c2c72a717d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel9@sha256%3A80ed81e053fd2747a1e902c4903f1e5e16ff7228dcf0de3b29a2d4c2c72a717d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698512"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d2738696ceccc3b938bc86998ca586af3499938778ae6fbc6d17978821ae62e7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d2738696ceccc3b938bc86998ca586af3499938778ae6fbc6d17978821ae62e7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d2738696ceccc3b938bc86998ca586af3499938778ae6fbc6d17978821ae62e7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel9-operator@sha256%3Ad2738696ceccc3b938bc86998ca586af3499938778ae6fbc6d17978821ae62e7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697836"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bbb1289250fbfc5ff3ab65334a06c58e702b405667d2b04babbdaf4a80be0478_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bbb1289250fbfc5ff3ab65334a06c58e702b405667d2b04babbdaf4a80be0478_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bbb1289250fbfc5ff3ab65334a06c58e702b405667d2b04babbdaf4a80be0478_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Abbb1289250fbfc5ff3ab65334a06c58e702b405667d2b04babbdaf4a80be0478?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776727976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:6ab29f53a706d108df289c5db2998fe96791571bc8bcd6754b907abcaf4379ac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:6ab29f53a706d108df289c5db2998fe96791571bc8bcd6754b907abcaf4379ac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:6ab29f53a706d108df289c5db2998fe96791571bc8bcd6754b907abcaf4379ac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-mustgather-rhel9@sha256%3A6ab29f53a706d108df289c5db2998fe96791571bc8bcd6754b907abcaf4379ac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776729055"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:dca0eb8d677c1a677dedab68d837878633edc0872198ea069ee14ff4ffe84784_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:dca0eb8d677c1a677dedab68d837878633edc0872198ea069ee14ff4ffe84784_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:dca0eb8d677c1a677dedab68d837878633edc0872198ea069ee14ff4ffe84784_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3Adca0eb8d677c1a677dedab68d837878633edc0872198ea069ee14ff4ffe84784?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776729187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:b68a7a5859cbca02dfa05e925af2714227c15fb516ae7cf89d9313348dade299_arm64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:b68a7a5859cbca02dfa05e925af2714227c15fb516ae7cf89d9313348dade299_arm64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:b68a7a5859cbca02dfa05e925af2714227c15fb516ae7cf89d9313348dade299_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Ab68a7a5859cbca02dfa05e925af2714227c15fb516ae7cf89d9313348dade299?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697227"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:d048f016f53cd366d7baf5d493cb54d7d0048d06bd78df94af05aeabbfca36a5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:d048f016f53cd366d7baf5d493cb54d7d0048d06bd78df94af05aeabbfca36a5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:d048f016f53cd366d7baf5d493cb54d7d0048d06bd78df94af05aeabbfca36a5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3Ad048f016f53cd366d7baf5d493cb54d7d0048d06bd78df94af05aeabbfca36a5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697822"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1f56244b8c2a31afbc98a7ec10c80a420cfabccbdd486c0d4f66916a1738836a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1f56244b8c2a31afbc98a7ec10c80a420cfabccbdd486c0d4f66916a1738836a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1f56244b8c2a31afbc98a7ec10c80a420cfabccbdd486c0d4f66916a1738836a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3A1f56244b8c2a31afbc98a7ec10c80a420cfabccbdd486c0d4f66916a1738836a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697768"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:c44a4d6954452e5bc682afa6fba25ab51dc51d74b1a70cafe0e7cf25ebb0cfd8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:c44a4d6954452e5bc682afa6fba25ab51dc51d74b1a70cafe0e7cf25ebb0cfd8_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:c44a4d6954452e5bc682afa6fba25ab51dc51d74b1a70cafe0e7cf25ebb0cfd8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Ac44a4d6954452e5bc682afa6fba25ab51dc51d74b1a70cafe0e7cf25ebb0cfd8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:7e42f0261d3670ee802686d3dc7af1f0e759e08a69f9af3b470e03fab4913a14_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:7e42f0261d3670ee802686d3dc7af1f0e759e08a69f9af3b470e03fab4913a14_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:7e42f0261d3670ee802686d3dc7af1f0e759e08a69f9af3b470e03fab4913a14_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A7e42f0261d3670ee802686d3dc7af1f0e759e08a69f9af3b470e03fab4913a14?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697212"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2054859965b5f9815471daf7bcbf9e55ae57b36317ba5a6601f36bb1d0e77abe_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2054859965b5f9815471daf7bcbf9e55ae57b36317ba5a6601f36bb1d0e77abe_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2054859965b5f9815471daf7bcbf9e55ae57b36317ba5a6601f36bb1d0e77abe_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A2054859965b5f9815471daf7bcbf9e55ae57b36317ba5a6601f36bb1d0e77abe?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f33e9f7ff97ef473102b90016c327855d5ff1d27bf17fd36f4d2b546553f8b46_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f33e9f7ff97ef473102b90016c327855d5ff1d27bf17fd36f4d2b546553f8b46_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f33e9f7ff97ef473102b90016c327855d5ff1d27bf17fd36f4d2b546553f8b46_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3Af33e9f7ff97ef473102b90016c327855d5ff1d27bf17fd36f4d2b546553f8b46?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698500"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:666b60cbe20f50e81d8dcc7c0c7fddc8abb643a93095b6118db7817868f43289_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:666b60cbe20f50e81d8dcc7c0c7fddc8abb643a93095b6118db7817868f43289_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:666b60cbe20f50e81d8dcc7c0c7fddc8abb643a93095b6118db7817868f43289_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A666b60cbe20f50e81d8dcc7c0c7fddc8abb643a93095b6118db7817868f43289?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:fc5f81c11a6065ce7114852e8464593cff69e60bf9277e616b5589e3a48b5a68_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:fc5f81c11a6065ce7114852e8464593cff69e60bf9277e616b5589e3a48b5a68_arm64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:fc5f81c11a6065ce7114852e8464593cff69e60bf9277e616b5589e3a48b5a68_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3Afc5f81c11a6065ce7114852e8464593cff69e60bf9277e616b5589e3a48b5a68?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697878"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:7a30179910c1784d01aad7326c062508cfc965cfc755712a1d38e8289e8f9379_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:7a30179910c1784d01aad7326c062508cfc965cfc755712a1d38e8289e8f9379_arm64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:7a30179910c1784d01aad7326c062508cfc965cfc755712a1d38e8289e8f9379_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A7a30179910c1784d01aad7326c062508cfc965cfc755712a1d38e8289e8f9379?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699114"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:b99f56f5e7f16c1e04a4a6d72e4c32322ef6bb2343eca87946de54f069bbb647_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:b99f56f5e7f16c1e04a4a6d72e4c32322ef6bb2343eca87946de54f069bbb647_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:b99f56f5e7f16c1e04a4a6d72e4c32322ef6bb2343eca87946de54f069bbb647_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3Ab99f56f5e7f16c1e04a4a6d72e4c32322ef6bb2343eca87946de54f069bbb647?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697900"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:b99f56f5e7f16c1e04a4a6d72e4c32322ef6bb2343eca87946de54f069bbb647_arm64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:b99f56f5e7f16c1e04a4a6d72e4c32322ef6bb2343eca87946de54f069bbb647_arm64",
"product_id": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:b99f56f5e7f16c1e04a4a6d72e4c32322ef6bb2343eca87946de54f069bbb647_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3Ab99f56f5e7f16c1e04a4a6d72e4c32322ef6bb2343eca87946de54f069bbb647?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697900"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:5d4245709a7d4376ce80773394e75d0f8b36f13b7af5e32bdc1ac5fdf589c5bd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:5d4245709a7d4376ce80773394e75d0f8b36f13b7af5e32bdc1ac5fdf589c5bd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:5d4245709a7d4376ce80773394e75d0f8b36f13b7af5e32bdc1ac5fdf589c5bd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A5d4245709a7d4376ce80773394e75d0f8b36f13b7af5e32bdc1ac5fdf589c5bd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698475"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:694660afd01c0ab1dd9bfb7fa1475329465ec1cf42b131f75d97660e76b88838_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:694660afd01c0ab1dd9bfb7fa1475329465ec1cf42b131f75d97660e76b88838_arm64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:694660afd01c0ab1dd9bfb7fa1475329465ec1cf42b131f75d97660e76b88838_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A694660afd01c0ab1dd9bfb7fa1475329465ec1cf42b131f75d97660e76b88838?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699531"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:e8b70363470153ed4f105873f8238befcb47e3022d4c5d0c5986bfcdd33452e7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:e8b70363470153ed4f105873f8238befcb47e3022d4c5d0c5986bfcdd33452e7_arm64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:e8b70363470153ed4f105873f8238befcb47e3022d4c5d0c5986bfcdd33452e7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3Ae8b70363470153ed4f105873f8238befcb47e3022d4c5d0c5986bfcdd33452e7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697831"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:337ec522df81fc8bc58c9bbd648423749acbcd4513d5faa056bbfa81810585a8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:337ec522df81fc8bc58c9bbd648423749acbcd4513d5faa056bbfa81810585a8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:337ec522df81fc8bc58c9bbd648423749acbcd4513d5faa056bbfa81810585a8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A337ec522df81fc8bc58c9bbd648423749acbcd4513d5faa056bbfa81810585a8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:068b100b0c15df30d9664032a88f1a01883911ca8b220de1db76f1c6791b141b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:068b100b0c15df30d9664032a88f1a01883911ca8b220de1db76f1c6791b141b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:068b100b0c15df30d9664032a88f1a01883911ca8b220de1db76f1c6791b141b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A068b100b0c15df30d9664032a88f1a01883911ca8b220de1db76f1c6791b141b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:3f36c9fe97e7a51fe5690f19c604c3713527981c9367b8b7686882e36aaf93ea_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:3f36c9fe97e7a51fe5690f19c604c3713527981c9367b8b7686882e36aaf93ea_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:3f36c9fe97e7a51fe5690f19c604c3713527981c9367b8b7686882e36aaf93ea_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3A3f36c9fe97e7a51fe5690f19c604c3713527981c9367b8b7686882e36aaf93ea?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:ab0896ce872f78ba1eb00bd4f0788fc4d8f75f29a50d09628faffc085ec79805_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:ab0896ce872f78ba1eb00bd4f0788fc4d8f75f29a50d09628faffc085ec79805_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:ab0896ce872f78ba1eb00bd4f0788fc4d8f75f29a50d09628faffc085ec79805_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3Aab0896ce872f78ba1eb00bd4f0788fc4d8f75f29a50d09628faffc085ec79805?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698486"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:11e39079c8bab75830ec62ecb5816c9a7346387c76ba8ffb281bf8198becedbe_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:11e39079c8bab75830ec62ecb5816c9a7346387c76ba8ffb281bf8198becedbe_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:11e39079c8bab75830ec62ecb5816c9a7346387c76ba8ffb281bf8198becedbe_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A11e39079c8bab75830ec62ecb5816c9a7346387c76ba8ffb281bf8198becedbe?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0955416b7534ba4cc93b531d8ff5c924581718279fda1f3959d615763ab12616_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0955416b7534ba4cc93b531d8ff5c924581718279fda1f3959d615763ab12616_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0955416b7534ba4cc93b531d8ff5c924581718279fda1f3959d615763ab12616_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A0955416b7534ba4cc93b531d8ff5c924581718279fda1f3959d615763ab12616?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697921"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30b13ae772570ab84e7f5c8a12d34e9fb4c5c1bcdb5a6263bf34d257b2a841e1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30b13ae772570ab84e7f5c8a12d34e9fb4c5c1bcdb5a6263bf34d257b2a841e1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30b13ae772570ab84e7f5c8a12d34e9fb4c5c1bcdb5a6263bf34d257b2a841e1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A30b13ae772570ab84e7f5c8a12d34e9fb4c5c1bcdb5a6263bf34d257b2a841e1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776727949"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9deba7562e574a1f0f8682301e5a462d8a4e287413e7df1c24c1dc9858c47ecf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9deba7562e574a1f0f8682301e5a462d8a4e287413e7df1c24c1dc9858c47ecf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9deba7562e574a1f0f8682301e5a462d8a4e287413e7df1c24c1dc9858c47ecf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3A9deba7562e574a1f0f8682301e5a462d8a4e287413e7df1c24c1dc9858c47ecf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d579a6ab524711f7bdd41e290c5ac02ce99844e4ff7009cde714852faa1e68e0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d579a6ab524711f7bdd41e290c5ac02ce99844e4ff7009cde714852faa1e68e0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d579a6ab524711f7bdd41e290c5ac02ce99844e4ff7009cde714852faa1e68e0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3Ad579a6ab524711f7bdd41e290c5ac02ce99844e4ff7009cde714852faa1e68e0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699283"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a5c42bdfc20281fd84d2ee0b940b46552e817e854d5fe9ba39860c82a4ee923e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a5c42bdfc20281fd84d2ee0b940b46552e817e854d5fe9ba39860c82a4ee923e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a5c42bdfc20281fd84d2ee0b940b46552e817e854d5fe9ba39860c82a4ee923e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3Aa5c42bdfc20281fd84d2ee0b940b46552e817e854d5fe9ba39860c82a4ee923e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:3ee44121c26163f6000dae58840f7f90ad4cde9b558b508f83f67ae1825bacc1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:3ee44121c26163f6000dae58840f7f90ad4cde9b558b508f83f67ae1825bacc1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:3ee44121c26163f6000dae58840f7f90ad4cde9b558b508f83f67ae1825bacc1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A3ee44121c26163f6000dae58840f7f90ad4cde9b558b508f83f67ae1825bacc1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699034"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9031054e71f4ddd88ba35bf405221a3a2041e60c065cee5816bf8d97327563af_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9031054e71f4ddd88ba35bf405221a3a2041e60c065cee5816bf8d97327563af_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9031054e71f4ddd88ba35bf405221a3a2041e60c065cee5816bf8d97327563af_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A9031054e71f4ddd88ba35bf405221a3a2041e60c065cee5816bf8d97327563af?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c4848aae14e6061af2347acefe372e64c5b68fa5c81354f632ce514e5d0087f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c4848aae14e6061af2347acefe372e64c5b68fa5c81354f632ce514e5d0087f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c4848aae14e6061af2347acefe372e64c5b68fa5c81354f632ce514e5d0087f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A4c4848aae14e6061af2347acefe372e64c5b68fa5c81354f632ce514e5d0087f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697774"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:297a34f0de639347abfd52c0951a519cbe4beab738585a23dc3f8a67a9e5e398_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:297a34f0de639347abfd52c0951a519cbe4beab738585a23dc3f8a67a9e5e398_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:297a34f0de639347abfd52c0951a519cbe4beab738585a23dc3f8a67a9e5e398_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A297a34f0de639347abfd52c0951a519cbe4beab738585a23dc3f8a67a9e5e398?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697822"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:215b81bdaf6bfb80a6cbe8bae87f6da6b7ea153213c888bc0482a3fb57f07f5c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:215b81bdaf6bfb80a6cbe8bae87f6da6b7ea153213c888bc0482a3fb57f07f5c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:215b81bdaf6bfb80a6cbe8bae87f6da6b7ea153213c888bc0482a3fb57f07f5c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A215b81bdaf6bfb80a6cbe8bae87f6da6b7ea153213c888bc0482a3fb57f07f5c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697884"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:27771fc6d92c5d01e96b1f742ae529f6e8f093dfe05bb45e9845974ecd02767e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:27771fc6d92c5d01e96b1f742ae529f6e8f093dfe05bb45e9845974ecd02767e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:27771fc6d92c5d01e96b1f742ae529f6e8f093dfe05bb45e9845974ecd02767e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A27771fc6d92c5d01e96b1f742ae529f6e8f093dfe05bb45e9845974ecd02767e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697769"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:3a91eecf139eed92ad863b3efe6b2276e6130fa263f886ae24602de45199d9eb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:3a91eecf139eed92ad863b3efe6b2276e6130fa263f886ae24602de45199d9eb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:3a91eecf139eed92ad863b3efe6b2276e6130fa263f886ae24602de45199d9eb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3A3a91eecf139eed92ad863b3efe6b2276e6130fa263f886ae24602de45199d9eb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698970"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fa5aceb2480d81c302efb6849ccdd0c9903458a546acec9e389f136388acff2a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fa5aceb2480d81c302efb6849ccdd0c9903458a546acec9e389f136388acff2a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fa5aceb2480d81c302efb6849ccdd0c9903458a546acec9e389f136388acff2a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3Afa5aceb2480d81c302efb6849ccdd0c9903458a546acec9e389f136388acff2a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697847"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:17ea1ff2373aec50c91d6a3958608f27d16952afd2e75db11cc5c8d44efdb118_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:17ea1ff2373aec50c91d6a3958608f27d16952afd2e75db11cc5c8d44efdb118_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:17ea1ff2373aec50c91d6a3958608f27d16952afd2e75db11cc5c8d44efdb118_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A17ea1ff2373aec50c91d6a3958608f27d16952afd2e75db11cc5c8d44efdb118?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697780"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a08c612f8cb22aa5c3efd6ff330642e3d235dfef0b3e827bc985b9ca7eaf504c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a08c612f8cb22aa5c3efd6ff330642e3d235dfef0b3e827bc985b9ca7eaf504c_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a08c612f8cb22aa5c3efd6ff330642e3d235dfef0b3e827bc985b9ca7eaf504c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Aa08c612f8cb22aa5c3efd6ff330642e3d235dfef0b3e827bc985b9ca7eaf504c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698560"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:2b93d944ca281693be0eb183e59334cdb8c0216f6a7aea80ff0404560b98354c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:2b93d944ca281693be0eb183e59334cdb8c0216f6a7aea80ff0404560b98354c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:2b93d944ca281693be0eb183e59334cdb8c0216f6a7aea80ff0404560b98354c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A2b93d944ca281693be0eb183e59334cdb8c0216f6a7aea80ff0404560b98354c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697815"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f4665da79faf6599d6ab248f37613d2ddcc65279dcb1b28c58c5179d3e2eb3b8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f4665da79faf6599d6ab248f37613d2ddcc65279dcb1b28c58c5179d3e2eb3b8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f4665da79faf6599d6ab248f37613d2ddcc65279dcb1b28c58c5179d3e2eb3b8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3Af4665da79faf6599d6ab248f37613d2ddcc65279dcb1b28c58c5179d3e2eb3b8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776827062"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f0ed06d20b9f79f75cc74f3975da40e4d2cbbd19a5650d3fae12b4b8b1eb8d5d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f0ed06d20b9f79f75cc74f3975da40e4d2cbbd19a5650d3fae12b4b8b1eb8d5d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f0ed06d20b9f79f75cc74f3975da40e4d2cbbd19a5650d3fae12b4b8b1eb8d5d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3Af0ed06d20b9f79f75cc74f3975da40e4d2cbbd19a5650d3fae12b4b8b1eb8d5d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776827012"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3cf6e29e0ea8122e1f49e86d94fb8b33745abb5efdb8a3168b1655c9eb1aa634_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3cf6e29e0ea8122e1f49e86d94fb8b33745abb5efdb8a3168b1655c9eb1aa634_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3cf6e29e0ea8122e1f49e86d94fb8b33745abb5efdb8a3168b1655c9eb1aa634_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A3cf6e29e0ea8122e1f49e86d94fb8b33745abb5efdb8a3168b1655c9eb1aa634?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776827019"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d714bb305f982efa78da071289508ba8db2baf58649a1e2f0ae9b0ddb57a2263_amd64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d714bb305f982efa78da071289508ba8db2baf58649a1e2f0ae9b0ddb57a2263_amd64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d714bb305f982efa78da071289508ba8db2baf58649a1e2f0ae9b0ddb57a2263_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3Ad714bb305f982efa78da071289508ba8db2baf58649a1e2f0ae9b0ddb57a2263?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776827814"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:eb43e0d479af584f6843d63541edc6b626ab712ad0a315aeeb526a268df810ed_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:eb43e0d479af584f6843d63541edc6b626ab712ad0a315aeeb526a268df810ed_amd64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:eb43e0d479af584f6843d63541edc6b626ab712ad0a315aeeb526a268df810ed_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3Aeb43e0d479af584f6843d63541edc6b626ab712ad0a315aeeb526a268df810ed?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697880"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a2973d796abe669f4bdc36fd7a9a074446de62e7129e519a137932cab9986cdc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a2973d796abe669f4bdc36fd7a9a074446de62e7129e519a137932cab9986cdc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a2973d796abe669f4bdc36fd7a9a074446de62e7129e519a137932cab9986cdc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3Aa2973d796abe669f4bdc36fd7a9a074446de62e7129e519a137932cab9986cdc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698486"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:b85ea1417cf415e90481c517a281cf0911b15f4e05481b8e0af89a981f594863_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:b85ea1417cf415e90481c517a281cf0911b15f4e05481b8e0af89a981f594863_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:b85ea1417cf415e90481c517a281cf0911b15f4e05481b8e0af89a981f594863_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3Ab85ea1417cf415e90481c517a281cf0911b15f4e05481b8e0af89a981f594863?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776728360"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:29c7ea3bc70551e7303de88482d31c404d70fefd6798366108ece99d866dfef7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:29c7ea3bc70551e7303de88482d31c404d70fefd6798366108ece99d866dfef7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:29c7ea3bc70551e7303de88482d31c404d70fefd6798366108ece99d866dfef7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3A29c7ea3bc70551e7303de88482d31c404d70fefd6798366108ece99d866dfef7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699636"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:451946b1dbe0496f4bae9f5706dffa67eb2e0c6e6834a379c2e512089baf11d8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:451946b1dbe0496f4bae9f5706dffa67eb2e0c6e6834a379c2e512089baf11d8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:451946b1dbe0496f4bae9f5706dffa67eb2e0c6e6834a379c2e512089baf11d8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3A451946b1dbe0496f4bae9f5706dffa67eb2e0c6e6834a379c2e512089baf11d8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776728615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:88ad485a4343852a9c8fc2c28f9e9aafa6b0f33ee76e2b1b707716f93500fa61_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:88ad485a4343852a9c8fc2c28f9e9aafa6b0f33ee76e2b1b707716f93500fa61_amd64",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:88ad485a4343852a9c8fc2c28f9e9aafa6b0f33ee76e2b1b707716f93500fa61_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A88ad485a4343852a9c8fc2c28f9e9aafa6b0f33ee76e2b1b707716f93500fa61?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:fdadd0941e2c21e6769ba153cfc2ae0b1f0a5a21e277511bff8fe0534fd4c7e8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:fdadd0941e2c21e6769ba153cfc2ae0b1f0a5a21e277511bff8fe0534fd4c7e8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:fdadd0941e2c21e6769ba153cfc2ae0b1f0a5a21e277511bff8fe0534fd4c7e8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel9@sha256%3Afdadd0941e2c21e6769ba153cfc2ae0b1f0a5a21e277511bff8fe0534fd4c7e8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699215"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ec438084de12495a2e5e8a65e70cb6462428a173f632db719f8fcf3b1ffe03b4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ec438084de12495a2e5e8a65e70cb6462428a173f632db719f8fcf3b1ffe03b4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ec438084de12495a2e5e8a65e70cb6462428a173f632db719f8fcf3b1ffe03b4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Aec438084de12495a2e5e8a65e70cb6462428a173f632db719f8fcf3b1ffe03b4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699043"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:74c8507e18640e95b55a9d1865a5604d5573a6d803b3bd6ad140252116daddbc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:74c8507e18640e95b55a9d1865a5604d5573a6d803b3bd6ad140252116daddbc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:74c8507e18640e95b55a9d1865a5604d5573a6d803b3bd6ad140252116daddbc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel9@sha256%3A74c8507e18640e95b55a9d1865a5604d5573a6d803b3bd6ad140252116daddbc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698512"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:54df3621a2eceda85b684c4e00569b83e92b904ad33eba8f16bdd7a524a5617d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:54df3621a2eceda85b684c4e00569b83e92b904ad33eba8f16bdd7a524a5617d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:54df3621a2eceda85b684c4e00569b83e92b904ad33eba8f16bdd7a524a5617d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel9-operator@sha256%3A54df3621a2eceda85b684c4e00569b83e92b904ad33eba8f16bdd7a524a5617d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697836"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:88adfb5ccb4e317b42349aa070de3bd7e5c27bd6d0742765b82e1eaee472d6b6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:88adfb5ccb4e317b42349aa070de3bd7e5c27bd6d0742765b82e1eaee472d6b6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:88adfb5ccb4e317b42349aa070de3bd7e5c27bd6d0742765b82e1eaee472d6b6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A88adfb5ccb4e317b42349aa070de3bd7e5c27bd6d0742765b82e1eaee472d6b6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776727976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:324d1d362c9bea02f5ddba10494c2ef8c90e989642dc4e6f0c5bc89d16b53a0a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:324d1d362c9bea02f5ddba10494c2ef8c90e989642dc4e6f0c5bc89d16b53a0a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:324d1d362c9bea02f5ddba10494c2ef8c90e989642dc4e6f0c5bc89d16b53a0a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-mustgather-rhel9@sha256%3A324d1d362c9bea02f5ddba10494c2ef8c90e989642dc4e6f0c5bc89d16b53a0a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776729055"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:b8a68a480dd92d1b58d5b22c3e72a8dccfc72f29b71400c449ae182a41330fcb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:b8a68a480dd92d1b58d5b22c3e72a8dccfc72f29b71400c449ae182a41330fcb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:b8a68a480dd92d1b58d5b22c3e72a8dccfc72f29b71400c449ae182a41330fcb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3Ab8a68a480dd92d1b58d5b22c3e72a8dccfc72f29b71400c449ae182a41330fcb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776729187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:f37f754c6359c687707a86e0a9bf1755041c9af85171ae0599a81dd48c53e2d7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:f37f754c6359c687707a86e0a9bf1755041c9af85171ae0599a81dd48c53e2d7_amd64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:f37f754c6359c687707a86e0a9bf1755041c9af85171ae0599a81dd48c53e2d7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Af37f754c6359c687707a86e0a9bf1755041c9af85171ae0599a81dd48c53e2d7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697227"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:4367e4aba42529560f7f107ecbac40e976bdf2a65094ca2a7c0915e3ef7e25e0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:4367e4aba42529560f7f107ecbac40e976bdf2a65094ca2a7c0915e3ef7e25e0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:4367e4aba42529560f7f107ecbac40e976bdf2a65094ca2a7c0915e3ef7e25e0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3A4367e4aba42529560f7f107ecbac40e976bdf2a65094ca2a7c0915e3ef7e25e0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697822"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1ff9be3e9b7a97248033d7eebafb96e746764b7a34f5596cb6e40307bb8ebb14_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1ff9be3e9b7a97248033d7eebafb96e746764b7a34f5596cb6e40307bb8ebb14_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1ff9be3e9b7a97248033d7eebafb96e746764b7a34f5596cb6e40307bb8ebb14_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3A1ff9be3e9b7a97248033d7eebafb96e746764b7a34f5596cb6e40307bb8ebb14?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697768"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:01450301456878e9674db2ddfc3f04576fe55c69e99d3aa04eba94ae17b2080f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:01450301456878e9674db2ddfc3f04576fe55c69e99d3aa04eba94ae17b2080f_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:01450301456878e9674db2ddfc3f04576fe55c69e99d3aa04eba94ae17b2080f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A01450301456878e9674db2ddfc3f04576fe55c69e99d3aa04eba94ae17b2080f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:0542361aef325e1a07e8eec868aa9bb283c84ad7dbd1efeba4c6184fa2ad4d77_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:0542361aef325e1a07e8eec868aa9bb283c84ad7dbd1efeba4c6184fa2ad4d77_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:0542361aef325e1a07e8eec868aa9bb283c84ad7dbd1efeba4c6184fa2ad4d77_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A0542361aef325e1a07e8eec868aa9bb283c84ad7dbd1efeba4c6184fa2ad4d77?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697212"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5fe6bfc5b4061a7a2714c29b3cafbcce7f9f9b64afd14892a14299a7bf29d26e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5fe6bfc5b4061a7a2714c29b3cafbcce7f9f9b64afd14892a14299a7bf29d26e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5fe6bfc5b4061a7a2714c29b3cafbcce7f9f9b64afd14892a14299a7bf29d26e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A5fe6bfc5b4061a7a2714c29b3cafbcce7f9f9b64afd14892a14299a7bf29d26e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:c2cc38b4fb8d7f8775d256826bb3b5e7c3e6ca35b3ac24b004a30258cd4f4c74_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:c2cc38b4fb8d7f8775d256826bb3b5e7c3e6ca35b3ac24b004a30258cd4f4c74_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:c2cc38b4fb8d7f8775d256826bb3b5e7c3e6ca35b3ac24b004a30258cd4f4c74_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3Ac2cc38b4fb8d7f8775d256826bb3b5e7c3e6ca35b3ac24b004a30258cd4f4c74?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698500"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:dd48a7604537b65b80d2a4159fd37a824449a8fae81207475befbbb77c361ba7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:dd48a7604537b65b80d2a4159fd37a824449a8fae81207475befbbb77c361ba7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:dd48a7604537b65b80d2a4159fd37a824449a8fae81207475befbbb77c361ba7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3Add48a7604537b65b80d2a4159fd37a824449a8fae81207475befbbb77c361ba7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b78a9ff749c9da98c29b918f45d5f11ca026512672bed7e90ae50a35f5c33e4d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b78a9ff749c9da98c29b918f45d5f11ca026512672bed7e90ae50a35f5c33e4d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b78a9ff749c9da98c29b918f45d5f11ca026512672bed7e90ae50a35f5c33e4d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3Ab78a9ff749c9da98c29b918f45d5f11ca026512672bed7e90ae50a35f5c33e4d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697878"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:19535ae956f07aba6ca4695099c10f809b2cea36d376a9eb7bc9d0a84495a504_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:19535ae956f07aba6ca4695099c10f809b2cea36d376a9eb7bc9d0a84495a504_amd64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:19535ae956f07aba6ca4695099c10f809b2cea36d376a9eb7bc9d0a84495a504_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A19535ae956f07aba6ca4695099c10f809b2cea36d376a9eb7bc9d0a84495a504?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699114"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:15f98ff30d6198a3f2e6761a18123076b7d958d7520f0b12d6dd3a46ad9719d2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:15f98ff30d6198a3f2e6761a18123076b7d958d7520f0b12d6dd3a46ad9719d2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:15f98ff30d6198a3f2e6761a18123076b7d958d7520f0b12d6dd3a46ad9719d2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A15f98ff30d6198a3f2e6761a18123076b7d958d7520f0b12d6dd3a46ad9719d2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697900"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:15f98ff30d6198a3f2e6761a18123076b7d958d7520f0b12d6dd3a46ad9719d2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:15f98ff30d6198a3f2e6761a18123076b7d958d7520f0b12d6dd3a46ad9719d2_amd64",
"product_id": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:15f98ff30d6198a3f2e6761a18123076b7d958d7520f0b12d6dd3a46ad9719d2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A15f98ff30d6198a3f2e6761a18123076b7d958d7520f0b12d6dd3a46ad9719d2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697900"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:4d2a45f85944228d66b2c7faa97b809535db2ab1a9f750ee881860a4e75a72d3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:4d2a45f85944228d66b2c7faa97b809535db2ab1a9f750ee881860a4e75a72d3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:4d2a45f85944228d66b2c7faa97b809535db2ab1a9f750ee881860a4e75a72d3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A4d2a45f85944228d66b2c7faa97b809535db2ab1a9f750ee881860a4e75a72d3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698475"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:0f650a9fe5f6809895cad70c61ae1e51308923850efe02f3aa0f168cdbcaaf01_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:0f650a9fe5f6809895cad70c61ae1e51308923850efe02f3aa0f168cdbcaaf01_amd64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:0f650a9fe5f6809895cad70c61ae1e51308923850efe02f3aa0f168cdbcaaf01_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A0f650a9fe5f6809895cad70c61ae1e51308923850efe02f3aa0f168cdbcaaf01?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699531"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8b0c3ef8a06fec1794efa1478952a25c9faccdcf30a46536879e0d3b87f4dcfb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8b0c3ef8a06fec1794efa1478952a25c9faccdcf30a46536879e0d3b87f4dcfb_amd64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8b0c3ef8a06fec1794efa1478952a25c9faccdcf30a46536879e0d3b87f4dcfb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A8b0c3ef8a06fec1794efa1478952a25c9faccdcf30a46536879e0d3b87f4dcfb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697831"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:9372cd049753cf4a91dfd5d025344f62e5b24135943c879f1fa9407cb47de1ab_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:9372cd049753cf4a91dfd5d025344f62e5b24135943c879f1fa9407cb47de1ab_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:9372cd049753cf4a91dfd5d025344f62e5b24135943c879f1fa9407cb47de1ab_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A9372cd049753cf4a91dfd5d025344f62e5b24135943c879f1fa9407cb47de1ab?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:3d895e8c27a2f0430418c85b50f40162fd0c1c796537f3ad30bdad60f2240645_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:3d895e8c27a2f0430418c85b50f40162fd0c1c796537f3ad30bdad60f2240645_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:3d895e8c27a2f0430418c85b50f40162fd0c1c796537f3ad30bdad60f2240645_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A3d895e8c27a2f0430418c85b50f40162fd0c1c796537f3ad30bdad60f2240645?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:dbffc77d9a086c3b9af2422e2727dca4c1838ae8b48b390d6ad69fc02705f995_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:dbffc77d9a086c3b9af2422e2727dca4c1838ae8b48b390d6ad69fc02705f995_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:dbffc77d9a086c3b9af2422e2727dca4c1838ae8b48b390d6ad69fc02705f995_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3Adbffc77d9a086c3b9af2422e2727dca4c1838ae8b48b390d6ad69fc02705f995?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08782101e310104c5d19c930d4edd49eb124832415618416d20049dfbed4cbf5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08782101e310104c5d19c930d4edd49eb124832415618416d20049dfbed4cbf5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08782101e310104c5d19c930d4edd49eb124832415618416d20049dfbed4cbf5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3A08782101e310104c5d19c930d4edd49eb124832415618416d20049dfbed4cbf5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698486"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:d3d4dc2ab077526554aa961e27a598e0cd11e5efee8ed64eed14f816d458423b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:d3d4dc2ab077526554aa961e27a598e0cd11e5efee8ed64eed14f816d458423b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:d3d4dc2ab077526554aa961e27a598e0cd11e5efee8ed64eed14f816d458423b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3Ad3d4dc2ab077526554aa961e27a598e0cd11e5efee8ed64eed14f816d458423b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2375ba78f391d033133fbadf90d29d0dfa8989d7a395c9195433434042bd51cd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2375ba78f391d033133fbadf90d29d0dfa8989d7a395c9195433434042bd51cd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2375ba78f391d033133fbadf90d29d0dfa8989d7a395c9195433434042bd51cd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A2375ba78f391d033133fbadf90d29d0dfa8989d7a395c9195433434042bd51cd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697921"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:202b5c866073a825c534e7025633d931d13d0b09fc7ffa8b9bfb7d03090ecee0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:202b5c866073a825c534e7025633d931d13d0b09fc7ffa8b9bfb7d03090ecee0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:202b5c866073a825c534e7025633d931d13d0b09fc7ffa8b9bfb7d03090ecee0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A202b5c866073a825c534e7025633d931d13d0b09fc7ffa8b9bfb7d03090ecee0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776727949"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:3951cf8a27c45f072e652db6d082b7da3918f45c396c3c2741a6c601450fc479_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:3951cf8a27c45f072e652db6d082b7da3918f45c396c3c2741a6c601450fc479_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:3951cf8a27c45f072e652db6d082b7da3918f45c396c3c2741a6c601450fc479_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3A3951cf8a27c45f072e652db6d082b7da3918f45c396c3c2741a6c601450fc479?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b5afe724298038c6bd4ef1aec50070dc05dcd6a0c7753895192a1ad9b5ce1fc6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b5afe724298038c6bd4ef1aec50070dc05dcd6a0c7753895192a1ad9b5ce1fc6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b5afe724298038c6bd4ef1aec50070dc05dcd6a0c7753895192a1ad9b5ce1fc6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3Ab5afe724298038c6bd4ef1aec50070dc05dcd6a0c7753895192a1ad9b5ce1fc6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699283"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:55348dd1ebb0cfb9e8e96ebd0a55b4141178d01e7e26f202d69e1dba5992e023_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:55348dd1ebb0cfb9e8e96ebd0a55b4141178d01e7e26f202d69e1dba5992e023_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:55348dd1ebb0cfb9e8e96ebd0a55b4141178d01e7e26f202d69e1dba5992e023_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A55348dd1ebb0cfb9e8e96ebd0a55b4141178d01e7e26f202d69e1dba5992e023?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:54096f6eca87b0850865f1e2734af4aa375a77713137b895e4d3889955458493_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:54096f6eca87b0850865f1e2734af4aa375a77713137b895e4d3889955458493_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:54096f6eca87b0850865f1e2734af4aa375a77713137b895e4d3889955458493_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A54096f6eca87b0850865f1e2734af4aa375a77713137b895e4d3889955458493?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699034"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c207a46f0485910f3f08af7dfd7d15e20cc18a0201be59ff1495e9d826171fcc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c207a46f0485910f3f08af7dfd7d15e20cc18a0201be59ff1495e9d826171fcc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c207a46f0485910f3f08af7dfd7d15e20cc18a0201be59ff1495e9d826171fcc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3Ac207a46f0485910f3f08af7dfd7d15e20cc18a0201be59ff1495e9d826171fcc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a5809d0e184c70d5d0d94ebb867bfb15742e99c480130df2ea6758fd3333d4a2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a5809d0e184c70d5d0d94ebb867bfb15742e99c480130df2ea6758fd3333d4a2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a5809d0e184c70d5d0d94ebb867bfb15742e99c480130df2ea6758fd3333d4a2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Aa5809d0e184c70d5d0d94ebb867bfb15742e99c480130df2ea6758fd3333d4a2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697774"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34fb3b211f74e041b9629668ad4b2d62167a62148682b427d96c0eccbe290c49_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34fb3b211f74e041b9629668ad4b2d62167a62148682b427d96c0eccbe290c49_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34fb3b211f74e041b9629668ad4b2d62167a62148682b427d96c0eccbe290c49_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A34fb3b211f74e041b9629668ad4b2d62167a62148682b427d96c0eccbe290c49?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697822"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:953d1556ce9fefc128d1fb47d7ac17f6e7b6509e6aad299e08ea5c0efc55140b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:953d1556ce9fefc128d1fb47d7ac17f6e7b6509e6aad299e08ea5c0efc55140b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:953d1556ce9fefc128d1fb47d7ac17f6e7b6509e6aad299e08ea5c0efc55140b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A953d1556ce9fefc128d1fb47d7ac17f6e7b6509e6aad299e08ea5c0efc55140b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697884"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:186686757f9c92645c8b99bf223e54d4530e5c8890eb66691f27259823258f54_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:186686757f9c92645c8b99bf223e54d4530e5c8890eb66691f27259823258f54_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:186686757f9c92645c8b99bf223e54d4530e5c8890eb66691f27259823258f54_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A186686757f9c92645c8b99bf223e54d4530e5c8890eb66691f27259823258f54?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697769"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:98c4b2c4049339400ed684b431e1634f595b6c3c3f8fa7037f1ddb2d04f4e3d0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:98c4b2c4049339400ed684b431e1634f595b6c3c3f8fa7037f1ddb2d04f4e3d0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:98c4b2c4049339400ed684b431e1634f595b6c3c3f8fa7037f1ddb2d04f4e3d0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3A98c4b2c4049339400ed684b431e1634f595b6c3c3f8fa7037f1ddb2d04f4e3d0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698970"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:4b05f7f91c43570086657a04af7fd7240ab0ebe74a4ab163cc7e86d3c700c539_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:4b05f7f91c43570086657a04af7fd7240ab0ebe74a4ab163cc7e86d3c700c539_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:4b05f7f91c43570086657a04af7fd7240ab0ebe74a4ab163cc7e86d3c700c539_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3A4b05f7f91c43570086657a04af7fd7240ab0ebe74a4ab163cc7e86d3c700c539?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697847"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:147c132bafabcef7f8efdab81744d7879385d8dac010dd995b9d42e309817470_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:147c132bafabcef7f8efdab81744d7879385d8dac010dd995b9d42e309817470_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:147c132bafabcef7f8efdab81744d7879385d8dac010dd995b9d42e309817470_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A147c132bafabcef7f8efdab81744d7879385d8dac010dd995b9d42e309817470?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697780"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:02e6dfae6c48696bf53651ad272cc9374f04b20ed24fd6be7c67a087574e48d6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:02e6dfae6c48696bf53651ad272cc9374f04b20ed24fd6be7c67a087574e48d6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:02e6dfae6c48696bf53651ad272cc9374f04b20ed24fd6be7c67a087574e48d6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A02e6dfae6c48696bf53651ad272cc9374f04b20ed24fd6be7c67a087574e48d6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698560"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:14d279701588ec2d73dd320faeca2e42a4c4e686814f98f6a17d8d9f1fdc0d3a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:14d279701588ec2d73dd320faeca2e42a4c4e686814f98f6a17d8d9f1fdc0d3a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:14d279701588ec2d73dd320faeca2e42a4c4e686814f98f6a17d8d9f1fdc0d3a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A14d279701588ec2d73dd320faeca2e42a4c4e686814f98f6a17d8d9f1fdc0d3a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697815"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f39237845df57f3f842c3ffe086f07951e27fba8ad22562e7b629057b84e7767_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f39237845df57f3f842c3ffe086f07951e27fba8ad22562e7b629057b84e7767_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f39237845df57f3f842c3ffe086f07951e27fba8ad22562e7b629057b84e7767_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3Af39237845df57f3f842c3ffe086f07951e27fba8ad22562e7b629057b84e7767?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776827062"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c407b419feced6e958a592b6313c7ebb45473bcae6584e6199c130668c93260_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c407b419feced6e958a592b6313c7ebb45473bcae6584e6199c130668c93260_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c407b419feced6e958a592b6313c7ebb45473bcae6584e6199c130668c93260_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A3c407b419feced6e958a592b6313c7ebb45473bcae6584e6199c130668c93260?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776827012"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:93cba4b60a1f94d70bb726e8b35e054b801f8ef983a394378dbb62af04b1a279_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:93cba4b60a1f94d70bb726e8b35e054b801f8ef983a394378dbb62af04b1a279_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:93cba4b60a1f94d70bb726e8b35e054b801f8ef983a394378dbb62af04b1a279_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A93cba4b60a1f94d70bb726e8b35e054b801f8ef983a394378dbb62af04b1a279?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776827019"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7f6258266bccbcca635498ce666e66a8507d01e2ba9efaaaf337b57d14f26d10_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7f6258266bccbcca635498ce666e66a8507d01e2ba9efaaaf337b57d14f26d10_ppc64le",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7f6258266bccbcca635498ce666e66a8507d01e2ba9efaaaf337b57d14f26d10_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3A7f6258266bccbcca635498ce666e66a8507d01e2ba9efaaaf337b57d14f26d10?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776827814"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:5cca093d2d8bf4b821fcefa60ed31994f583e6b4d0f36add2e15837ba13a54ba_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:5cca093d2d8bf4b821fcefa60ed31994f583e6b4d0f36add2e15837ba13a54ba_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:5cca093d2d8bf4b821fcefa60ed31994f583e6b4d0f36add2e15837ba13a54ba_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A5cca093d2d8bf4b821fcefa60ed31994f583e6b4d0f36add2e15837ba13a54ba?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697880"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a8cc726e618cfe1c7ee8d99172a5006efce6151f45c1658f784afa5ddc807868_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a8cc726e618cfe1c7ee8d99172a5006efce6151f45c1658f784afa5ddc807868_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a8cc726e618cfe1c7ee8d99172a5006efce6151f45c1658f784afa5ddc807868_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3Aa8cc726e618cfe1c7ee8d99172a5006efce6151f45c1658f784afa5ddc807868?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698486"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e093813edbb6d05b5e3ee2521569da55627ae80959e582ed6bfd1afac915e28e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e093813edbb6d05b5e3ee2521569da55627ae80959e582ed6bfd1afac915e28e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e093813edbb6d05b5e3ee2521569da55627ae80959e582ed6bfd1afac915e28e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3Ae093813edbb6d05b5e3ee2521569da55627ae80959e582ed6bfd1afac915e28e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776728360"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:7eff4354cc1ba713da7ac40addb41a18d2890fabe6b2e8741afef2b1648e5880_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:7eff4354cc1ba713da7ac40addb41a18d2890fabe6b2e8741afef2b1648e5880_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:7eff4354cc1ba713da7ac40addb41a18d2890fabe6b2e8741afef2b1648e5880_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3A7eff4354cc1ba713da7ac40addb41a18d2890fabe6b2e8741afef2b1648e5880?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699636"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3b4c1045738a2c7afdf066b79c8314dd873696e5ad4ef6bd5e4b64c25f6d8a76_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3b4c1045738a2c7afdf066b79c8314dd873696e5ad4ef6bd5e4b64c25f6d8a76_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3b4c1045738a2c7afdf066b79c8314dd873696e5ad4ef6bd5e4b64c25f6d8a76_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3A3b4c1045738a2c7afdf066b79c8314dd873696e5ad4ef6bd5e4b64c25f6d8a76?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776728615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:a582dca50e55146395dc3d74425f4bf3d67ea94e8548301663ce839ec82cf336_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:a582dca50e55146395dc3d74425f4bf3d67ea94e8548301663ce839ec82cf336_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:a582dca50e55146395dc3d74425f4bf3d67ea94e8548301663ce839ec82cf336_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3Aa582dca50e55146395dc3d74425f4bf3d67ea94e8548301663ce839ec82cf336?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:fbec93b6bb528247057c5a80de12ba08e48cf739139f885cdc3b99d53413a55f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:fbec93b6bb528247057c5a80de12ba08e48cf739139f885cdc3b99d53413a55f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:fbec93b6bb528247057c5a80de12ba08e48cf739139f885cdc3b99d53413a55f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel9@sha256%3Afbec93b6bb528247057c5a80de12ba08e48cf739139f885cdc3b99d53413a55f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699215"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0331d92ee2311506854cb2356d76af0c91511b0666780bc8a9f56fd4eab76caa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0331d92ee2311506854cb2356d76af0c91511b0666780bc8a9f56fd4eab76caa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0331d92ee2311506854cb2356d76af0c91511b0666780bc8a9f56fd4eab76caa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A0331d92ee2311506854cb2356d76af0c91511b0666780bc8a9f56fd4eab76caa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699043"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:45965c8fcffc60c7486b3f0d6529e94e693857c0b672ddee7d19763e37b78e61_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:45965c8fcffc60c7486b3f0d6529e94e693857c0b672ddee7d19763e37b78e61_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:45965c8fcffc60c7486b3f0d6529e94e693857c0b672ddee7d19763e37b78e61_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A45965c8fcffc60c7486b3f0d6529e94e693857c0b672ddee7d19763e37b78e61?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776727976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:6ec2a820720d5748c98ba86aec077d6d59226d51b5e3588707510d3d36e84eb9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:6ec2a820720d5748c98ba86aec077d6d59226d51b5e3588707510d3d36e84eb9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:6ec2a820720d5748c98ba86aec077d6d59226d51b5e3588707510d3d36e84eb9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-mustgather-rhel9@sha256%3A6ec2a820720d5748c98ba86aec077d6d59226d51b5e3588707510d3d36e84eb9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776729055"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:a84aa36083e58b3c0f58eba66664d03f6704c5ac5a1ef8c2914ee3c72e409e8e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:a84aa36083e58b3c0f58eba66664d03f6704c5ac5a1ef8c2914ee3c72e409e8e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:a84aa36083e58b3c0f58eba66664d03f6704c5ac5a1ef8c2914ee3c72e409e8e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3Aa84aa36083e58b3c0f58eba66664d03f6704c5ac5a1ef8c2914ee3c72e409e8e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776729187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:9514006a33ab484e3135736118c70f51c31f34005629556bc156928db87196ca_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:9514006a33ab484e3135736118c70f51c31f34005629556bc156928db87196ca_ppc64le",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:9514006a33ab484e3135736118c70f51c31f34005629556bc156928db87196ca_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A9514006a33ab484e3135736118c70f51c31f34005629556bc156928db87196ca?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697227"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:a9dffb4a8c56f80bd9360647b101af8f6f1aefb319cc22e5fca548854806e7b6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:a9dffb4a8c56f80bd9360647b101af8f6f1aefb319cc22e5fca548854806e7b6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:a9dffb4a8c56f80bd9360647b101af8f6f1aefb319cc22e5fca548854806e7b6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3Aa9dffb4a8c56f80bd9360647b101af8f6f1aefb319cc22e5fca548854806e7b6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697822"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:362608b3b3554ca4aa53942b84cd8edc67b538958c0e0304bd150f86c696fcea_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:362608b3b3554ca4aa53942b84cd8edc67b538958c0e0304bd150f86c696fcea_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:362608b3b3554ca4aa53942b84cd8edc67b538958c0e0304bd150f86c696fcea_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3A362608b3b3554ca4aa53942b84cd8edc67b538958c0e0304bd150f86c696fcea?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697768"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:a0ae51bb6f4d7051ac74b3010716c718cdbaf76a662ff7cd8cd6e0b576805234_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:a0ae51bb6f4d7051ac74b3010716c718cdbaf76a662ff7cd8cd6e0b576805234_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:a0ae51bb6f4d7051ac74b3010716c718cdbaf76a662ff7cd8cd6e0b576805234_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Aa0ae51bb6f4d7051ac74b3010716c718cdbaf76a662ff7cd8cd6e0b576805234?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:16dfc66eb443f912b84829d7eecc7c1f53dfe8472212f15c59791d979fa84a66_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:16dfc66eb443f912b84829d7eecc7c1f53dfe8472212f15c59791d979fa84a66_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:16dfc66eb443f912b84829d7eecc7c1f53dfe8472212f15c59791d979fa84a66_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A16dfc66eb443f912b84829d7eecc7c1f53dfe8472212f15c59791d979fa84a66?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697212"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:424cfb306af67d196216b38a959824ec744c95e20fbcde525c0f302bcd6964c2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:424cfb306af67d196216b38a959824ec744c95e20fbcde525c0f302bcd6964c2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:424cfb306af67d196216b38a959824ec744c95e20fbcde525c0f302bcd6964c2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A424cfb306af67d196216b38a959824ec744c95e20fbcde525c0f302bcd6964c2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4189bdf7b4b0257e0c860c4213e758b8d0cbab4f06e838bcdfed5323a4b38898_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4189bdf7b4b0257e0c860c4213e758b8d0cbab4f06e838bcdfed5323a4b38898_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4189bdf7b4b0257e0c860c4213e758b8d0cbab4f06e838bcdfed5323a4b38898_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A4189bdf7b4b0257e0c860c4213e758b8d0cbab4f06e838bcdfed5323a4b38898?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698500"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:9765693924b8ec640974c64376a5720c8ab185c3964419578b9925a4eaac5248_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:9765693924b8ec640974c64376a5720c8ab185c3964419578b9925a4eaac5248_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:9765693924b8ec640974c64376a5720c8ab185c3964419578b9925a4eaac5248_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A9765693924b8ec640974c64376a5720c8ab185c3964419578b9925a4eaac5248?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:4f61f95a11a8cd70dc27d14dbd7dd91f7d2b57a9719266fa73582005acad545b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:4f61f95a11a8cd70dc27d14dbd7dd91f7d2b57a9719266fa73582005acad545b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:4f61f95a11a8cd70dc27d14dbd7dd91f7d2b57a9719266fa73582005acad545b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A4f61f95a11a8cd70dc27d14dbd7dd91f7d2b57a9719266fa73582005acad545b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697878"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d2e5352a507aab9aca55c54318b6736163553d3de38d2d1e8d4243758fcc8def_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d2e5352a507aab9aca55c54318b6736163553d3de38d2d1e8d4243758fcc8def_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d2e5352a507aab9aca55c54318b6736163553d3de38d2d1e8d4243758fcc8def_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3Ad2e5352a507aab9aca55c54318b6736163553d3de38d2d1e8d4243758fcc8def?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699114"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:a43215e2db94f3ab53616b520f2ab1c7fb0076a5774161bd8767a27a2390065d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:a43215e2db94f3ab53616b520f2ab1c7fb0076a5774161bd8767a27a2390065d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:a43215e2db94f3ab53616b520f2ab1c7fb0076a5774161bd8767a27a2390065d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3Aa43215e2db94f3ab53616b520f2ab1c7fb0076a5774161bd8767a27a2390065d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697900"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:a43215e2db94f3ab53616b520f2ab1c7fb0076a5774161bd8767a27a2390065d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:a43215e2db94f3ab53616b520f2ab1c7fb0076a5774161bd8767a27a2390065d_ppc64le",
"product_id": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:a43215e2db94f3ab53616b520f2ab1c7fb0076a5774161bd8767a27a2390065d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3Aa43215e2db94f3ab53616b520f2ab1c7fb0076a5774161bd8767a27a2390065d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697900"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e1f24bc46f7bf4cf5ec64ea17425a90129f0a99488fcc359c3db29398113e33a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e1f24bc46f7bf4cf5ec64ea17425a90129f0a99488fcc359c3db29398113e33a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e1f24bc46f7bf4cf5ec64ea17425a90129f0a99488fcc359c3db29398113e33a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3Ae1f24bc46f7bf4cf5ec64ea17425a90129f0a99488fcc359c3db29398113e33a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698475"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:f00d592e4c374dc18daa2bae226aaf440ca01881d5886f1227e7225d8a3f5d98_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:f00d592e4c374dc18daa2bae226aaf440ca01881d5886f1227e7225d8a3f5d98_ppc64le",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:f00d592e4c374dc18daa2bae226aaf440ca01881d5886f1227e7225d8a3f5d98_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3Af00d592e4c374dc18daa2bae226aaf440ca01881d5886f1227e7225d8a3f5d98?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699531"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:da4ee9e80f6da27bc38f102f60df392b3be77f3c6e9e6b95247f7a390c91cd09_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:da4ee9e80f6da27bc38f102f60df392b3be77f3c6e9e6b95247f7a390c91cd09_ppc64le",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:da4ee9e80f6da27bc38f102f60df392b3be77f3c6e9e6b95247f7a390c91cd09_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3Ada4ee9e80f6da27bc38f102f60df392b3be77f3c6e9e6b95247f7a390c91cd09?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697831"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:91b415630888ae0cf4e3ca432f9b9be7d00681481b681522211b031be3dcf9db_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:91b415630888ae0cf4e3ca432f9b9be7d00681481b681522211b031be3dcf9db_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:91b415630888ae0cf4e3ca432f9b9be7d00681481b681522211b031be3dcf9db_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A91b415630888ae0cf4e3ca432f9b9be7d00681481b681522211b031be3dcf9db?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:70182f1d3a0c4a31a2f849d96efda9ffec182920e672d4384a493c02048c2707_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:70182f1d3a0c4a31a2f849d96efda9ffec182920e672d4384a493c02048c2707_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:70182f1d3a0c4a31a2f849d96efda9ffec182920e672d4384a493c02048c2707_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A70182f1d3a0c4a31a2f849d96efda9ffec182920e672d4384a493c02048c2707?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c6ca80552aa3d1f36654251a3f67161b2083b67d3df2c3e6f38c3c3572baabf6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c6ca80552aa3d1f36654251a3f67161b2083b67d3df2c3e6f38c3c3572baabf6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c6ca80552aa3d1f36654251a3f67161b2083b67d3df2c3e6f38c3c3572baabf6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3Ac6ca80552aa3d1f36654251a3f67161b2083b67d3df2c3e6f38c3c3572baabf6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:27f4edc3cde1c7d948b73260b1de3fba136da756dd9f0f22916e02778b3823a8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:27f4edc3cde1c7d948b73260b1de3fba136da756dd9f0f22916e02778b3823a8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:27f4edc3cde1c7d948b73260b1de3fba136da756dd9f0f22916e02778b3823a8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3A27f4edc3cde1c7d948b73260b1de3fba136da756dd9f0f22916e02778b3823a8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698486"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:80721d9f6473ed2be5061f623d5946fa8161cc85b98c04355ba2fe95dfa47022_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:80721d9f6473ed2be5061f623d5946fa8161cc85b98c04355ba2fe95dfa47022_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:80721d9f6473ed2be5061f623d5946fa8161cc85b98c04355ba2fe95dfa47022_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A80721d9f6473ed2be5061f623d5946fa8161cc85b98c04355ba2fe95dfa47022?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4c974f9cbf5e6a69c618f8d8e891bfe981a3cfc47a881d53f4eeef81c377b922_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4c974f9cbf5e6a69c618f8d8e891bfe981a3cfc47a881d53f4eeef81c377b922_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4c974f9cbf5e6a69c618f8d8e891bfe981a3cfc47a881d53f4eeef81c377b922_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A4c974f9cbf5e6a69c618f8d8e891bfe981a3cfc47a881d53f4eeef81c377b922?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697921"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:50978fd902161120b371e10fb333d101c2136c7c409cb360760611ee5e442c53_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:50978fd902161120b371e10fb333d101c2136c7c409cb360760611ee5e442c53_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:50978fd902161120b371e10fb333d101c2136c7c409cb360760611ee5e442c53_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A50978fd902161120b371e10fb333d101c2136c7c409cb360760611ee5e442c53?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776727949"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:5b0dd05af5d0a5ba757f64ae98c8bef6e124d6893ec50ae58c2fa490ad1da9da_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:5b0dd05af5d0a5ba757f64ae98c8bef6e124d6893ec50ae58c2fa490ad1da9da_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:5b0dd05af5d0a5ba757f64ae98c8bef6e124d6893ec50ae58c2fa490ad1da9da_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A5b0dd05af5d0a5ba757f64ae98c8bef6e124d6893ec50ae58c2fa490ad1da9da?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699283"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:87658a7ba8ceab40b559b7758a7f00698eae2cf3847a3cfb1e8e4b5889e1686f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:87658a7ba8ceab40b559b7758a7f00698eae2cf3847a3cfb1e8e4b5889e1686f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:87658a7ba8ceab40b559b7758a7f00698eae2cf3847a3cfb1e8e4b5889e1686f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A87658a7ba8ceab40b559b7758a7f00698eae2cf3847a3cfb1e8e4b5889e1686f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1457c8c70f8f7530125aa2b3117ae25d5d6a0580ffc8656cbfac07cc13909d93_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1457c8c70f8f7530125aa2b3117ae25d5d6a0580ffc8656cbfac07cc13909d93_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1457c8c70f8f7530125aa2b3117ae25d5d6a0580ffc8656cbfac07cc13909d93_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A1457c8c70f8f7530125aa2b3117ae25d5d6a0580ffc8656cbfac07cc13909d93?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699034"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cd1374515057f729d2cf1db898169a854f02dd73fad3ffe1ed8fa8a70961c55a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cd1374515057f729d2cf1db898169a854f02dd73fad3ffe1ed8fa8a70961c55a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cd1374515057f729d2cf1db898169a854f02dd73fad3ffe1ed8fa8a70961c55a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3Acd1374515057f729d2cf1db898169a854f02dd73fad3ffe1ed8fa8a70961c55a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:081e7552cd297b7f12ae3ea2096636309b06b2b61561c9c39198dd2e0206027c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:081e7552cd297b7f12ae3ea2096636309b06b2b61561c9c39198dd2e0206027c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:081e7552cd297b7f12ae3ea2096636309b06b2b61561c9c39198dd2e0206027c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A081e7552cd297b7f12ae3ea2096636309b06b2b61561c9c39198dd2e0206027c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697774"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fad9afe5d9d39e6644c8bc36eea8e34bde18e913f22d642e4b2f54c1081d1034_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fad9afe5d9d39e6644c8bc36eea8e34bde18e913f22d642e4b2f54c1081d1034_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fad9afe5d9d39e6644c8bc36eea8e34bde18e913f22d642e4b2f54c1081d1034_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Afad9afe5d9d39e6644c8bc36eea8e34bde18e913f22d642e4b2f54c1081d1034?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697822"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5592db0a15ab4260c830189c78e320d55eb49670fe78861ffaa934dfc7b75e3e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5592db0a15ab4260c830189c78e320d55eb49670fe78861ffaa934dfc7b75e3e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5592db0a15ab4260c830189c78e320d55eb49670fe78861ffaa934dfc7b75e3e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A5592db0a15ab4260c830189c78e320d55eb49670fe78861ffaa934dfc7b75e3e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697884"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:001047be9a9833099b587275b2955f33b74e43663bd9aa7a103be48ff66741c8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:001047be9a9833099b587275b2955f33b74e43663bd9aa7a103be48ff66741c8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:001047be9a9833099b587275b2955f33b74e43663bd9aa7a103be48ff66741c8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A001047be9a9833099b587275b2955f33b74e43663bd9aa7a103be48ff66741c8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697769"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:e4b3eff70c600b70374b1c5992b2362f590809afaed6b421795d1b869601e9b1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:e4b3eff70c600b70374b1c5992b2362f590809afaed6b421795d1b869601e9b1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:e4b3eff70c600b70374b1c5992b2362f590809afaed6b421795d1b869601e9b1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3Ae4b3eff70c600b70374b1c5992b2362f590809afaed6b421795d1b869601e9b1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698970"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f5142c29e3deadf5bdaaf86c4e47c3849e8d184fa0e94e20f90d8b5c734c1f5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f5142c29e3deadf5bdaaf86c4e47c3849e8d184fa0e94e20f90d8b5c734c1f5_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f5142c29e3deadf5bdaaf86c4e47c3849e8d184fa0e94e20f90d8b5c734c1f5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A8f5142c29e3deadf5bdaaf86c4e47c3849e8d184fa0e94e20f90d8b5c734c1f5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697780"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:513ad3de187403dc1007e248428c745eb2d522a03b3a9b23aa26fc65c3d93a37_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:513ad3de187403dc1007e248428c745eb2d522a03b3a9b23aa26fc65c3d93a37_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:513ad3de187403dc1007e248428c745eb2d522a03b3a9b23aa26fc65c3d93a37_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A513ad3de187403dc1007e248428c745eb2d522a03b3a9b23aa26fc65c3d93a37?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698560"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3ef41a628927d4d1be349dea48733cf0f88b549a07b2bc9ff80a3509a9d38f09_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3ef41a628927d4d1be349dea48733cf0f88b549a07b2bc9ff80a3509a9d38f09_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3ef41a628927d4d1be349dea48733cf0f88b549a07b2bc9ff80a3509a9d38f09_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A3ef41a628927d4d1be349dea48733cf0f88b549a07b2bc9ff80a3509a9d38f09?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776827062"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:6d5f8ab7a7f4a8f0e02b03238c5a558b09196e39e0dd67f4c8162a87e5057f67_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:6d5f8ab7a7f4a8f0e02b03238c5a558b09196e39e0dd67f4c8162a87e5057f67_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:6d5f8ab7a7f4a8f0e02b03238c5a558b09196e39e0dd67f4c8162a87e5057f67_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A6d5f8ab7a7f4a8f0e02b03238c5a558b09196e39e0dd67f4c8162a87e5057f67?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776827012"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:71e2c086f21d1104091bbf5ea16c8a71f7b8c70fd191386e6ed6350519e96fb6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:71e2c086f21d1104091bbf5ea16c8a71f7b8c70fd191386e6ed6350519e96fb6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:71e2c086f21d1104091bbf5ea16c8a71f7b8c70fd191386e6ed6350519e96fb6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A71e2c086f21d1104091bbf5ea16c8a71f7b8c70fd191386e6ed6350519e96fb6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776827019"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:f4c42ff98d49337a1cb96f8232cab9b349625de78585279d8942e526be459cea_s390x",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:f4c42ff98d49337a1cb96f8232cab9b349625de78585279d8942e526be459cea_s390x",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:f4c42ff98d49337a1cb96f8232cab9b349625de78585279d8942e526be459cea_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3Af4c42ff98d49337a1cb96f8232cab9b349625de78585279d8942e526be459cea?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776827814"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:c7e11295d158ece33bb1533c7ab2146734afae7997403c3313039fe8e4042b62_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:c7e11295d158ece33bb1533c7ab2146734afae7997403c3313039fe8e4042b62_s390x",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:c7e11295d158ece33bb1533c7ab2146734afae7997403c3313039fe8e4042b62_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3Ac7e11295d158ece33bb1533c7ab2146734afae7997403c3313039fe8e4042b62?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697880"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:5d6d2ae0f3181abb25d2c933c13ae588d44878f8caf843b2ef3a48bf5c5080a3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:5d6d2ae0f3181abb25d2c933c13ae588d44878f8caf843b2ef3a48bf5c5080a3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:5d6d2ae0f3181abb25d2c933c13ae588d44878f8caf843b2ef3a48bf5c5080a3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A5d6d2ae0f3181abb25d2c933c13ae588d44878f8caf843b2ef3a48bf5c5080a3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698486"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58b83258b1b2e8dab86a823cb71c8e65cca8563f3054f05fbdbed22c5f26d79a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58b83258b1b2e8dab86a823cb71c8e65cca8563f3054f05fbdbed22c5f26d79a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58b83258b1b2e8dab86a823cb71c8e65cca8563f3054f05fbdbed22c5f26d79a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A58b83258b1b2e8dab86a823cb71c8e65cca8563f3054f05fbdbed22c5f26d79a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776728360"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:89157ee64b9be78c6d64e6ccfbfb00a2f3c63d2e8997c88ef0ac966644e7280a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:89157ee64b9be78c6d64e6ccfbfb00a2f3c63d2e8997c88ef0ac966644e7280a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:89157ee64b9be78c6d64e6ccfbfb00a2f3c63d2e8997c88ef0ac966644e7280a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3A89157ee64b9be78c6d64e6ccfbfb00a2f3c63d2e8997c88ef0ac966644e7280a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699636"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:2c94db335463a852c1c86a1e9e10b618dacf97f8f9cb9d3940cc81c59fa2dc4e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:2c94db335463a852c1c86a1e9e10b618dacf97f8f9cb9d3940cc81c59fa2dc4e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:2c94db335463a852c1c86a1e9e10b618dacf97f8f9cb9d3940cc81c59fa2dc4e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3A2c94db335463a852c1c86a1e9e10b618dacf97f8f9cb9d3940cc81c59fa2dc4e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776728615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:26fea8b5ab20892ee95f29154544f43edf0af21b902de6f0e44e43cc92a0041c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:26fea8b5ab20892ee95f29154544f43edf0af21b902de6f0e44e43cc92a0041c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:26fea8b5ab20892ee95f29154544f43edf0af21b902de6f0e44e43cc92a0041c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A26fea8b5ab20892ee95f29154544f43edf0af21b902de6f0e44e43cc92a0041c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:dacb5557f0aa61fd3d02d41fbf6774f836da79e039407a360c6101beef800c20_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:dacb5557f0aa61fd3d02d41fbf6774f836da79e039407a360c6101beef800c20_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:dacb5557f0aa61fd3d02d41fbf6774f836da79e039407a360c6101beef800c20_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel9@sha256%3Adacb5557f0aa61fd3d02d41fbf6774f836da79e039407a360c6101beef800c20?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699215"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5077c8e7184bb5ee3f560467a9f024b9b4db8e578d7399051d0af0a3fa98b29d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5077c8e7184bb5ee3f560467a9f024b9b4db8e578d7399051d0af0a3fa98b29d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5077c8e7184bb5ee3f560467a9f024b9b4db8e578d7399051d0af0a3fa98b29d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A5077c8e7184bb5ee3f560467a9f024b9b4db8e578d7399051d0af0a3fa98b29d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699043"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:fdc08f17b67d399f4580ec9dbe173cdcc449cd39e435bd1a7f461f42693783df_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:fdc08f17b67d399f4580ec9dbe173cdcc449cd39e435bd1a7f461f42693783df_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:fdc08f17b67d399f4580ec9dbe173cdcc449cd39e435bd1a7f461f42693783df_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Afdc08f17b67d399f4580ec9dbe173cdcc449cd39e435bd1a7f461f42693783df?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776727976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:96693f8126646d7059ade26f2c67eee3b7be8578938434357788e657805d999e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:96693f8126646d7059ade26f2c67eee3b7be8578938434357788e657805d999e_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:96693f8126646d7059ade26f2c67eee3b7be8578938434357788e657805d999e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A96693f8126646d7059ade26f2c67eee3b7be8578938434357788e657805d999e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:9ad4efcc603ed7757a0b0a7845aa7d72f5e23ba40f8298190a5793db965e2f75_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:9ad4efcc603ed7757a0b0a7845aa7d72f5e23ba40f8298190a5793db965e2f75_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:9ad4efcc603ed7757a0b0a7845aa7d72f5e23ba40f8298190a5793db965e2f75_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-mustgather-rhel9@sha256%3A9ad4efcc603ed7757a0b0a7845aa7d72f5e23ba40f8298190a5793db965e2f75?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776729055"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:1e0f9ed2a7106f3a6c2b9a38fb3cd755f7a9f3f7908c6bc6ecd119d4c3f545b6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:1e0f9ed2a7106f3a6c2b9a38fb3cd755f7a9f3f7908c6bc6ecd119d4c3f545b6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:1e0f9ed2a7106f3a6c2b9a38fb3cd755f7a9f3f7908c6bc6ecd119d4c3f545b6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3A1e0f9ed2a7106f3a6c2b9a38fb3cd755f7a9f3f7908c6bc6ecd119d4c3f545b6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776729187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:a656db8efd65a9786fab384a205ece12309615580a3340bb9109bcff8e61f7dc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:a656db8efd65a9786fab384a205ece12309615580a3340bb9109bcff8e61f7dc_s390x",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:a656db8efd65a9786fab384a205ece12309615580a3340bb9109bcff8e61f7dc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Aa656db8efd65a9786fab384a205ece12309615580a3340bb9109bcff8e61f7dc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697227"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:4082c82eb5fb26c26453a59b22657ddc1326dc3a9ea92ef37b459e6ba8ca6a22_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:4082c82eb5fb26c26453a59b22657ddc1326dc3a9ea92ef37b459e6ba8ca6a22_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:4082c82eb5fb26c26453a59b22657ddc1326dc3a9ea92ef37b459e6ba8ca6a22_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A4082c82eb5fb26c26453a59b22657ddc1326dc3a9ea92ef37b459e6ba8ca6a22?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697212"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3be4aeab13b379ba5b6cd9d9797ee36da7dd685b35a6f45e399e79f4ba420409_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3be4aeab13b379ba5b6cd9d9797ee36da7dd685b35a6f45e399e79f4ba420409_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3be4aeab13b379ba5b6cd9d9797ee36da7dd685b35a6f45e399e79f4ba420409_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A3be4aeab13b379ba5b6cd9d9797ee36da7dd685b35a6f45e399e79f4ba420409?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4649d2d44fd2c3a8f91e81028452a98164210b9aafb8017e617cb6d7050853e5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4649d2d44fd2c3a8f91e81028452a98164210b9aafb8017e617cb6d7050853e5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4649d2d44fd2c3a8f91e81028452a98164210b9aafb8017e617cb6d7050853e5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A4649d2d44fd2c3a8f91e81028452a98164210b9aafb8017e617cb6d7050853e5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776698500"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:7eb1951694f5bae2173a988d761e6ece80fbf0ab36bd4ec1a014f9fa1a84db43_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:7eb1951694f5bae2173a988d761e6ece80fbf0ab36bd4ec1a014f9fa1a84db43_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:7eb1951694f5bae2173a988d761e6ece80fbf0ab36bd4ec1a014f9fa1a84db43_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A7eb1951694f5bae2173a988d761e6ece80fbf0ab36bd4ec1a014f9fa1a84db43?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:2ac4a28094f99ab002bebb7c546e65a12f9d95ad9f9f62f4e4aef3247622bb17_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:2ac4a28094f99ab002bebb7c546e65a12f9d95ad9f9f62f4e4aef3247622bb17_s390x",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:2ac4a28094f99ab002bebb7c546e65a12f9d95ad9f9f62f4e4aef3247622bb17_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A2ac4a28094f99ab002bebb7c546e65a12f9d95ad9f9f62f4e4aef3247622bb17?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697878"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d0ea8f45c76014e6ea5fb9d6dc4e4af393a071f41e54c57abd862e7a8fbda431_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d0ea8f45c76014e6ea5fb9d6dc4e4af393a071f41e54c57abd862e7a8fbda431_s390x",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d0ea8f45c76014e6ea5fb9d6dc4e4af393a071f41e54c57abd862e7a8fbda431_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3Ad0ea8f45c76014e6ea5fb9d6dc4e4af393a071f41e54c57abd862e7a8fbda431?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776699114"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:3556aab04fabcaceb6e9ad532d7081505ebd5cdff7cc605741969d13e59c7a42_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:3556aab04fabcaceb6e9ad532d7081505ebd5cdff7cc605741969d13e59c7a42_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:3556aab04fabcaceb6e9ad532d7081505ebd5cdff7cc605741969d13e59c7a42_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A3556aab04fabcaceb6e9ad532d7081505ebd5cdff7cc605741969d13e59c7a42?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776697921"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:59dec63a108221372a2c2538541ccdba81d0d4d9f3a7697be2099939342631ca_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:59dec63a108221372a2c2538541ccdba81d0d4d9f3a7697be2099939342631ca_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:59dec63a108221372a2c2538541ccdba81d0d4d9f3a7697be2099939342631ca_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A59dec63a108221372a2c2538541ccdba81d0d4d9f3a7697be2099939342631ca?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776727949"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:9514006a33ab484e3135736118c70f51c31f34005629556bc156928db87196ca_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/frr-rhel9@sha256:9514006a33ab484e3135736118c70f51c31f34005629556bc156928db87196ca_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:9514006a33ab484e3135736118c70f51c31f34005629556bc156928db87196ca_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:a656db8efd65a9786fab384a205ece12309615580a3340bb9109bcff8e61f7dc_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/frr-rhel9@sha256:a656db8efd65a9786fab384a205ece12309615580a3340bb9109bcff8e61f7dc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:a656db8efd65a9786fab384a205ece12309615580a3340bb9109bcff8e61f7dc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:b68a7a5859cbca02dfa05e925af2714227c15fb516ae7cf89d9313348dade299_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/frr-rhel9@sha256:b68a7a5859cbca02dfa05e925af2714227c15fb516ae7cf89d9313348dade299_arm64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:b68a7a5859cbca02dfa05e925af2714227c15fb516ae7cf89d9313348dade299_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:f37f754c6359c687707a86e0a9bf1755041c9af85171ae0599a81dd48c53e2d7_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/frr-rhel9@sha256:f37f754c6359c687707a86e0a9bf1755041c9af85171ae0599a81dd48c53e2d7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:f37f754c6359c687707a86e0a9bf1755041c9af85171ae0599a81dd48c53e2d7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:02e6dfae6c48696bf53651ad272cc9374f04b20ed24fd6be7c67a087574e48d6_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:02e6dfae6c48696bf53651ad272cc9374f04b20ed24fd6be7c67a087574e48d6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:02e6dfae6c48696bf53651ad272cc9374f04b20ed24fd6be7c67a087574e48d6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:06b0c4535f06bae52fc8ca90a89dbb8d5619ba0d7798211028af1ee784d13f5e_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:06b0c4535f06bae52fc8ca90a89dbb8d5619ba0d7798211028af1ee784d13f5e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:06b0c4535f06bae52fc8ca90a89dbb8d5619ba0d7798211028af1ee784d13f5e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:513ad3de187403dc1007e248428c745eb2d522a03b3a9b23aa26fc65c3d93a37_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:513ad3de187403dc1007e248428c745eb2d522a03b3a9b23aa26fc65c3d93a37_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:513ad3de187403dc1007e248428c745eb2d522a03b3a9b23aa26fc65c3d93a37_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a08c612f8cb22aa5c3efd6ff330642e3d235dfef0b3e827bc985b9ca7eaf504c_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a08c612f8cb22aa5c3efd6ff330642e3d235dfef0b3e827bc985b9ca7eaf504c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a08c612f8cb22aa5c3efd6ff330642e3d235dfef0b3e827bc985b9ca7eaf504c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:147c132bafabcef7f8efdab81744d7879385d8dac010dd995b9d42e309817470_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:147c132bafabcef7f8efdab81744d7879385d8dac010dd995b9d42e309817470_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:147c132bafabcef7f8efdab81744d7879385d8dac010dd995b9d42e309817470_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:17ea1ff2373aec50c91d6a3958608f27d16952afd2e75db11cc5c8d44efdb118_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:17ea1ff2373aec50c91d6a3958608f27d16952afd2e75db11cc5c8d44efdb118_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:17ea1ff2373aec50c91d6a3958608f27d16952afd2e75db11cc5c8d44efdb118_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:577777cd08c2c9418331ca7bcd39c3d56de4250e17d45a07f6eab8f5e5c25671_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:577777cd08c2c9418331ca7bcd39c3d56de4250e17d45a07f6eab8f5e5c25671_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:577777cd08c2c9418331ca7bcd39c3d56de4250e17d45a07f6eab8f5e5c25671_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f5142c29e3deadf5bdaaf86c4e47c3849e8d184fa0e94e20f90d8b5c734c1f5_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f5142c29e3deadf5bdaaf86c4e47c3849e8d184fa0e94e20f90d8b5c734c1f5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f5142c29e3deadf5bdaaf86c4e47c3849e8d184fa0e94e20f90d8b5c734c1f5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:0542361aef325e1a07e8eec868aa9bb283c84ad7dbd1efeba4c6184fa2ad4d77_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:0542361aef325e1a07e8eec868aa9bb283c84ad7dbd1efeba4c6184fa2ad4d77_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:0542361aef325e1a07e8eec868aa9bb283c84ad7dbd1efeba4c6184fa2ad4d77_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:16dfc66eb443f912b84829d7eecc7c1f53dfe8472212f15c59791d979fa84a66_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:16dfc66eb443f912b84829d7eecc7c1f53dfe8472212f15c59791d979fa84a66_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:16dfc66eb443f912b84829d7eecc7c1f53dfe8472212f15c59791d979fa84a66_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:4082c82eb5fb26c26453a59b22657ddc1326dc3a9ea92ef37b459e6ba8ca6a22_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:4082c82eb5fb26c26453a59b22657ddc1326dc3a9ea92ef37b459e6ba8ca6a22_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:4082c82eb5fb26c26453a59b22657ddc1326dc3a9ea92ef37b459e6ba8ca6a22_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:7e42f0261d3670ee802686d3dc7af1f0e759e08a69f9af3b470e03fab4913a14_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:7e42f0261d3670ee802686d3dc7af1f0e759e08a69f9af3b470e03fab4913a14_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:7e42f0261d3670ee802686d3dc7af1f0e759e08a69f9af3b470e03fab4913a14_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:01450301456878e9674db2ddfc3f04576fe55c69e99d3aa04eba94ae17b2080f_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9@sha256:01450301456878e9674db2ddfc3f04576fe55c69e99d3aa04eba94ae17b2080f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:01450301456878e9674db2ddfc3f04576fe55c69e99d3aa04eba94ae17b2080f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:96693f8126646d7059ade26f2c67eee3b7be8578938434357788e657805d999e_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9@sha256:96693f8126646d7059ade26f2c67eee3b7be8578938434357788e657805d999e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:96693f8126646d7059ade26f2c67eee3b7be8578938434357788e657805d999e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:a0ae51bb6f4d7051ac74b3010716c718cdbaf76a662ff7cd8cd6e0b576805234_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9@sha256:a0ae51bb6f4d7051ac74b3010716c718cdbaf76a662ff7cd8cd6e0b576805234_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:a0ae51bb6f4d7051ac74b3010716c718cdbaf76a662ff7cd8cd6e0b576805234_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:c44a4d6954452e5bc682afa6fba25ab51dc51d74b1a70cafe0e7cf25ebb0cfd8_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9@sha256:c44a4d6954452e5bc682afa6fba25ab51dc51d74b1a70cafe0e7cf25ebb0cfd8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:c44a4d6954452e5bc682afa6fba25ab51dc51d74b1a70cafe0e7cf25ebb0cfd8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7f6258266bccbcca635498ce666e66a8507d01e2ba9efaaaf337b57d14f26d10_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7f6258266bccbcca635498ce666e66a8507d01e2ba9efaaaf337b57d14f26d10_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7f6258266bccbcca635498ce666e66a8507d01e2ba9efaaaf337b57d14f26d10_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d714bb305f982efa78da071289508ba8db2baf58649a1e2f0ae9b0ddb57a2263_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d714bb305f982efa78da071289508ba8db2baf58649a1e2f0ae9b0ddb57a2263_amd64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d714bb305f982efa78da071289508ba8db2baf58649a1e2f0ae9b0ddb57a2263_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7d0217453426ca0c9575b158abc341103ea13cd67bafd92124f8825bc41cdda_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7d0217453426ca0c9575b158abc341103ea13cd67bafd92124f8825bc41cdda_arm64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7d0217453426ca0c9575b158abc341103ea13cd67bafd92124f8825bc41cdda_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:f4c42ff98d49337a1cb96f8232cab9b349625de78585279d8942e526be459cea_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:f4c42ff98d49337a1cb96f8232cab9b349625de78585279d8942e526be459cea_s390x"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:f4c42ff98d49337a1cb96f8232cab9b349625de78585279d8942e526be459cea_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:3151eed2a25d88ff78011c11d7c1919a2596fd923895b2778e34629b8bfbd610_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:3151eed2a25d88ff78011c11d7c1919a2596fd923895b2778e34629b8bfbd610_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:3151eed2a25d88ff78011c11d7c1919a2596fd923895b2778e34629b8bfbd610_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:5d6d2ae0f3181abb25d2c933c13ae588d44878f8caf843b2ef3a48bf5c5080a3_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:5d6d2ae0f3181abb25d2c933c13ae588d44878f8caf843b2ef3a48bf5c5080a3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:5d6d2ae0f3181abb25d2c933c13ae588d44878f8caf843b2ef3a48bf5c5080a3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a2973d796abe669f4bdc36fd7a9a074446de62e7129e519a137932cab9986cdc_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a2973d796abe669f4bdc36fd7a9a074446de62e7129e519a137932cab9986cdc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a2973d796abe669f4bdc36fd7a9a074446de62e7129e519a137932cab9986cdc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a8cc726e618cfe1c7ee8d99172a5006efce6151f45c1658f784afa5ddc807868_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a8cc726e618cfe1c7ee8d99172a5006efce6151f45c1658f784afa5ddc807868_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a8cc726e618cfe1c7ee8d99172a5006efce6151f45c1658f784afa5ddc807868_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:74c8507e18640e95b55a9d1865a5604d5573a6d803b3bd6ad140252116daddbc_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:74c8507e18640e95b55a9d1865a5604d5573a6d803b3bd6ad140252116daddbc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:74c8507e18640e95b55a9d1865a5604d5573a6d803b3bd6ad140252116daddbc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:80ed81e053fd2747a1e902c4903f1e5e16ff7228dcf0de3b29a2d4c2c72a717d_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:80ed81e053fd2747a1e902c4903f1e5e16ff7228dcf0de3b29a2d4c2c72a717d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:80ed81e053fd2747a1e902c4903f1e5e16ff7228dcf0de3b29a2d4c2c72a717d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:54df3621a2eceda85b684c4e00569b83e92b904ad33eba8f16bdd7a524a5617d_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:54df3621a2eceda85b684c4e00569b83e92b904ad33eba8f16bdd7a524a5617d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:54df3621a2eceda85b684c4e00569b83e92b904ad33eba8f16bdd7a524a5617d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d2738696ceccc3b938bc86998ca586af3499938778ae6fbc6d17978821ae62e7_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d2738696ceccc3b938bc86998ca586af3499938778ae6fbc6d17978821ae62e7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d2738696ceccc3b938bc86998ca586af3499938778ae6fbc6d17978821ae62e7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:45965c8fcffc60c7486b3f0d6529e94e693857c0b672ddee7d19763e37b78e61_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:45965c8fcffc60c7486b3f0d6529e94e693857c0b672ddee7d19763e37b78e61_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:45965c8fcffc60c7486b3f0d6529e94e693857c0b672ddee7d19763e37b78e61_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:88adfb5ccb4e317b42349aa070de3bd7e5c27bd6d0742765b82e1eaee472d6b6_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:88adfb5ccb4e317b42349aa070de3bd7e5c27bd6d0742765b82e1eaee472d6b6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:88adfb5ccb4e317b42349aa070de3bd7e5c27bd6d0742765b82e1eaee472d6b6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bbb1289250fbfc5ff3ab65334a06c58e702b405667d2b04babbdaf4a80be0478_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bbb1289250fbfc5ff3ab65334a06c58e702b405667d2b04babbdaf4a80be0478_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bbb1289250fbfc5ff3ab65334a06c58e702b405667d2b04babbdaf4a80be0478_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:fdc08f17b67d399f4580ec9dbe173cdcc449cd39e435bd1a7f461f42693783df_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:fdc08f17b67d399f4580ec9dbe173cdcc449cd39e435bd1a7f461f42693783df_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:fdc08f17b67d399f4580ec9dbe173cdcc449cd39e435bd1a7f461f42693783df_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:3951cf8a27c45f072e652db6d082b7da3918f45c396c3c2741a6c601450fc479_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:3951cf8a27c45f072e652db6d082b7da3918f45c396c3c2741a6c601450fc479_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:3951cf8a27c45f072e652db6d082b7da3918f45c396c3c2741a6c601450fc479_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:864fb13cffda7d5823ba4a4383567d17dac490d73bb4b4315c66b6cc72353063_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:864fb13cffda7d5823ba4a4383567d17dac490d73bb4b4315c66b6cc72353063_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:864fb13cffda7d5823ba4a4383567d17dac490d73bb4b4315c66b6cc72353063_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9deba7562e574a1f0f8682301e5a462d8a4e287413e7df1c24c1dc9858c47ecf_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9deba7562e574a1f0f8682301e5a462d8a4e287413e7df1c24c1dc9858c47ecf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9deba7562e574a1f0f8682301e5a462d8a4e287413e7df1c24c1dc9858c47ecf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1a61574663cc4f4990f8a2c49747c168b9ca99054294d72f243fa945574730ab_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1a61574663cc4f4990f8a2c49747c168b9ca99054294d72f243fa945574730ab_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1a61574663cc4f4990f8a2c49747c168b9ca99054294d72f243fa945574730ab_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58b83258b1b2e8dab86a823cb71c8e65cca8563f3054f05fbdbed22c5f26d79a_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58b83258b1b2e8dab86a823cb71c8e65cca8563f3054f05fbdbed22c5f26d79a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58b83258b1b2e8dab86a823cb71c8e65cca8563f3054f05fbdbed22c5f26d79a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:b85ea1417cf415e90481c517a281cf0911b15f4e05481b8e0af89a981f594863_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:b85ea1417cf415e90481c517a281cf0911b15f4e05481b8e0af89a981f594863_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:b85ea1417cf415e90481c517a281cf0911b15f4e05481b8e0af89a981f594863_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e093813edbb6d05b5e3ee2521569da55627ae80959e582ed6bfd1afac915e28e_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e093813edbb6d05b5e3ee2521569da55627ae80959e582ed6bfd1afac915e28e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e093813edbb6d05b5e3ee2521569da55627ae80959e582ed6bfd1afac915e28e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:5b0dd05af5d0a5ba757f64ae98c8bef6e124d6893ec50ae58c2fa490ad1da9da_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:5b0dd05af5d0a5ba757f64ae98c8bef6e124d6893ec50ae58c2fa490ad1da9da_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:5b0dd05af5d0a5ba757f64ae98c8bef6e124d6893ec50ae58c2fa490ad1da9da_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:71bea17824ad9b14c6a1ac704d67bd88cc8b1915553688244537334af75c3d4c_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:71bea17824ad9b14c6a1ac704d67bd88cc8b1915553688244537334af75c3d4c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:71bea17824ad9b14c6a1ac704d67bd88cc8b1915553688244537334af75c3d4c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b5afe724298038c6bd4ef1aec50070dc05dcd6a0c7753895192a1ad9b5ce1fc6_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b5afe724298038c6bd4ef1aec50070dc05dcd6a0c7753895192a1ad9b5ce1fc6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b5afe724298038c6bd4ef1aec50070dc05dcd6a0c7753895192a1ad9b5ce1fc6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d579a6ab524711f7bdd41e290c5ac02ce99844e4ff7009cde714852faa1e68e0_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d579a6ab524711f7bdd41e290c5ac02ce99844e4ff7009cde714852faa1e68e0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d579a6ab524711f7bdd41e290c5ac02ce99844e4ff7009cde714852faa1e68e0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1457c8c70f8f7530125aa2b3117ae25d5d6a0580ffc8656cbfac07cc13909d93_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1457c8c70f8f7530125aa2b3117ae25d5d6a0580ffc8656cbfac07cc13909d93_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1457c8c70f8f7530125aa2b3117ae25d5d6a0580ffc8656cbfac07cc13909d93_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:3ee44121c26163f6000dae58840f7f90ad4cde9b558b508f83f67ae1825bacc1_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:3ee44121c26163f6000dae58840f7f90ad4cde9b558b508f83f67ae1825bacc1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:3ee44121c26163f6000dae58840f7f90ad4cde9b558b508f83f67ae1825bacc1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:54096f6eca87b0850865f1e2734af4aa375a77713137b895e4d3889955458493_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:54096f6eca87b0850865f1e2734af4aa375a77713137b895e4d3889955458493_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:54096f6eca87b0850865f1e2734af4aa375a77713137b895e4d3889955458493_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:d1888e9f7c082d7d18fba94ff0feb4acc1d6558b19188832a0509d5cfdd1cbf5_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:d1888e9f7c082d7d18fba94ff0feb4acc1d6558b19188832a0509d5cfdd1cbf5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:d1888e9f7c082d7d18fba94ff0feb4acc1d6558b19188832a0509d5cfdd1cbf5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:55348dd1ebb0cfb9e8e96ebd0a55b4141178d01e7e26f202d69e1dba5992e023_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:55348dd1ebb0cfb9e8e96ebd0a55b4141178d01e7e26f202d69e1dba5992e023_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:55348dd1ebb0cfb9e8e96ebd0a55b4141178d01e7e26f202d69e1dba5992e023_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:87658a7ba8ceab40b559b7758a7f00698eae2cf3847a3cfb1e8e4b5889e1686f_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:87658a7ba8ceab40b559b7758a7f00698eae2cf3847a3cfb1e8e4b5889e1686f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:87658a7ba8ceab40b559b7758a7f00698eae2cf3847a3cfb1e8e4b5889e1686f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a3a0883e5f0c5629c9430ea0c56d8f997742d4062d78b8227fb234c680a0a4a3_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a3a0883e5f0c5629c9430ea0c56d8f997742d4062d78b8227fb234c680a0a4a3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a3a0883e5f0c5629c9430ea0c56d8f997742d4062d78b8227fb234c680a0a4a3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a5c42bdfc20281fd84d2ee0b940b46552e817e854d5fe9ba39860c82a4ee923e_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a5c42bdfc20281fd84d2ee0b940b46552e817e854d5fe9ba39860c82a4ee923e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a5c42bdfc20281fd84d2ee0b940b46552e817e854d5fe9ba39860c82a4ee923e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:324d1d362c9bea02f5ddba10494c2ef8c90e989642dc4e6f0c5bc89d16b53a0a_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:324d1d362c9bea02f5ddba10494c2ef8c90e989642dc4e6f0c5bc89d16b53a0a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:324d1d362c9bea02f5ddba10494c2ef8c90e989642dc4e6f0c5bc89d16b53a0a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:6ab29f53a706d108df289c5db2998fe96791571bc8bcd6754b907abcaf4379ac_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:6ab29f53a706d108df289c5db2998fe96791571bc8bcd6754b907abcaf4379ac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:6ab29f53a706d108df289c5db2998fe96791571bc8bcd6754b907abcaf4379ac_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:6ec2a820720d5748c98ba86aec077d6d59226d51b5e3588707510d3d36e84eb9_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:6ec2a820720d5748c98ba86aec077d6d59226d51b5e3588707510d3d36e84eb9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:6ec2a820720d5748c98ba86aec077d6d59226d51b5e3588707510d3d36e84eb9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:9ad4efcc603ed7757a0b0a7845aa7d72f5e23ba40f8298190a5793db965e2f75_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:9ad4efcc603ed7757a0b0a7845aa7d72f5e23ba40f8298190a5793db965e2f75_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:9ad4efcc603ed7757a0b0a7845aa7d72f5e23ba40f8298190a5793db965e2f75_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:297a34f0de639347abfd52c0951a519cbe4beab738585a23dc3f8a67a9e5e398_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:297a34f0de639347abfd52c0951a519cbe4beab738585a23dc3f8a67a9e5e398_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:297a34f0de639347abfd52c0951a519cbe4beab738585a23dc3f8a67a9e5e398_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34fb3b211f74e041b9629668ad4b2d62167a62148682b427d96c0eccbe290c49_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34fb3b211f74e041b9629668ad4b2d62167a62148682b427d96c0eccbe290c49_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34fb3b211f74e041b9629668ad4b2d62167a62148682b427d96c0eccbe290c49_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0d269efc7c71d4d76586576c8c38b5b7b08693c029075e254b80a648d7f33a6_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0d269efc7c71d4d76586576c8c38b5b7b08693c029075e254b80a648d7f33a6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0d269efc7c71d4d76586576c8c38b5b7b08693c029075e254b80a648d7f33a6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fad9afe5d9d39e6644c8bc36eea8e34bde18e913f22d642e4b2f54c1081d1034_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fad9afe5d9d39e6644c8bc36eea8e34bde18e913f22d642e4b2f54c1081d1034_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fad9afe5d9d39e6644c8bc36eea8e34bde18e913f22d642e4b2f54c1081d1034_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6bebe3c5e9777fe0e0074ffdef26cdb219accc3f7b0eb18c63107377a28c674e_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6bebe3c5e9777fe0e0074ffdef26cdb219accc3f7b0eb18c63107377a28c674e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6bebe3c5e9777fe0e0074ffdef26cdb219accc3f7b0eb18c63107377a28c674e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9031054e71f4ddd88ba35bf405221a3a2041e60c065cee5816bf8d97327563af_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9031054e71f4ddd88ba35bf405221a3a2041e60c065cee5816bf8d97327563af_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9031054e71f4ddd88ba35bf405221a3a2041e60c065cee5816bf8d97327563af_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c207a46f0485910f3f08af7dfd7d15e20cc18a0201be59ff1495e9d826171fcc_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c207a46f0485910f3f08af7dfd7d15e20cc18a0201be59ff1495e9d826171fcc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c207a46f0485910f3f08af7dfd7d15e20cc18a0201be59ff1495e9d826171fcc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cd1374515057f729d2cf1db898169a854f02dd73fad3ffe1ed8fa8a70961c55a_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cd1374515057f729d2cf1db898169a854f02dd73fad3ffe1ed8fa8a70961c55a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cd1374515057f729d2cf1db898169a854f02dd73fad3ffe1ed8fa8a70961c55a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:081e7552cd297b7f12ae3ea2096636309b06b2b61561c9c39198dd2e0206027c_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:081e7552cd297b7f12ae3ea2096636309b06b2b61561c9c39198dd2e0206027c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:081e7552cd297b7f12ae3ea2096636309b06b2b61561c9c39198dd2e0206027c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c4848aae14e6061af2347acefe372e64c5b68fa5c81354f632ce514e5d0087f_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c4848aae14e6061af2347acefe372e64c5b68fa5c81354f632ce514e5d0087f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c4848aae14e6061af2347acefe372e64c5b68fa5c81354f632ce514e5d0087f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:93edabd2f066dee4beb96de47f43d89dfe67797bc67721f0e4d62f8bfd51fe63_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:93edabd2f066dee4beb96de47f43d89dfe67797bc67721f0e4d62f8bfd51fe63_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:93edabd2f066dee4beb96de47f43d89dfe67797bc67721f0e4d62f8bfd51fe63_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a5809d0e184c70d5d0d94ebb867bfb15742e99c480130df2ea6758fd3333d4a2_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a5809d0e184c70d5d0d94ebb867bfb15742e99c480130df2ea6758fd3333d4a2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a5809d0e184c70d5d0d94ebb867bfb15742e99c480130df2ea6758fd3333d4a2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:215b81bdaf6bfb80a6cbe8bae87f6da6b7ea153213c888bc0482a3fb57f07f5c_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:215b81bdaf6bfb80a6cbe8bae87f6da6b7ea153213c888bc0482a3fb57f07f5c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:215b81bdaf6bfb80a6cbe8bae87f6da6b7ea153213c888bc0482a3fb57f07f5c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5592db0a15ab4260c830189c78e320d55eb49670fe78861ffaa934dfc7b75e3e_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5592db0a15ab4260c830189c78e320d55eb49670fe78861ffaa934dfc7b75e3e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5592db0a15ab4260c830189c78e320d55eb49670fe78861ffaa934dfc7b75e3e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:953d1556ce9fefc128d1fb47d7ac17f6e7b6509e6aad299e08ea5c0efc55140b_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:953d1556ce9fefc128d1fb47d7ac17f6e7b6509e6aad299e08ea5c0efc55140b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:953d1556ce9fefc128d1fb47d7ac17f6e7b6509e6aad299e08ea5c0efc55140b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e9eed073a460afbab96736e200e080bfeba63e0cec4dedcdcec9b680adb33617_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e9eed073a460afbab96736e200e080bfeba63e0cec4dedcdcec9b680adb33617_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e9eed073a460afbab96736e200e080bfeba63e0cec4dedcdcec9b680adb33617_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:001047be9a9833099b587275b2955f33b74e43663bd9aa7a103be48ff66741c8_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:001047be9a9833099b587275b2955f33b74e43663bd9aa7a103be48ff66741c8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:001047be9a9833099b587275b2955f33b74e43663bd9aa7a103be48ff66741c8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:186686757f9c92645c8b99bf223e54d4530e5c8890eb66691f27259823258f54_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:186686757f9c92645c8b99bf223e54d4530e5c8890eb66691f27259823258f54_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:186686757f9c92645c8b99bf223e54d4530e5c8890eb66691f27259823258f54_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:27771fc6d92c5d01e96b1f742ae529f6e8f093dfe05bb45e9845974ecd02767e_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:27771fc6d92c5d01e96b1f742ae529f6e8f093dfe05bb45e9845974ecd02767e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:27771fc6d92c5d01e96b1f742ae529f6e8f093dfe05bb45e9845974ecd02767e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:68f897418a57e3a04dca031c97baacd8596ddcb08e7542d0b2a05b6b3cfb1635_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:68f897418a57e3a04dca031c97baacd8596ddcb08e7542d0b2a05b6b3cfb1635_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:68f897418a57e3a04dca031c97baacd8596ddcb08e7542d0b2a05b6b3cfb1635_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:3a91eecf139eed92ad863b3efe6b2276e6130fa263f886ae24602de45199d9eb_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:3a91eecf139eed92ad863b3efe6b2276e6130fa263f886ae24602de45199d9eb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:3a91eecf139eed92ad863b3efe6b2276e6130fa263f886ae24602de45199d9eb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8e40d4bcc668e06e641a92352a5dab6ac27bb207a325ed4e7a3146543075b70e_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8e40d4bcc668e06e641a92352a5dab6ac27bb207a325ed4e7a3146543075b70e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8e40d4bcc668e06e641a92352a5dab6ac27bb207a325ed4e7a3146543075b70e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:98c4b2c4049339400ed684b431e1634f595b6c3c3f8fa7037f1ddb2d04f4e3d0_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:98c4b2c4049339400ed684b431e1634f595b6c3c3f8fa7037f1ddb2d04f4e3d0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:98c4b2c4049339400ed684b431e1634f595b6c3c3f8fa7037f1ddb2d04f4e3d0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:e4b3eff70c600b70374b1c5992b2362f590809afaed6b421795d1b869601e9b1_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:e4b3eff70c600b70374b1c5992b2362f590809afaed6b421795d1b869601e9b1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:e4b3eff70c600b70374b1c5992b2362f590809afaed6b421795d1b869601e9b1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:29c7ea3bc70551e7303de88482d31c404d70fefd6798366108ece99d866dfef7_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:29c7ea3bc70551e7303de88482d31c404d70fefd6798366108ece99d866dfef7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:29c7ea3bc70551e7303de88482d31c404d70fefd6798366108ece99d866dfef7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:7eff4354cc1ba713da7ac40addb41a18d2890fabe6b2e8741afef2b1648e5880_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:7eff4354cc1ba713da7ac40addb41a18d2890fabe6b2e8741afef2b1648e5880_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:7eff4354cc1ba713da7ac40addb41a18d2890fabe6b2e8741afef2b1648e5880_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:89157ee64b9be78c6d64e6ccfbfb00a2f3c63d2e8997c88ef0ac966644e7280a_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:89157ee64b9be78c6d64e6ccfbfb00a2f3c63d2e8997c88ef0ac966644e7280a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:89157ee64b9be78c6d64e6ccfbfb00a2f3c63d2e8997c88ef0ac966644e7280a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:e3b4385f15c779dc161a3765202bb70e5c9737393361adebdc5b45f0e9a0e7f3_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:e3b4385f15c779dc161a3765202bb70e5c9737393361adebdc5b45f0e9a0e7f3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:e3b4385f15c779dc161a3765202bb70e5c9737393361adebdc5b45f0e9a0e7f3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:1e0f9ed2a7106f3a6c2b9a38fb3cd755f7a9f3f7908c6bc6ecd119d4c3f545b6_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:1e0f9ed2a7106f3a6c2b9a38fb3cd755f7a9f3f7908c6bc6ecd119d4c3f545b6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:1e0f9ed2a7106f3a6c2b9a38fb3cd755f7a9f3f7908c6bc6ecd119d4c3f545b6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:a84aa36083e58b3c0f58eba66664d03f6704c5ac5a1ef8c2914ee3c72e409e8e_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:a84aa36083e58b3c0f58eba66664d03f6704c5ac5a1ef8c2914ee3c72e409e8e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:a84aa36083e58b3c0f58eba66664d03f6704c5ac5a1ef8c2914ee3c72e409e8e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:b8a68a480dd92d1b58d5b22c3e72a8dccfc72f29b71400c449ae182a41330fcb_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:b8a68a480dd92d1b58d5b22c3e72a8dccfc72f29b71400c449ae182a41330fcb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:b8a68a480dd92d1b58d5b22c3e72a8dccfc72f29b71400c449ae182a41330fcb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:dca0eb8d677c1a677dedab68d837878633edc0872198ea069ee14ff4ffe84784_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:dca0eb8d677c1a677dedab68d837878633edc0872198ea069ee14ff4ffe84784_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:dca0eb8d677c1a677dedab68d837878633edc0872198ea069ee14ff4ffe84784_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:2c94db335463a852c1c86a1e9e10b618dacf97f8f9cb9d3940cc81c59fa2dc4e_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:2c94db335463a852c1c86a1e9e10b618dacf97f8f9cb9d3940cc81c59fa2dc4e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:2c94db335463a852c1c86a1e9e10b618dacf97f8f9cb9d3940cc81c59fa2dc4e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3b4c1045738a2c7afdf066b79c8314dd873696e5ad4ef6bd5e4b64c25f6d8a76_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3b4c1045738a2c7afdf066b79c8314dd873696e5ad4ef6bd5e4b64c25f6d8a76_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3b4c1045738a2c7afdf066b79c8314dd873696e5ad4ef6bd5e4b64c25f6d8a76_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:451946b1dbe0496f4bae9f5706dffa67eb2e0c6e6834a379c2e512089baf11d8_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:451946b1dbe0496f4bae9f5706dffa67eb2e0c6e6834a379c2e512089baf11d8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:451946b1dbe0496f4bae9f5706dffa67eb2e0c6e6834a379c2e512089baf11d8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8e21b89096862a83bd75d0a16a9f84776413d412b5f082e1eb59395421f12ea5_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8e21b89096862a83bd75d0a16a9f84776413d412b5f082e1eb59395421f12ea5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8e21b89096862a83bd75d0a16a9f84776413d412b5f082e1eb59395421f12ea5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1f56244b8c2a31afbc98a7ec10c80a420cfabccbdd486c0d4f66916a1738836a_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1f56244b8c2a31afbc98a7ec10c80a420cfabccbdd486c0d4f66916a1738836a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1f56244b8c2a31afbc98a7ec10c80a420cfabccbdd486c0d4f66916a1738836a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1ff9be3e9b7a97248033d7eebafb96e746764b7a34f5596cb6e40307bb8ebb14_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1ff9be3e9b7a97248033d7eebafb96e746764b7a34f5596cb6e40307bb8ebb14_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1ff9be3e9b7a97248033d7eebafb96e746764b7a34f5596cb6e40307bb8ebb14_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:362608b3b3554ca4aa53942b84cd8edc67b538958c0e0304bd150f86c696fcea_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:362608b3b3554ca4aa53942b84cd8edc67b538958c0e0304bd150f86c696fcea_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:362608b3b3554ca4aa53942b84cd8edc67b538958c0e0304bd150f86c696fcea_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:4367e4aba42529560f7f107ecbac40e976bdf2a65094ca2a7c0915e3ef7e25e0_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:4367e4aba42529560f7f107ecbac40e976bdf2a65094ca2a7c0915e3ef7e25e0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:4367e4aba42529560f7f107ecbac40e976bdf2a65094ca2a7c0915e3ef7e25e0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:a9dffb4a8c56f80bd9360647b101af8f6f1aefb319cc22e5fca548854806e7b6_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:a9dffb4a8c56f80bd9360647b101af8f6f1aefb319cc22e5fca548854806e7b6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:a9dffb4a8c56f80bd9360647b101af8f6f1aefb319cc22e5fca548854806e7b6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:d048f016f53cd366d7baf5d493cb54d7d0048d06bd78df94af05aeabbfca36a5_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:d048f016f53cd366d7baf5d493cb54d7d0048d06bd78df94af05aeabbfca36a5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:d048f016f53cd366d7baf5d493cb54d7d0048d06bd78df94af05aeabbfca36a5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:26fea8b5ab20892ee95f29154544f43edf0af21b902de6f0e44e43cc92a0041c_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:26fea8b5ab20892ee95f29154544f43edf0af21b902de6f0e44e43cc92a0041c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:26fea8b5ab20892ee95f29154544f43edf0af21b902de6f0e44e43cc92a0041c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:88ad485a4343852a9c8fc2c28f9e9aafa6b0f33ee76e2b1b707716f93500fa61_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:88ad485a4343852a9c8fc2c28f9e9aafa6b0f33ee76e2b1b707716f93500fa61_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:88ad485a4343852a9c8fc2c28f9e9aafa6b0f33ee76e2b1b707716f93500fa61_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:a582dca50e55146395dc3d74425f4bf3d67ea94e8548301663ce839ec82cf336_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:a582dca50e55146395dc3d74425f4bf3d67ea94e8548301663ce839ec82cf336_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:a582dca50e55146395dc3d74425f4bf3d67ea94e8548301663ce839ec82cf336_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:e161c060ee33667088bb06106f2fb5f0e6b8ed8a73ffe07a47aa4a1542bab369_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:e161c060ee33667088bb06106f2fb5f0e6b8ed8a73ffe07a47aa4a1542bab369_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:e161c060ee33667088bb06106f2fb5f0e6b8ed8a73ffe07a47aa4a1542bab369_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0331d92ee2311506854cb2356d76af0c91511b0666780bc8a9f56fd4eab76caa_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0331d92ee2311506854cb2356d76af0c91511b0666780bc8a9f56fd4eab76caa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0331d92ee2311506854cb2356d76af0c91511b0666780bc8a9f56fd4eab76caa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0416098c93062580897f27418206a04764519dd2680ec3abcf3eea0744522e74_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0416098c93062580897f27418206a04764519dd2680ec3abcf3eea0744522e74_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0416098c93062580897f27418206a04764519dd2680ec3abcf3eea0744522e74_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5077c8e7184bb5ee3f560467a9f024b9b4db8e578d7399051d0af0a3fa98b29d_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5077c8e7184bb5ee3f560467a9f024b9b4db8e578d7399051d0af0a3fa98b29d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5077c8e7184bb5ee3f560467a9f024b9b4db8e578d7399051d0af0a3fa98b29d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ec438084de12495a2e5e8a65e70cb6462428a173f632db719f8fcf3b1ffe03b4_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ec438084de12495a2e5e8a65e70cb6462428a173f632db719f8fcf3b1ffe03b4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ec438084de12495a2e5e8a65e70cb6462428a173f632db719f8fcf3b1ffe03b4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2c3df103fa272232278285c627dc147df35e8210fad25ad2c4da716fca597ef9_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2c3df103fa272232278285c627dc147df35e8210fad25ad2c4da716fca597ef9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2c3df103fa272232278285c627dc147df35e8210fad25ad2c4da716fca597ef9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3ef41a628927d4d1be349dea48733cf0f88b549a07b2bc9ff80a3509a9d38f09_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3ef41a628927d4d1be349dea48733cf0f88b549a07b2bc9ff80a3509a9d38f09_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3ef41a628927d4d1be349dea48733cf0f88b549a07b2bc9ff80a3509a9d38f09_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f39237845df57f3f842c3ffe086f07951e27fba8ad22562e7b629057b84e7767_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f39237845df57f3f842c3ffe086f07951e27fba8ad22562e7b629057b84e7767_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f39237845df57f3f842c3ffe086f07951e27fba8ad22562e7b629057b84e7767_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f4665da79faf6599d6ab248f37613d2ddcc65279dcb1b28c58c5179d3e2eb3b8_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f4665da79faf6599d6ab248f37613d2ddcc65279dcb1b28c58c5179d3e2eb3b8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f4665da79faf6599d6ab248f37613d2ddcc65279dcb1b28c58c5179d3e2eb3b8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c407b419feced6e958a592b6313c7ebb45473bcae6584e6199c130668c93260_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c407b419feced6e958a592b6313c7ebb45473bcae6584e6199c130668c93260_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c407b419feced6e958a592b6313c7ebb45473bcae6584e6199c130668c93260_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:6d5f8ab7a7f4a8f0e02b03238c5a558b09196e39e0dd67f4c8162a87e5057f67_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:6d5f8ab7a7f4a8f0e02b03238c5a558b09196e39e0dd67f4c8162a87e5057f67_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:6d5f8ab7a7f4a8f0e02b03238c5a558b09196e39e0dd67f4c8162a87e5057f67_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ddb8ec811dfdd925af7efe0aeafd1ca0055fb7cbe2ee0838c65b650757170258_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ddb8ec811dfdd925af7efe0aeafd1ca0055fb7cbe2ee0838c65b650757170258_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ddb8ec811dfdd925af7efe0aeafd1ca0055fb7cbe2ee0838c65b650757170258_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f0ed06d20b9f79f75cc74f3975da40e4d2cbbd19a5650d3fae12b4b8b1eb8d5d_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f0ed06d20b9f79f75cc74f3975da40e4d2cbbd19a5650d3fae12b4b8b1eb8d5d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f0ed06d20b9f79f75cc74f3975da40e4d2cbbd19a5650d3fae12b4b8b1eb8d5d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3cf6e29e0ea8122e1f49e86d94fb8b33745abb5efdb8a3168b1655c9eb1aa634_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3cf6e29e0ea8122e1f49e86d94fb8b33745abb5efdb8a3168b1655c9eb1aa634_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3cf6e29e0ea8122e1f49e86d94fb8b33745abb5efdb8a3168b1655c9eb1aa634_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:71e2c086f21d1104091bbf5ea16c8a71f7b8c70fd191386e6ed6350519e96fb6_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:71e2c086f21d1104091bbf5ea16c8a71f7b8c70fd191386e6ed6350519e96fb6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:71e2c086f21d1104091bbf5ea16c8a71f7b8c70fd191386e6ed6350519e96fb6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:93cba4b60a1f94d70bb726e8b35e054b801f8ef983a394378dbb62af04b1a279_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:93cba4b60a1f94d70bb726e8b35e054b801f8ef983a394378dbb62af04b1a279_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:93cba4b60a1f94d70bb726e8b35e054b801f8ef983a394378dbb62af04b1a279_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:e32224f0902c5bee46d900baeb3a0d5ff3c4446783316a6f4218ea9ea3d96d6d_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:e32224f0902c5bee46d900baeb3a0d5ff3c4446783316a6f4218ea9ea3d96d6d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:e32224f0902c5bee46d900baeb3a0d5ff3c4446783316a6f4218ea9ea3d96d6d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:5cca093d2d8bf4b821fcefa60ed31994f583e6b4d0f36add2e15837ba13a54ba_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:5cca093d2d8bf4b821fcefa60ed31994f583e6b4d0f36add2e15837ba13a54ba_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:5cca093d2d8bf4b821fcefa60ed31994f583e6b4d0f36add2e15837ba13a54ba_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:c7e11295d158ece33bb1533c7ab2146734afae7997403c3313039fe8e4042b62_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:c7e11295d158ece33bb1533c7ab2146734afae7997403c3313039fe8e4042b62_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:c7e11295d158ece33bb1533c7ab2146734afae7997403c3313039fe8e4042b62_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ce29ee041d2a07642d3d63e847dc8bfe4be2ac935040c46c2fb489fd079abbb6_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ce29ee041d2a07642d3d63e847dc8bfe4be2ac935040c46c2fb489fd079abbb6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ce29ee041d2a07642d3d63e847dc8bfe4be2ac935040c46c2fb489fd079abbb6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:eb43e0d479af584f6843d63541edc6b626ab712ad0a315aeeb526a268df810ed_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:eb43e0d479af584f6843d63541edc6b626ab712ad0a315aeeb526a268df810ed_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:eb43e0d479af584f6843d63541edc6b626ab712ad0a315aeeb526a268df810ed_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:dacb5557f0aa61fd3d02d41fbf6774f836da79e039407a360c6101beef800c20_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:dacb5557f0aa61fd3d02d41fbf6774f836da79e039407a360c6101beef800c20_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:dacb5557f0aa61fd3d02d41fbf6774f836da79e039407a360c6101beef800c20_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:de2ba088ca5b6ac82841b4a02e3fa21df833fe7384635339885e14c6f2693e78_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:de2ba088ca5b6ac82841b4a02e3fa21df833fe7384635339885e14c6f2693e78_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:de2ba088ca5b6ac82841b4a02e3fa21df833fe7384635339885e14c6f2693e78_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:fbec93b6bb528247057c5a80de12ba08e48cf739139f885cdc3b99d53413a55f_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:fbec93b6bb528247057c5a80de12ba08e48cf739139f885cdc3b99d53413a55f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:fbec93b6bb528247057c5a80de12ba08e48cf739139f885cdc3b99d53413a55f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:fdadd0941e2c21e6769ba153cfc2ae0b1f0a5a21e277511bff8fe0534fd4c7e8_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:fdadd0941e2c21e6769ba153cfc2ae0b1f0a5a21e277511bff8fe0534fd4c7e8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:fdadd0941e2c21e6769ba153cfc2ae0b1f0a5a21e277511bff8fe0534fd4c7e8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:4d2a45f85944228d66b2c7faa97b809535db2ab1a9f750ee881860a4e75a72d3_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:4d2a45f85944228d66b2c7faa97b809535db2ab1a9f750ee881860a4e75a72d3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:4d2a45f85944228d66b2c7faa97b809535db2ab1a9f750ee881860a4e75a72d3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:5d4245709a7d4376ce80773394e75d0f8b36f13b7af5e32bdc1ac5fdf589c5bd_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:5d4245709a7d4376ce80773394e75d0f8b36f13b7af5e32bdc1ac5fdf589c5bd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:5d4245709a7d4376ce80773394e75d0f8b36f13b7af5e32bdc1ac5fdf589c5bd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e1f24bc46f7bf4cf5ec64ea17425a90129f0a99488fcc359c3db29398113e33a_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e1f24bc46f7bf4cf5ec64ea17425a90129f0a99488fcc359c3db29398113e33a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e1f24bc46f7bf4cf5ec64ea17425a90129f0a99488fcc359c3db29398113e33a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:14d279701588ec2d73dd320faeca2e42a4c4e686814f98f6a17d8d9f1fdc0d3a_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:14d279701588ec2d73dd320faeca2e42a4c4e686814f98f6a17d8d9f1fdc0d3a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:14d279701588ec2d73dd320faeca2e42a4c4e686814f98f6a17d8d9f1fdc0d3a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:2b93d944ca281693be0eb183e59334cdb8c0216f6a7aea80ff0404560b98354c_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:2b93d944ca281693be0eb183e59334cdb8c0216f6a7aea80ff0404560b98354c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:2b93d944ca281693be0eb183e59334cdb8c0216f6a7aea80ff0404560b98354c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:50273d0d6da9c69ee2a8b78fe795bea3d3619b119a12e5683229ec407a513be6_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:50273d0d6da9c69ee2a8b78fe795bea3d3619b119a12e5683229ec407a513be6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:50273d0d6da9c69ee2a8b78fe795bea3d3619b119a12e5683229ec407a513be6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4189bdf7b4b0257e0c860c4213e758b8d0cbab4f06e838bcdfed5323a4b38898_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4189bdf7b4b0257e0c860c4213e758b8d0cbab4f06e838bcdfed5323a4b38898_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4189bdf7b4b0257e0c860c4213e758b8d0cbab4f06e838bcdfed5323a4b38898_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4649d2d44fd2c3a8f91e81028452a98164210b9aafb8017e617cb6d7050853e5_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4649d2d44fd2c3a8f91e81028452a98164210b9aafb8017e617cb6d7050853e5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4649d2d44fd2c3a8f91e81028452a98164210b9aafb8017e617cb6d7050853e5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:c2cc38b4fb8d7f8775d256826bb3b5e7c3e6ca35b3ac24b004a30258cd4f4c74_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:c2cc38b4fb8d7f8775d256826bb3b5e7c3e6ca35b3ac24b004a30258cd4f4c74_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:c2cc38b4fb8d7f8775d256826bb3b5e7c3e6ca35b3ac24b004a30258cd4f4c74_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f33e9f7ff97ef473102b90016c327855d5ff1d27bf17fd36f4d2b546553f8b46_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f33e9f7ff97ef473102b90016c327855d5ff1d27bf17fd36f4d2b546553f8b46_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f33e9f7ff97ef473102b90016c327855d5ff1d27bf17fd36f4d2b546553f8b46_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2054859965b5f9815471daf7bcbf9e55ae57b36317ba5a6601f36bb1d0e77abe_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2054859965b5f9815471daf7bcbf9e55ae57b36317ba5a6601f36bb1d0e77abe_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2054859965b5f9815471daf7bcbf9e55ae57b36317ba5a6601f36bb1d0e77abe_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3be4aeab13b379ba5b6cd9d9797ee36da7dd685b35a6f45e399e79f4ba420409_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3be4aeab13b379ba5b6cd9d9797ee36da7dd685b35a6f45e399e79f4ba420409_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3be4aeab13b379ba5b6cd9d9797ee36da7dd685b35a6f45e399e79f4ba420409_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:424cfb306af67d196216b38a959824ec744c95e20fbcde525c0f302bcd6964c2_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:424cfb306af67d196216b38a959824ec744c95e20fbcde525c0f302bcd6964c2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:424cfb306af67d196216b38a959824ec744c95e20fbcde525c0f302bcd6964c2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5fe6bfc5b4061a7a2714c29b3cafbcce7f9f9b64afd14892a14299a7bf29d26e_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5fe6bfc5b4061a7a2714c29b3cafbcce7f9f9b64afd14892a14299a7bf29d26e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5fe6bfc5b4061a7a2714c29b3cafbcce7f9f9b64afd14892a14299a7bf29d26e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:666b60cbe20f50e81d8dcc7c0c7fddc8abb643a93095b6118db7817868f43289_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:666b60cbe20f50e81d8dcc7c0c7fddc8abb643a93095b6118db7817868f43289_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:666b60cbe20f50e81d8dcc7c0c7fddc8abb643a93095b6118db7817868f43289_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:7eb1951694f5bae2173a988d761e6ece80fbf0ab36bd4ec1a014f9fa1a84db43_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:7eb1951694f5bae2173a988d761e6ece80fbf0ab36bd4ec1a014f9fa1a84db43_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:7eb1951694f5bae2173a988d761e6ece80fbf0ab36bd4ec1a014f9fa1a84db43_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:9765693924b8ec640974c64376a5720c8ab185c3964419578b9925a4eaac5248_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:9765693924b8ec640974c64376a5720c8ab185c3964419578b9925a4eaac5248_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:9765693924b8ec640974c64376a5720c8ab185c3964419578b9925a4eaac5248_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:dd48a7604537b65b80d2a4159fd37a824449a8fae81207475befbbb77c361ba7_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:dd48a7604537b65b80d2a4159fd37a824449a8fae81207475befbbb77c361ba7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:dd48a7604537b65b80d2a4159fd37a824449a8fae81207475befbbb77c361ba7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:19535ae956f07aba6ca4695099c10f809b2cea36d376a9eb7bc9d0a84495a504_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:19535ae956f07aba6ca4695099c10f809b2cea36d376a9eb7bc9d0a84495a504_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:19535ae956f07aba6ca4695099c10f809b2cea36d376a9eb7bc9d0a84495a504_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:7a30179910c1784d01aad7326c062508cfc965cfc755712a1d38e8289e8f9379_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:7a30179910c1784d01aad7326c062508cfc965cfc755712a1d38e8289e8f9379_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:7a30179910c1784d01aad7326c062508cfc965cfc755712a1d38e8289e8f9379_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d0ea8f45c76014e6ea5fb9d6dc4e4af393a071f41e54c57abd862e7a8fbda431_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d0ea8f45c76014e6ea5fb9d6dc4e4af393a071f41e54c57abd862e7a8fbda431_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d0ea8f45c76014e6ea5fb9d6dc4e4af393a071f41e54c57abd862e7a8fbda431_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d2e5352a507aab9aca55c54318b6736163553d3de38d2d1e8d4243758fcc8def_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d2e5352a507aab9aca55c54318b6736163553d3de38d2d1e8d4243758fcc8def_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d2e5352a507aab9aca55c54318b6736163553d3de38d2d1e8d4243758fcc8def_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:2ac4a28094f99ab002bebb7c546e65a12f9d95ad9f9f62f4e4aef3247622bb17_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:2ac4a28094f99ab002bebb7c546e65a12f9d95ad9f9f62f4e4aef3247622bb17_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:2ac4a28094f99ab002bebb7c546e65a12f9d95ad9f9f62f4e4aef3247622bb17_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:4f61f95a11a8cd70dc27d14dbd7dd91f7d2b57a9719266fa73582005acad545b_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:4f61f95a11a8cd70dc27d14dbd7dd91f7d2b57a9719266fa73582005acad545b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:4f61f95a11a8cd70dc27d14dbd7dd91f7d2b57a9719266fa73582005acad545b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b78a9ff749c9da98c29b918f45d5f11ca026512672bed7e90ae50a35f5c33e4d_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b78a9ff749c9da98c29b918f45d5f11ca026512672bed7e90ae50a35f5c33e4d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b78a9ff749c9da98c29b918f45d5f11ca026512672bed7e90ae50a35f5c33e4d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:fc5f81c11a6065ce7114852e8464593cff69e60bf9277e616b5589e3a48b5a68_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:fc5f81c11a6065ce7114852e8464593cff69e60bf9277e616b5589e3a48b5a68_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:fc5f81c11a6065ce7114852e8464593cff69e60bf9277e616b5589e3a48b5a68_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:337ec522df81fc8bc58c9bbd648423749acbcd4513d5faa056bbfa81810585a8_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:337ec522df81fc8bc58c9bbd648423749acbcd4513d5faa056bbfa81810585a8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:337ec522df81fc8bc58c9bbd648423749acbcd4513d5faa056bbfa81810585a8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:91b415630888ae0cf4e3ca432f9b9be7d00681481b681522211b031be3dcf9db_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:91b415630888ae0cf4e3ca432f9b9be7d00681481b681522211b031be3dcf9db_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:91b415630888ae0cf4e3ca432f9b9be7d00681481b681522211b031be3dcf9db_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:9372cd049753cf4a91dfd5d025344f62e5b24135943c879f1fa9407cb47de1ab_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:9372cd049753cf4a91dfd5d025344f62e5b24135943c879f1fa9407cb47de1ab_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:9372cd049753cf4a91dfd5d025344f62e5b24135943c879f1fa9407cb47de1ab_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:4b05f7f91c43570086657a04af7fd7240ab0ebe74a4ab163cc7e86d3c700c539_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:4b05f7f91c43570086657a04af7fd7240ab0ebe74a4ab163cc7e86d3c700c539_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:4b05f7f91c43570086657a04af7fd7240ab0ebe74a4ab163cc7e86d3c700c539_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f9eb14dbc03fbc1b7b1638d45c7143416d8b20aafd8dc31ff2d76f2dbce5eb71_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f9eb14dbc03fbc1b7b1638d45c7143416d8b20aafd8dc31ff2d76f2dbce5eb71_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f9eb14dbc03fbc1b7b1638d45c7143416d8b20aafd8dc31ff2d76f2dbce5eb71_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fa5aceb2480d81c302efb6849ccdd0c9903458a546acec9e389f136388acff2a_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fa5aceb2480d81c302efb6849ccdd0c9903458a546acec9e389f136388acff2a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fa5aceb2480d81c302efb6849ccdd0c9903458a546acec9e389f136388acff2a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:068b100b0c15df30d9664032a88f1a01883911ca8b220de1db76f1c6791b141b_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:068b100b0c15df30d9664032a88f1a01883911ca8b220de1db76f1c6791b141b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:068b100b0c15df30d9664032a88f1a01883911ca8b220de1db76f1c6791b141b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:3d895e8c27a2f0430418c85b50f40162fd0c1c796537f3ad30bdad60f2240645_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:3d895e8c27a2f0430418c85b50f40162fd0c1c796537f3ad30bdad60f2240645_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:3d895e8c27a2f0430418c85b50f40162fd0c1c796537f3ad30bdad60f2240645_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:70182f1d3a0c4a31a2f849d96efda9ffec182920e672d4384a493c02048c2707_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:70182f1d3a0c4a31a2f849d96efda9ffec182920e672d4384a493c02048c2707_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:70182f1d3a0c4a31a2f849d96efda9ffec182920e672d4384a493c02048c2707_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:3f36c9fe97e7a51fe5690f19c604c3713527981c9367b8b7686882e36aaf93ea_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:3f36c9fe97e7a51fe5690f19c604c3713527981c9367b8b7686882e36aaf93ea_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:3f36c9fe97e7a51fe5690f19c604c3713527981c9367b8b7686882e36aaf93ea_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c6ca80552aa3d1f36654251a3f67161b2083b67d3df2c3e6f38c3c3572baabf6_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c6ca80552aa3d1f36654251a3f67161b2083b67d3df2c3e6f38c3c3572baabf6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c6ca80552aa3d1f36654251a3f67161b2083b67d3df2c3e6f38c3c3572baabf6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:dbffc77d9a086c3b9af2422e2727dca4c1838ae8b48b390d6ad69fc02705f995_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:dbffc77d9a086c3b9af2422e2727dca4c1838ae8b48b390d6ad69fc02705f995_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:dbffc77d9a086c3b9af2422e2727dca4c1838ae8b48b390d6ad69fc02705f995_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:15f98ff30d6198a3f2e6761a18123076b7d958d7520f0b12d6dd3a46ad9719d2_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:15f98ff30d6198a3f2e6761a18123076b7d958d7520f0b12d6dd3a46ad9719d2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:15f98ff30d6198a3f2e6761a18123076b7d958d7520f0b12d6dd3a46ad9719d2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:a43215e2db94f3ab53616b520f2ab1c7fb0076a5774161bd8767a27a2390065d_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:a43215e2db94f3ab53616b520f2ab1c7fb0076a5774161bd8767a27a2390065d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:a43215e2db94f3ab53616b520f2ab1c7fb0076a5774161bd8767a27a2390065d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:b99f56f5e7f16c1e04a4a6d72e4c32322ef6bb2343eca87946de54f069bbb647_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:b99f56f5e7f16c1e04a4a6d72e4c32322ef6bb2343eca87946de54f069bbb647_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:b99f56f5e7f16c1e04a4a6d72e4c32322ef6bb2343eca87946de54f069bbb647_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08782101e310104c5d19c930d4edd49eb124832415618416d20049dfbed4cbf5_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08782101e310104c5d19c930d4edd49eb124832415618416d20049dfbed4cbf5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08782101e310104c5d19c930d4edd49eb124832415618416d20049dfbed4cbf5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:27f4edc3cde1c7d948b73260b1de3fba136da756dd9f0f22916e02778b3823a8_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:27f4edc3cde1c7d948b73260b1de3fba136da756dd9f0f22916e02778b3823a8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:27f4edc3cde1c7d948b73260b1de3fba136da756dd9f0f22916e02778b3823a8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:ab0896ce872f78ba1eb00bd4f0788fc4d8f75f29a50d09628faffc085ec79805_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:ab0896ce872f78ba1eb00bd4f0788fc4d8f75f29a50d09628faffc085ec79805_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:ab0896ce872f78ba1eb00bd4f0788fc4d8f75f29a50d09628faffc085ec79805_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:11e39079c8bab75830ec62ecb5816c9a7346387c76ba8ffb281bf8198becedbe_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:11e39079c8bab75830ec62ecb5816c9a7346387c76ba8ffb281bf8198becedbe_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:11e39079c8bab75830ec62ecb5816c9a7346387c76ba8ffb281bf8198becedbe_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:80721d9f6473ed2be5061f623d5946fa8161cc85b98c04355ba2fe95dfa47022_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:80721d9f6473ed2be5061f623d5946fa8161cc85b98c04355ba2fe95dfa47022_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:80721d9f6473ed2be5061f623d5946fa8161cc85b98c04355ba2fe95dfa47022_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:d3d4dc2ab077526554aa961e27a598e0cd11e5efee8ed64eed14f816d458423b_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:d3d4dc2ab077526554aa961e27a598e0cd11e5efee8ed64eed14f816d458423b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:d3d4dc2ab077526554aa961e27a598e0cd11e5efee8ed64eed14f816d458423b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:202b5c866073a825c534e7025633d931d13d0b09fc7ffa8b9bfb7d03090ecee0_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:202b5c866073a825c534e7025633d931d13d0b09fc7ffa8b9bfb7d03090ecee0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:202b5c866073a825c534e7025633d931d13d0b09fc7ffa8b9bfb7d03090ecee0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30b13ae772570ab84e7f5c8a12d34e9fb4c5c1bcdb5a6263bf34d257b2a841e1_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30b13ae772570ab84e7f5c8a12d34e9fb4c5c1bcdb5a6263bf34d257b2a841e1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30b13ae772570ab84e7f5c8a12d34e9fb4c5c1bcdb5a6263bf34d257b2a841e1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:50978fd902161120b371e10fb333d101c2136c7c409cb360760611ee5e442c53_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:50978fd902161120b371e10fb333d101c2136c7c409cb360760611ee5e442c53_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:50978fd902161120b371e10fb333d101c2136c7c409cb360760611ee5e442c53_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:59dec63a108221372a2c2538541ccdba81d0d4d9f3a7697be2099939342631ca_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:59dec63a108221372a2c2538541ccdba81d0d4d9f3a7697be2099939342631ca_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:59dec63a108221372a2c2538541ccdba81d0d4d9f3a7697be2099939342631ca_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0955416b7534ba4cc93b531d8ff5c924581718279fda1f3959d615763ab12616_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0955416b7534ba4cc93b531d8ff5c924581718279fda1f3959d615763ab12616_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0955416b7534ba4cc93b531d8ff5c924581718279fda1f3959d615763ab12616_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2375ba78f391d033133fbadf90d29d0dfa8989d7a395c9195433434042bd51cd_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2375ba78f391d033133fbadf90d29d0dfa8989d7a395c9195433434042bd51cd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2375ba78f391d033133fbadf90d29d0dfa8989d7a395c9195433434042bd51cd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:3556aab04fabcaceb6e9ad532d7081505ebd5cdff7cc605741969d13e59c7a42_s390x as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:3556aab04fabcaceb6e9ad532d7081505ebd5cdff7cc605741969d13e59c7a42_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:3556aab04fabcaceb6e9ad532d7081505ebd5cdff7cc605741969d13e59c7a42_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4c974f9cbf5e6a69c618f8d8e891bfe981a3cfc47a881d53f4eeef81c377b922_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4c974f9cbf5e6a69c618f8d8e891bfe981a3cfc47a881d53f4eeef81c377b922_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4c974f9cbf5e6a69c618f8d8e891bfe981a3cfc47a881d53f4eeef81c377b922_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:0f650a9fe5f6809895cad70c61ae1e51308923850efe02f3aa0f168cdbcaaf01_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:0f650a9fe5f6809895cad70c61ae1e51308923850efe02f3aa0f168cdbcaaf01_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:0f650a9fe5f6809895cad70c61ae1e51308923850efe02f3aa0f168cdbcaaf01_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:694660afd01c0ab1dd9bfb7fa1475329465ec1cf42b131f75d97660e76b88838_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:694660afd01c0ab1dd9bfb7fa1475329465ec1cf42b131f75d97660e76b88838_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:694660afd01c0ab1dd9bfb7fa1475329465ec1cf42b131f75d97660e76b88838_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:f00d592e4c374dc18daa2bae226aaf440ca01881d5886f1227e7225d8a3f5d98_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:f00d592e4c374dc18daa2bae226aaf440ca01881d5886f1227e7225d8a3f5d98_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:f00d592e4c374dc18daa2bae226aaf440ca01881d5886f1227e7225d8a3f5d98_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8b0c3ef8a06fec1794efa1478952a25c9faccdcf30a46536879e0d3b87f4dcfb_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8b0c3ef8a06fec1794efa1478952a25c9faccdcf30a46536879e0d3b87f4dcfb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8b0c3ef8a06fec1794efa1478952a25c9faccdcf30a46536879e0d3b87f4dcfb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:da4ee9e80f6da27bc38f102f60df392b3be77f3c6e9e6b95247f7a390c91cd09_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:da4ee9e80f6da27bc38f102f60df392b3be77f3c6e9e6b95247f7a390c91cd09_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:da4ee9e80f6da27bc38f102f60df392b3be77f3c6e9e6b95247f7a390c91cd09_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:e8b70363470153ed4f105873f8238befcb47e3022d4c5d0c5986bfcdd33452e7_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:e8b70363470153ed4f105873f8238befcb47e3022d4c5d0c5986bfcdd33452e7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:e8b70363470153ed4f105873f8238befcb47e3022d4c5d0c5986bfcdd33452e7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:15f98ff30d6198a3f2e6761a18123076b7d958d7520f0b12d6dd3a46ad9719d2_amd64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:15f98ff30d6198a3f2e6761a18123076b7d958d7520f0b12d6dd3a46ad9719d2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:15f98ff30d6198a3f2e6761a18123076b7d958d7520f0b12d6dd3a46ad9719d2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:a43215e2db94f3ab53616b520f2ab1c7fb0076a5774161bd8767a27a2390065d_ppc64le as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:a43215e2db94f3ab53616b520f2ab1c7fb0076a5774161bd8767a27a2390065d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:a43215e2db94f3ab53616b520f2ab1c7fb0076a5774161bd8767a27a2390065d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:b99f56f5e7f16c1e04a4a6d72e4c32322ef6bb2343eca87946de54f069bbb647_arm64 as a component of Red Hat OpenShift Container Platform 4.16",
"product_id": "Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:b99f56f5e7f16c1e04a4a6d72e4c32322ef6bb2343eca87946de54f069bbb647_arm64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:b99f56f5e7f16c1e04a4a6d72e4c32322ef6bb2343eca87946de54f069bbb647_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.16"
}
]
},
"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.16:registry.redhat.io/openshift4/frr-rhel9@sha256:9514006a33ab484e3135736118c70f51c31f34005629556bc156928db87196ca_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/frr-rhel9@sha256:a656db8efd65a9786fab384a205ece12309615580a3340bb9109bcff8e61f7dc_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/frr-rhel9@sha256:b68a7a5859cbca02dfa05e925af2714227c15fb516ae7cf89d9313348dade299_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/frr-rhel9@sha256:f37f754c6359c687707a86e0a9bf1755041c9af85171ae0599a81dd48c53e2d7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:02e6dfae6c48696bf53651ad272cc9374f04b20ed24fd6be7c67a087574e48d6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:06b0c4535f06bae52fc8ca90a89dbb8d5619ba0d7798211028af1ee784d13f5e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:513ad3de187403dc1007e248428c745eb2d522a03b3a9b23aa26fc65c3d93a37_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a08c612f8cb22aa5c3efd6ff330642e3d235dfef0b3e827bc985b9ca7eaf504c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:147c132bafabcef7f8efdab81744d7879385d8dac010dd995b9d42e309817470_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:17ea1ff2373aec50c91d6a3958608f27d16952afd2e75db11cc5c8d44efdb118_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:577777cd08c2c9418331ca7bcd39c3d56de4250e17d45a07f6eab8f5e5c25671_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f5142c29e3deadf5bdaaf86c4e47c3849e8d184fa0e94e20f90d8b5c734c1f5_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:0542361aef325e1a07e8eec868aa9bb283c84ad7dbd1efeba4c6184fa2ad4d77_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:16dfc66eb443f912b84829d7eecc7c1f53dfe8472212f15c59791d979fa84a66_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:4082c82eb5fb26c26453a59b22657ddc1326dc3a9ea92ef37b459e6ba8ca6a22_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:7e42f0261d3670ee802686d3dc7af1f0e759e08a69f9af3b470e03fab4913a14_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9@sha256:01450301456878e9674db2ddfc3f04576fe55c69e99d3aa04eba94ae17b2080f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9@sha256:96693f8126646d7059ade26f2c67eee3b7be8578938434357788e657805d999e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9@sha256:a0ae51bb6f4d7051ac74b3010716c718cdbaf76a662ff7cd8cd6e0b576805234_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9@sha256:c44a4d6954452e5bc682afa6fba25ab51dc51d74b1a70cafe0e7cf25ebb0cfd8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7f6258266bccbcca635498ce666e66a8507d01e2ba9efaaaf337b57d14f26d10_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d714bb305f982efa78da071289508ba8db2baf58649a1e2f0ae9b0ddb57a2263_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7d0217453426ca0c9575b158abc341103ea13cd67bafd92124f8825bc41cdda_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:f4c42ff98d49337a1cb96f8232cab9b349625de78585279d8942e526be459cea_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:3151eed2a25d88ff78011c11d7c1919a2596fd923895b2778e34629b8bfbd610_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:5d6d2ae0f3181abb25d2c933c13ae588d44878f8caf843b2ef3a48bf5c5080a3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a2973d796abe669f4bdc36fd7a9a074446de62e7129e519a137932cab9986cdc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a8cc726e618cfe1c7ee8d99172a5006efce6151f45c1658f784afa5ddc807868_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:74c8507e18640e95b55a9d1865a5604d5573a6d803b3bd6ad140252116daddbc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:80ed81e053fd2747a1e902c4903f1e5e16ff7228dcf0de3b29a2d4c2c72a717d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:54df3621a2eceda85b684c4e00569b83e92b904ad33eba8f16bdd7a524a5617d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d2738696ceccc3b938bc86998ca586af3499938778ae6fbc6d17978821ae62e7_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:45965c8fcffc60c7486b3f0d6529e94e693857c0b672ddee7d19763e37b78e61_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:88adfb5ccb4e317b42349aa070de3bd7e5c27bd6d0742765b82e1eaee472d6b6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bbb1289250fbfc5ff3ab65334a06c58e702b405667d2b04babbdaf4a80be0478_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:fdc08f17b67d399f4580ec9dbe173cdcc449cd39e435bd1a7f461f42693783df_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:3951cf8a27c45f072e652db6d082b7da3918f45c396c3c2741a6c601450fc479_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:864fb13cffda7d5823ba4a4383567d17dac490d73bb4b4315c66b6cc72353063_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9deba7562e574a1f0f8682301e5a462d8a4e287413e7df1c24c1dc9858c47ecf_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1a61574663cc4f4990f8a2c49747c168b9ca99054294d72f243fa945574730ab_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58b83258b1b2e8dab86a823cb71c8e65cca8563f3054f05fbdbed22c5f26d79a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:b85ea1417cf415e90481c517a281cf0911b15f4e05481b8e0af89a981f594863_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e093813edbb6d05b5e3ee2521569da55627ae80959e582ed6bfd1afac915e28e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:5b0dd05af5d0a5ba757f64ae98c8bef6e124d6893ec50ae58c2fa490ad1da9da_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:71bea17824ad9b14c6a1ac704d67bd88cc8b1915553688244537334af75c3d4c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b5afe724298038c6bd4ef1aec50070dc05dcd6a0c7753895192a1ad9b5ce1fc6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d579a6ab524711f7bdd41e290c5ac02ce99844e4ff7009cde714852faa1e68e0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1457c8c70f8f7530125aa2b3117ae25d5d6a0580ffc8656cbfac07cc13909d93_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:3ee44121c26163f6000dae58840f7f90ad4cde9b558b508f83f67ae1825bacc1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:54096f6eca87b0850865f1e2734af4aa375a77713137b895e4d3889955458493_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:d1888e9f7c082d7d18fba94ff0feb4acc1d6558b19188832a0509d5cfdd1cbf5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:55348dd1ebb0cfb9e8e96ebd0a55b4141178d01e7e26f202d69e1dba5992e023_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:87658a7ba8ceab40b559b7758a7f00698eae2cf3847a3cfb1e8e4b5889e1686f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a3a0883e5f0c5629c9430ea0c56d8f997742d4062d78b8227fb234c680a0a4a3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a5c42bdfc20281fd84d2ee0b940b46552e817e854d5fe9ba39860c82a4ee923e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:324d1d362c9bea02f5ddba10494c2ef8c90e989642dc4e6f0c5bc89d16b53a0a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:6ab29f53a706d108df289c5db2998fe96791571bc8bcd6754b907abcaf4379ac_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:6ec2a820720d5748c98ba86aec077d6d59226d51b5e3588707510d3d36e84eb9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:9ad4efcc603ed7757a0b0a7845aa7d72f5e23ba40f8298190a5793db965e2f75_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:297a34f0de639347abfd52c0951a519cbe4beab738585a23dc3f8a67a9e5e398_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34fb3b211f74e041b9629668ad4b2d62167a62148682b427d96c0eccbe290c49_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0d269efc7c71d4d76586576c8c38b5b7b08693c029075e254b80a648d7f33a6_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fad9afe5d9d39e6644c8bc36eea8e34bde18e913f22d642e4b2f54c1081d1034_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6bebe3c5e9777fe0e0074ffdef26cdb219accc3f7b0eb18c63107377a28c674e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9031054e71f4ddd88ba35bf405221a3a2041e60c065cee5816bf8d97327563af_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c207a46f0485910f3f08af7dfd7d15e20cc18a0201be59ff1495e9d826171fcc_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cd1374515057f729d2cf1db898169a854f02dd73fad3ffe1ed8fa8a70961c55a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:081e7552cd297b7f12ae3ea2096636309b06b2b61561c9c39198dd2e0206027c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c4848aae14e6061af2347acefe372e64c5b68fa5c81354f632ce514e5d0087f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:93edabd2f066dee4beb96de47f43d89dfe67797bc67721f0e4d62f8bfd51fe63_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a5809d0e184c70d5d0d94ebb867bfb15742e99c480130df2ea6758fd3333d4a2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:215b81bdaf6bfb80a6cbe8bae87f6da6b7ea153213c888bc0482a3fb57f07f5c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5592db0a15ab4260c830189c78e320d55eb49670fe78861ffaa934dfc7b75e3e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:953d1556ce9fefc128d1fb47d7ac17f6e7b6509e6aad299e08ea5c0efc55140b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e9eed073a460afbab96736e200e080bfeba63e0cec4dedcdcec9b680adb33617_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:001047be9a9833099b587275b2955f33b74e43663bd9aa7a103be48ff66741c8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:186686757f9c92645c8b99bf223e54d4530e5c8890eb66691f27259823258f54_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:27771fc6d92c5d01e96b1f742ae529f6e8f093dfe05bb45e9845974ecd02767e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:68f897418a57e3a04dca031c97baacd8596ddcb08e7542d0b2a05b6b3cfb1635_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:3a91eecf139eed92ad863b3efe6b2276e6130fa263f886ae24602de45199d9eb_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8e40d4bcc668e06e641a92352a5dab6ac27bb207a325ed4e7a3146543075b70e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:98c4b2c4049339400ed684b431e1634f595b6c3c3f8fa7037f1ddb2d04f4e3d0_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:e4b3eff70c600b70374b1c5992b2362f590809afaed6b421795d1b869601e9b1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:29c7ea3bc70551e7303de88482d31c404d70fefd6798366108ece99d866dfef7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:7eff4354cc1ba713da7ac40addb41a18d2890fabe6b2e8741afef2b1648e5880_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:89157ee64b9be78c6d64e6ccfbfb00a2f3c63d2e8997c88ef0ac966644e7280a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:e3b4385f15c779dc161a3765202bb70e5c9737393361adebdc5b45f0e9a0e7f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:1e0f9ed2a7106f3a6c2b9a38fb3cd755f7a9f3f7908c6bc6ecd119d4c3f545b6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:a84aa36083e58b3c0f58eba66664d03f6704c5ac5a1ef8c2914ee3c72e409e8e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:b8a68a480dd92d1b58d5b22c3e72a8dccfc72f29b71400c449ae182a41330fcb_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:dca0eb8d677c1a677dedab68d837878633edc0872198ea069ee14ff4ffe84784_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:2c94db335463a852c1c86a1e9e10b618dacf97f8f9cb9d3940cc81c59fa2dc4e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3b4c1045738a2c7afdf066b79c8314dd873696e5ad4ef6bd5e4b64c25f6d8a76_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:451946b1dbe0496f4bae9f5706dffa67eb2e0c6e6834a379c2e512089baf11d8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8e21b89096862a83bd75d0a16a9f84776413d412b5f082e1eb59395421f12ea5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1f56244b8c2a31afbc98a7ec10c80a420cfabccbdd486c0d4f66916a1738836a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1ff9be3e9b7a97248033d7eebafb96e746764b7a34f5596cb6e40307bb8ebb14_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:362608b3b3554ca4aa53942b84cd8edc67b538958c0e0304bd150f86c696fcea_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:4367e4aba42529560f7f107ecbac40e976bdf2a65094ca2a7c0915e3ef7e25e0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:a9dffb4a8c56f80bd9360647b101af8f6f1aefb319cc22e5fca548854806e7b6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:d048f016f53cd366d7baf5d493cb54d7d0048d06bd78df94af05aeabbfca36a5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:26fea8b5ab20892ee95f29154544f43edf0af21b902de6f0e44e43cc92a0041c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:88ad485a4343852a9c8fc2c28f9e9aafa6b0f33ee76e2b1b707716f93500fa61_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:a582dca50e55146395dc3d74425f4bf3d67ea94e8548301663ce839ec82cf336_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:e161c060ee33667088bb06106f2fb5f0e6b8ed8a73ffe07a47aa4a1542bab369_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0331d92ee2311506854cb2356d76af0c91511b0666780bc8a9f56fd4eab76caa_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0416098c93062580897f27418206a04764519dd2680ec3abcf3eea0744522e74_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5077c8e7184bb5ee3f560467a9f024b9b4db8e578d7399051d0af0a3fa98b29d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ec438084de12495a2e5e8a65e70cb6462428a173f632db719f8fcf3b1ffe03b4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2c3df103fa272232278285c627dc147df35e8210fad25ad2c4da716fca597ef9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3ef41a628927d4d1be349dea48733cf0f88b549a07b2bc9ff80a3509a9d38f09_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f39237845df57f3f842c3ffe086f07951e27fba8ad22562e7b629057b84e7767_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f4665da79faf6599d6ab248f37613d2ddcc65279dcb1b28c58c5179d3e2eb3b8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c407b419feced6e958a592b6313c7ebb45473bcae6584e6199c130668c93260_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:6d5f8ab7a7f4a8f0e02b03238c5a558b09196e39e0dd67f4c8162a87e5057f67_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ddb8ec811dfdd925af7efe0aeafd1ca0055fb7cbe2ee0838c65b650757170258_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f0ed06d20b9f79f75cc74f3975da40e4d2cbbd19a5650d3fae12b4b8b1eb8d5d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3cf6e29e0ea8122e1f49e86d94fb8b33745abb5efdb8a3168b1655c9eb1aa634_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:71e2c086f21d1104091bbf5ea16c8a71f7b8c70fd191386e6ed6350519e96fb6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:93cba4b60a1f94d70bb726e8b35e054b801f8ef983a394378dbb62af04b1a279_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:e32224f0902c5bee46d900baeb3a0d5ff3c4446783316a6f4218ea9ea3d96d6d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:5cca093d2d8bf4b821fcefa60ed31994f583e6b4d0f36add2e15837ba13a54ba_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:c7e11295d158ece33bb1533c7ab2146734afae7997403c3313039fe8e4042b62_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ce29ee041d2a07642d3d63e847dc8bfe4be2ac935040c46c2fb489fd079abbb6_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:eb43e0d479af584f6843d63541edc6b626ab712ad0a315aeeb526a268df810ed_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:dacb5557f0aa61fd3d02d41fbf6774f836da79e039407a360c6101beef800c20_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:de2ba088ca5b6ac82841b4a02e3fa21df833fe7384635339885e14c6f2693e78_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:fbec93b6bb528247057c5a80de12ba08e48cf739139f885cdc3b99d53413a55f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:fdadd0941e2c21e6769ba153cfc2ae0b1f0a5a21e277511bff8fe0534fd4c7e8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:4d2a45f85944228d66b2c7faa97b809535db2ab1a9f750ee881860a4e75a72d3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:5d4245709a7d4376ce80773394e75d0f8b36f13b7af5e32bdc1ac5fdf589c5bd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e1f24bc46f7bf4cf5ec64ea17425a90129f0a99488fcc359c3db29398113e33a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:14d279701588ec2d73dd320faeca2e42a4c4e686814f98f6a17d8d9f1fdc0d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:2b93d944ca281693be0eb183e59334cdb8c0216f6a7aea80ff0404560b98354c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:50273d0d6da9c69ee2a8b78fe795bea3d3619b119a12e5683229ec407a513be6_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4189bdf7b4b0257e0c860c4213e758b8d0cbab4f06e838bcdfed5323a4b38898_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4649d2d44fd2c3a8f91e81028452a98164210b9aafb8017e617cb6d7050853e5_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:c2cc38b4fb8d7f8775d256826bb3b5e7c3e6ca35b3ac24b004a30258cd4f4c74_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f33e9f7ff97ef473102b90016c327855d5ff1d27bf17fd36f4d2b546553f8b46_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2054859965b5f9815471daf7bcbf9e55ae57b36317ba5a6601f36bb1d0e77abe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3be4aeab13b379ba5b6cd9d9797ee36da7dd685b35a6f45e399e79f4ba420409_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:424cfb306af67d196216b38a959824ec744c95e20fbcde525c0f302bcd6964c2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5fe6bfc5b4061a7a2714c29b3cafbcce7f9f9b64afd14892a14299a7bf29d26e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:666b60cbe20f50e81d8dcc7c0c7fddc8abb643a93095b6118db7817868f43289_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:7eb1951694f5bae2173a988d761e6ece80fbf0ab36bd4ec1a014f9fa1a84db43_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:9765693924b8ec640974c64376a5720c8ab185c3964419578b9925a4eaac5248_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:dd48a7604537b65b80d2a4159fd37a824449a8fae81207475befbbb77c361ba7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:19535ae956f07aba6ca4695099c10f809b2cea36d376a9eb7bc9d0a84495a504_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:7a30179910c1784d01aad7326c062508cfc965cfc755712a1d38e8289e8f9379_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d0ea8f45c76014e6ea5fb9d6dc4e4af393a071f41e54c57abd862e7a8fbda431_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d2e5352a507aab9aca55c54318b6736163553d3de38d2d1e8d4243758fcc8def_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:2ac4a28094f99ab002bebb7c546e65a12f9d95ad9f9f62f4e4aef3247622bb17_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:4f61f95a11a8cd70dc27d14dbd7dd91f7d2b57a9719266fa73582005acad545b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b78a9ff749c9da98c29b918f45d5f11ca026512672bed7e90ae50a35f5c33e4d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:fc5f81c11a6065ce7114852e8464593cff69e60bf9277e616b5589e3a48b5a68_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:337ec522df81fc8bc58c9bbd648423749acbcd4513d5faa056bbfa81810585a8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:91b415630888ae0cf4e3ca432f9b9be7d00681481b681522211b031be3dcf9db_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:9372cd049753cf4a91dfd5d025344f62e5b24135943c879f1fa9407cb47de1ab_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:4b05f7f91c43570086657a04af7fd7240ab0ebe74a4ab163cc7e86d3c700c539_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f9eb14dbc03fbc1b7b1638d45c7143416d8b20aafd8dc31ff2d76f2dbce5eb71_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fa5aceb2480d81c302efb6849ccdd0c9903458a546acec9e389f136388acff2a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:068b100b0c15df30d9664032a88f1a01883911ca8b220de1db76f1c6791b141b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:3d895e8c27a2f0430418c85b50f40162fd0c1c796537f3ad30bdad60f2240645_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:70182f1d3a0c4a31a2f849d96efda9ffec182920e672d4384a493c02048c2707_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:15f98ff30d6198a3f2e6761a18123076b7d958d7520f0b12d6dd3a46ad9719d2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:a43215e2db94f3ab53616b520f2ab1c7fb0076a5774161bd8767a27a2390065d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:b99f56f5e7f16c1e04a4a6d72e4c32322ef6bb2343eca87946de54f069bbb647_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08782101e310104c5d19c930d4edd49eb124832415618416d20049dfbed4cbf5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:27f4edc3cde1c7d948b73260b1de3fba136da756dd9f0f22916e02778b3823a8_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:ab0896ce872f78ba1eb00bd4f0788fc4d8f75f29a50d09628faffc085ec79805_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:11e39079c8bab75830ec62ecb5816c9a7346387c76ba8ffb281bf8198becedbe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:80721d9f6473ed2be5061f623d5946fa8161cc85b98c04355ba2fe95dfa47022_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:d3d4dc2ab077526554aa961e27a598e0cd11e5efee8ed64eed14f816d458423b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:202b5c866073a825c534e7025633d931d13d0b09fc7ffa8b9bfb7d03090ecee0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30b13ae772570ab84e7f5c8a12d34e9fb4c5c1bcdb5a6263bf34d257b2a841e1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:50978fd902161120b371e10fb333d101c2136c7c409cb360760611ee5e442c53_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:59dec63a108221372a2c2538541ccdba81d0d4d9f3a7697be2099939342631ca_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0955416b7534ba4cc93b531d8ff5c924581718279fda1f3959d615763ab12616_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2375ba78f391d033133fbadf90d29d0dfa8989d7a395c9195433434042bd51cd_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:3556aab04fabcaceb6e9ad532d7081505ebd5cdff7cc605741969d13e59c7a42_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4c974f9cbf5e6a69c618f8d8e891bfe981a3cfc47a881d53f4eeef81c377b922_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:0f650a9fe5f6809895cad70c61ae1e51308923850efe02f3aa0f168cdbcaaf01_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:694660afd01c0ab1dd9bfb7fa1475329465ec1cf42b131f75d97660e76b88838_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:f00d592e4c374dc18daa2bae226aaf440ca01881d5886f1227e7225d8a3f5d98_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8b0c3ef8a06fec1794efa1478952a25c9faccdcf30a46536879e0d3b87f4dcfb_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:da4ee9e80f6da27bc38f102f60df392b3be77f3c6e9e6b95247f7a390c91cd09_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:e8b70363470153ed4f105873f8238befcb47e3022d4c5d0c5986bfcdd33452e7_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:15f98ff30d6198a3f2e6761a18123076b7d958d7520f0b12d6dd3a46ad9719d2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:a43215e2db94f3ab53616b520f2ab1c7fb0076a5774161bd8767a27a2390065d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:b99f56f5e7f16c1e04a4a6d72e4c32322ef6bb2343eca87946de54f069bbb647_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:3f36c9fe97e7a51fe5690f19c604c3713527981c9367b8b7686882e36aaf93ea_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c6ca80552aa3d1f36654251a3f67161b2083b67d3df2c3e6f38c3c3572baabf6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:dbffc77d9a086c3b9af2422e2727dca4c1838ae8b48b390d6ad69fc02705f995_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/frr-rhel9@sha256:9514006a33ab484e3135736118c70f51c31f34005629556bc156928db87196ca_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/frr-rhel9@sha256:a656db8efd65a9786fab384a205ece12309615580a3340bb9109bcff8e61f7dc_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/frr-rhel9@sha256:b68a7a5859cbca02dfa05e925af2714227c15fb516ae7cf89d9313348dade299_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/frr-rhel9@sha256:f37f754c6359c687707a86e0a9bf1755041c9af85171ae0599a81dd48c53e2d7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:02e6dfae6c48696bf53651ad272cc9374f04b20ed24fd6be7c67a087574e48d6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:06b0c4535f06bae52fc8ca90a89dbb8d5619ba0d7798211028af1ee784d13f5e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:513ad3de187403dc1007e248428c745eb2d522a03b3a9b23aa26fc65c3d93a37_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a08c612f8cb22aa5c3efd6ff330642e3d235dfef0b3e827bc985b9ca7eaf504c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:147c132bafabcef7f8efdab81744d7879385d8dac010dd995b9d42e309817470_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:17ea1ff2373aec50c91d6a3958608f27d16952afd2e75db11cc5c8d44efdb118_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:577777cd08c2c9418331ca7bcd39c3d56de4250e17d45a07f6eab8f5e5c25671_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f5142c29e3deadf5bdaaf86c4e47c3849e8d184fa0e94e20f90d8b5c734c1f5_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:0542361aef325e1a07e8eec868aa9bb283c84ad7dbd1efeba4c6184fa2ad4d77_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:16dfc66eb443f912b84829d7eecc7c1f53dfe8472212f15c59791d979fa84a66_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:4082c82eb5fb26c26453a59b22657ddc1326dc3a9ea92ef37b459e6ba8ca6a22_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:7e42f0261d3670ee802686d3dc7af1f0e759e08a69f9af3b470e03fab4913a14_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9@sha256:01450301456878e9674db2ddfc3f04576fe55c69e99d3aa04eba94ae17b2080f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9@sha256:96693f8126646d7059ade26f2c67eee3b7be8578938434357788e657805d999e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9@sha256:a0ae51bb6f4d7051ac74b3010716c718cdbaf76a662ff7cd8cd6e0b576805234_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9@sha256:c44a4d6954452e5bc682afa6fba25ab51dc51d74b1a70cafe0e7cf25ebb0cfd8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7f6258266bccbcca635498ce666e66a8507d01e2ba9efaaaf337b57d14f26d10_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d714bb305f982efa78da071289508ba8db2baf58649a1e2f0ae9b0ddb57a2263_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7d0217453426ca0c9575b158abc341103ea13cd67bafd92124f8825bc41cdda_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:f4c42ff98d49337a1cb96f8232cab9b349625de78585279d8942e526be459cea_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:3151eed2a25d88ff78011c11d7c1919a2596fd923895b2778e34629b8bfbd610_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:5d6d2ae0f3181abb25d2c933c13ae588d44878f8caf843b2ef3a48bf5c5080a3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a2973d796abe669f4bdc36fd7a9a074446de62e7129e519a137932cab9986cdc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a8cc726e618cfe1c7ee8d99172a5006efce6151f45c1658f784afa5ddc807868_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:74c8507e18640e95b55a9d1865a5604d5573a6d803b3bd6ad140252116daddbc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:80ed81e053fd2747a1e902c4903f1e5e16ff7228dcf0de3b29a2d4c2c72a717d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:54df3621a2eceda85b684c4e00569b83e92b904ad33eba8f16bdd7a524a5617d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d2738696ceccc3b938bc86998ca586af3499938778ae6fbc6d17978821ae62e7_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:45965c8fcffc60c7486b3f0d6529e94e693857c0b672ddee7d19763e37b78e61_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:88adfb5ccb4e317b42349aa070de3bd7e5c27bd6d0742765b82e1eaee472d6b6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bbb1289250fbfc5ff3ab65334a06c58e702b405667d2b04babbdaf4a80be0478_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:fdc08f17b67d399f4580ec9dbe173cdcc449cd39e435bd1a7f461f42693783df_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:3951cf8a27c45f072e652db6d082b7da3918f45c396c3c2741a6c601450fc479_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:864fb13cffda7d5823ba4a4383567d17dac490d73bb4b4315c66b6cc72353063_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9deba7562e574a1f0f8682301e5a462d8a4e287413e7df1c24c1dc9858c47ecf_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1a61574663cc4f4990f8a2c49747c168b9ca99054294d72f243fa945574730ab_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58b83258b1b2e8dab86a823cb71c8e65cca8563f3054f05fbdbed22c5f26d79a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:b85ea1417cf415e90481c517a281cf0911b15f4e05481b8e0af89a981f594863_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e093813edbb6d05b5e3ee2521569da55627ae80959e582ed6bfd1afac915e28e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:5b0dd05af5d0a5ba757f64ae98c8bef6e124d6893ec50ae58c2fa490ad1da9da_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:71bea17824ad9b14c6a1ac704d67bd88cc8b1915553688244537334af75c3d4c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b5afe724298038c6bd4ef1aec50070dc05dcd6a0c7753895192a1ad9b5ce1fc6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d579a6ab524711f7bdd41e290c5ac02ce99844e4ff7009cde714852faa1e68e0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1457c8c70f8f7530125aa2b3117ae25d5d6a0580ffc8656cbfac07cc13909d93_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:3ee44121c26163f6000dae58840f7f90ad4cde9b558b508f83f67ae1825bacc1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:54096f6eca87b0850865f1e2734af4aa375a77713137b895e4d3889955458493_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:d1888e9f7c082d7d18fba94ff0feb4acc1d6558b19188832a0509d5cfdd1cbf5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:55348dd1ebb0cfb9e8e96ebd0a55b4141178d01e7e26f202d69e1dba5992e023_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:87658a7ba8ceab40b559b7758a7f00698eae2cf3847a3cfb1e8e4b5889e1686f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a3a0883e5f0c5629c9430ea0c56d8f997742d4062d78b8227fb234c680a0a4a3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a5c42bdfc20281fd84d2ee0b940b46552e817e854d5fe9ba39860c82a4ee923e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:324d1d362c9bea02f5ddba10494c2ef8c90e989642dc4e6f0c5bc89d16b53a0a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:6ab29f53a706d108df289c5db2998fe96791571bc8bcd6754b907abcaf4379ac_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:6ec2a820720d5748c98ba86aec077d6d59226d51b5e3588707510d3d36e84eb9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:9ad4efcc603ed7757a0b0a7845aa7d72f5e23ba40f8298190a5793db965e2f75_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:297a34f0de639347abfd52c0951a519cbe4beab738585a23dc3f8a67a9e5e398_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34fb3b211f74e041b9629668ad4b2d62167a62148682b427d96c0eccbe290c49_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0d269efc7c71d4d76586576c8c38b5b7b08693c029075e254b80a648d7f33a6_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fad9afe5d9d39e6644c8bc36eea8e34bde18e913f22d642e4b2f54c1081d1034_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6bebe3c5e9777fe0e0074ffdef26cdb219accc3f7b0eb18c63107377a28c674e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9031054e71f4ddd88ba35bf405221a3a2041e60c065cee5816bf8d97327563af_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c207a46f0485910f3f08af7dfd7d15e20cc18a0201be59ff1495e9d826171fcc_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cd1374515057f729d2cf1db898169a854f02dd73fad3ffe1ed8fa8a70961c55a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:081e7552cd297b7f12ae3ea2096636309b06b2b61561c9c39198dd2e0206027c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c4848aae14e6061af2347acefe372e64c5b68fa5c81354f632ce514e5d0087f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:93edabd2f066dee4beb96de47f43d89dfe67797bc67721f0e4d62f8bfd51fe63_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a5809d0e184c70d5d0d94ebb867bfb15742e99c480130df2ea6758fd3333d4a2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:215b81bdaf6bfb80a6cbe8bae87f6da6b7ea153213c888bc0482a3fb57f07f5c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5592db0a15ab4260c830189c78e320d55eb49670fe78861ffaa934dfc7b75e3e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:953d1556ce9fefc128d1fb47d7ac17f6e7b6509e6aad299e08ea5c0efc55140b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e9eed073a460afbab96736e200e080bfeba63e0cec4dedcdcec9b680adb33617_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:001047be9a9833099b587275b2955f33b74e43663bd9aa7a103be48ff66741c8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:186686757f9c92645c8b99bf223e54d4530e5c8890eb66691f27259823258f54_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:27771fc6d92c5d01e96b1f742ae529f6e8f093dfe05bb45e9845974ecd02767e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:68f897418a57e3a04dca031c97baacd8596ddcb08e7542d0b2a05b6b3cfb1635_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:3a91eecf139eed92ad863b3efe6b2276e6130fa263f886ae24602de45199d9eb_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8e40d4bcc668e06e641a92352a5dab6ac27bb207a325ed4e7a3146543075b70e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:98c4b2c4049339400ed684b431e1634f595b6c3c3f8fa7037f1ddb2d04f4e3d0_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:e4b3eff70c600b70374b1c5992b2362f590809afaed6b421795d1b869601e9b1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:29c7ea3bc70551e7303de88482d31c404d70fefd6798366108ece99d866dfef7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:7eff4354cc1ba713da7ac40addb41a18d2890fabe6b2e8741afef2b1648e5880_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:89157ee64b9be78c6d64e6ccfbfb00a2f3c63d2e8997c88ef0ac966644e7280a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:e3b4385f15c779dc161a3765202bb70e5c9737393361adebdc5b45f0e9a0e7f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:1e0f9ed2a7106f3a6c2b9a38fb3cd755f7a9f3f7908c6bc6ecd119d4c3f545b6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:a84aa36083e58b3c0f58eba66664d03f6704c5ac5a1ef8c2914ee3c72e409e8e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:b8a68a480dd92d1b58d5b22c3e72a8dccfc72f29b71400c449ae182a41330fcb_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:dca0eb8d677c1a677dedab68d837878633edc0872198ea069ee14ff4ffe84784_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:2c94db335463a852c1c86a1e9e10b618dacf97f8f9cb9d3940cc81c59fa2dc4e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3b4c1045738a2c7afdf066b79c8314dd873696e5ad4ef6bd5e4b64c25f6d8a76_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:451946b1dbe0496f4bae9f5706dffa67eb2e0c6e6834a379c2e512089baf11d8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8e21b89096862a83bd75d0a16a9f84776413d412b5f082e1eb59395421f12ea5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1f56244b8c2a31afbc98a7ec10c80a420cfabccbdd486c0d4f66916a1738836a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1ff9be3e9b7a97248033d7eebafb96e746764b7a34f5596cb6e40307bb8ebb14_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:362608b3b3554ca4aa53942b84cd8edc67b538958c0e0304bd150f86c696fcea_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:4367e4aba42529560f7f107ecbac40e976bdf2a65094ca2a7c0915e3ef7e25e0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:a9dffb4a8c56f80bd9360647b101af8f6f1aefb319cc22e5fca548854806e7b6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:d048f016f53cd366d7baf5d493cb54d7d0048d06bd78df94af05aeabbfca36a5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:26fea8b5ab20892ee95f29154544f43edf0af21b902de6f0e44e43cc92a0041c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:88ad485a4343852a9c8fc2c28f9e9aafa6b0f33ee76e2b1b707716f93500fa61_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:a582dca50e55146395dc3d74425f4bf3d67ea94e8548301663ce839ec82cf336_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:e161c060ee33667088bb06106f2fb5f0e6b8ed8a73ffe07a47aa4a1542bab369_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0331d92ee2311506854cb2356d76af0c91511b0666780bc8a9f56fd4eab76caa_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0416098c93062580897f27418206a04764519dd2680ec3abcf3eea0744522e74_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5077c8e7184bb5ee3f560467a9f024b9b4db8e578d7399051d0af0a3fa98b29d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ec438084de12495a2e5e8a65e70cb6462428a173f632db719f8fcf3b1ffe03b4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2c3df103fa272232278285c627dc147df35e8210fad25ad2c4da716fca597ef9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3ef41a628927d4d1be349dea48733cf0f88b549a07b2bc9ff80a3509a9d38f09_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f39237845df57f3f842c3ffe086f07951e27fba8ad22562e7b629057b84e7767_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f4665da79faf6599d6ab248f37613d2ddcc65279dcb1b28c58c5179d3e2eb3b8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c407b419feced6e958a592b6313c7ebb45473bcae6584e6199c130668c93260_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:6d5f8ab7a7f4a8f0e02b03238c5a558b09196e39e0dd67f4c8162a87e5057f67_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ddb8ec811dfdd925af7efe0aeafd1ca0055fb7cbe2ee0838c65b650757170258_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f0ed06d20b9f79f75cc74f3975da40e4d2cbbd19a5650d3fae12b4b8b1eb8d5d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3cf6e29e0ea8122e1f49e86d94fb8b33745abb5efdb8a3168b1655c9eb1aa634_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:71e2c086f21d1104091bbf5ea16c8a71f7b8c70fd191386e6ed6350519e96fb6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:93cba4b60a1f94d70bb726e8b35e054b801f8ef983a394378dbb62af04b1a279_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:e32224f0902c5bee46d900baeb3a0d5ff3c4446783316a6f4218ea9ea3d96d6d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:5cca093d2d8bf4b821fcefa60ed31994f583e6b4d0f36add2e15837ba13a54ba_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:c7e11295d158ece33bb1533c7ab2146734afae7997403c3313039fe8e4042b62_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ce29ee041d2a07642d3d63e847dc8bfe4be2ac935040c46c2fb489fd079abbb6_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:eb43e0d479af584f6843d63541edc6b626ab712ad0a315aeeb526a268df810ed_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:dacb5557f0aa61fd3d02d41fbf6774f836da79e039407a360c6101beef800c20_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:de2ba088ca5b6ac82841b4a02e3fa21df833fe7384635339885e14c6f2693e78_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:fbec93b6bb528247057c5a80de12ba08e48cf739139f885cdc3b99d53413a55f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:fdadd0941e2c21e6769ba153cfc2ae0b1f0a5a21e277511bff8fe0534fd4c7e8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:4d2a45f85944228d66b2c7faa97b809535db2ab1a9f750ee881860a4e75a72d3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:5d4245709a7d4376ce80773394e75d0f8b36f13b7af5e32bdc1ac5fdf589c5bd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e1f24bc46f7bf4cf5ec64ea17425a90129f0a99488fcc359c3db29398113e33a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:14d279701588ec2d73dd320faeca2e42a4c4e686814f98f6a17d8d9f1fdc0d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:2b93d944ca281693be0eb183e59334cdb8c0216f6a7aea80ff0404560b98354c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:50273d0d6da9c69ee2a8b78fe795bea3d3619b119a12e5683229ec407a513be6_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4189bdf7b4b0257e0c860c4213e758b8d0cbab4f06e838bcdfed5323a4b38898_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4649d2d44fd2c3a8f91e81028452a98164210b9aafb8017e617cb6d7050853e5_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:c2cc38b4fb8d7f8775d256826bb3b5e7c3e6ca35b3ac24b004a30258cd4f4c74_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f33e9f7ff97ef473102b90016c327855d5ff1d27bf17fd36f4d2b546553f8b46_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2054859965b5f9815471daf7bcbf9e55ae57b36317ba5a6601f36bb1d0e77abe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3be4aeab13b379ba5b6cd9d9797ee36da7dd685b35a6f45e399e79f4ba420409_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:424cfb306af67d196216b38a959824ec744c95e20fbcde525c0f302bcd6964c2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5fe6bfc5b4061a7a2714c29b3cafbcce7f9f9b64afd14892a14299a7bf29d26e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:666b60cbe20f50e81d8dcc7c0c7fddc8abb643a93095b6118db7817868f43289_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:7eb1951694f5bae2173a988d761e6ece80fbf0ab36bd4ec1a014f9fa1a84db43_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:9765693924b8ec640974c64376a5720c8ab185c3964419578b9925a4eaac5248_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:dd48a7604537b65b80d2a4159fd37a824449a8fae81207475befbbb77c361ba7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:19535ae956f07aba6ca4695099c10f809b2cea36d376a9eb7bc9d0a84495a504_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:7a30179910c1784d01aad7326c062508cfc965cfc755712a1d38e8289e8f9379_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d0ea8f45c76014e6ea5fb9d6dc4e4af393a071f41e54c57abd862e7a8fbda431_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d2e5352a507aab9aca55c54318b6736163553d3de38d2d1e8d4243758fcc8def_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:2ac4a28094f99ab002bebb7c546e65a12f9d95ad9f9f62f4e4aef3247622bb17_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:4f61f95a11a8cd70dc27d14dbd7dd91f7d2b57a9719266fa73582005acad545b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b78a9ff749c9da98c29b918f45d5f11ca026512672bed7e90ae50a35f5c33e4d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:fc5f81c11a6065ce7114852e8464593cff69e60bf9277e616b5589e3a48b5a68_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:337ec522df81fc8bc58c9bbd648423749acbcd4513d5faa056bbfa81810585a8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:91b415630888ae0cf4e3ca432f9b9be7d00681481b681522211b031be3dcf9db_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:9372cd049753cf4a91dfd5d025344f62e5b24135943c879f1fa9407cb47de1ab_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:4b05f7f91c43570086657a04af7fd7240ab0ebe74a4ab163cc7e86d3c700c539_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f9eb14dbc03fbc1b7b1638d45c7143416d8b20aafd8dc31ff2d76f2dbce5eb71_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fa5aceb2480d81c302efb6849ccdd0c9903458a546acec9e389f136388acff2a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:068b100b0c15df30d9664032a88f1a01883911ca8b220de1db76f1c6791b141b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:3d895e8c27a2f0430418c85b50f40162fd0c1c796537f3ad30bdad60f2240645_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:70182f1d3a0c4a31a2f849d96efda9ffec182920e672d4384a493c02048c2707_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:15f98ff30d6198a3f2e6761a18123076b7d958d7520f0b12d6dd3a46ad9719d2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:a43215e2db94f3ab53616b520f2ab1c7fb0076a5774161bd8767a27a2390065d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:b99f56f5e7f16c1e04a4a6d72e4c32322ef6bb2343eca87946de54f069bbb647_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08782101e310104c5d19c930d4edd49eb124832415618416d20049dfbed4cbf5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:27f4edc3cde1c7d948b73260b1de3fba136da756dd9f0f22916e02778b3823a8_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:ab0896ce872f78ba1eb00bd4f0788fc4d8f75f29a50d09628faffc085ec79805_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:11e39079c8bab75830ec62ecb5816c9a7346387c76ba8ffb281bf8198becedbe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:80721d9f6473ed2be5061f623d5946fa8161cc85b98c04355ba2fe95dfa47022_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:d3d4dc2ab077526554aa961e27a598e0cd11e5efee8ed64eed14f816d458423b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:202b5c866073a825c534e7025633d931d13d0b09fc7ffa8b9bfb7d03090ecee0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30b13ae772570ab84e7f5c8a12d34e9fb4c5c1bcdb5a6263bf34d257b2a841e1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:50978fd902161120b371e10fb333d101c2136c7c409cb360760611ee5e442c53_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:59dec63a108221372a2c2538541ccdba81d0d4d9f3a7697be2099939342631ca_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0955416b7534ba4cc93b531d8ff5c924581718279fda1f3959d615763ab12616_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2375ba78f391d033133fbadf90d29d0dfa8989d7a395c9195433434042bd51cd_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:3556aab04fabcaceb6e9ad532d7081505ebd5cdff7cc605741969d13e59c7a42_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4c974f9cbf5e6a69c618f8d8e891bfe981a3cfc47a881d53f4eeef81c377b922_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:0f650a9fe5f6809895cad70c61ae1e51308923850efe02f3aa0f168cdbcaaf01_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:694660afd01c0ab1dd9bfb7fa1475329465ec1cf42b131f75d97660e76b88838_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:f00d592e4c374dc18daa2bae226aaf440ca01881d5886f1227e7225d8a3f5d98_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8b0c3ef8a06fec1794efa1478952a25c9faccdcf30a46536879e0d3b87f4dcfb_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:da4ee9e80f6da27bc38f102f60df392b3be77f3c6e9e6b95247f7a390c91cd09_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:e8b70363470153ed4f105873f8238befcb47e3022d4c5d0c5986bfcdd33452e7_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:15f98ff30d6198a3f2e6761a18123076b7d958d7520f0b12d6dd3a46ad9719d2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:a43215e2db94f3ab53616b520f2ab1c7fb0076a5774161bd8767a27a2390065d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:b99f56f5e7f16c1e04a4a6d72e4c32322ef6bb2343eca87946de54f069bbb647_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-30T10:57:19+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.16/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.16/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:3f36c9fe97e7a51fe5690f19c604c3713527981c9367b8b7686882e36aaf93ea_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c6ca80552aa3d1f36654251a3f67161b2083b67d3df2c3e6f38c3c3572baabf6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:dbffc77d9a086c3b9af2422e2727dca4c1838ae8b48b390d6ad69fc02705f995_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:10105"
},
{
"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.16:registry.redhat.io/openshift4/frr-rhel9@sha256:9514006a33ab484e3135736118c70f51c31f34005629556bc156928db87196ca_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/frr-rhel9@sha256:a656db8efd65a9786fab384a205ece12309615580a3340bb9109bcff8e61f7dc_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/frr-rhel9@sha256:b68a7a5859cbca02dfa05e925af2714227c15fb516ae7cf89d9313348dade299_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/frr-rhel9@sha256:f37f754c6359c687707a86e0a9bf1755041c9af85171ae0599a81dd48c53e2d7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:02e6dfae6c48696bf53651ad272cc9374f04b20ed24fd6be7c67a087574e48d6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:06b0c4535f06bae52fc8ca90a89dbb8d5619ba0d7798211028af1ee784d13f5e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:513ad3de187403dc1007e248428c745eb2d522a03b3a9b23aa26fc65c3d93a37_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a08c612f8cb22aa5c3efd6ff330642e3d235dfef0b3e827bc985b9ca7eaf504c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:147c132bafabcef7f8efdab81744d7879385d8dac010dd995b9d42e309817470_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:17ea1ff2373aec50c91d6a3958608f27d16952afd2e75db11cc5c8d44efdb118_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:577777cd08c2c9418331ca7bcd39c3d56de4250e17d45a07f6eab8f5e5c25671_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f5142c29e3deadf5bdaaf86c4e47c3849e8d184fa0e94e20f90d8b5c734c1f5_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:0542361aef325e1a07e8eec868aa9bb283c84ad7dbd1efeba4c6184fa2ad4d77_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:16dfc66eb443f912b84829d7eecc7c1f53dfe8472212f15c59791d979fa84a66_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:4082c82eb5fb26c26453a59b22657ddc1326dc3a9ea92ef37b459e6ba8ca6a22_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:7e42f0261d3670ee802686d3dc7af1f0e759e08a69f9af3b470e03fab4913a14_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9@sha256:01450301456878e9674db2ddfc3f04576fe55c69e99d3aa04eba94ae17b2080f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9@sha256:96693f8126646d7059ade26f2c67eee3b7be8578938434357788e657805d999e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9@sha256:a0ae51bb6f4d7051ac74b3010716c718cdbaf76a662ff7cd8cd6e0b576805234_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9@sha256:c44a4d6954452e5bc682afa6fba25ab51dc51d74b1a70cafe0e7cf25ebb0cfd8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7f6258266bccbcca635498ce666e66a8507d01e2ba9efaaaf337b57d14f26d10_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d714bb305f982efa78da071289508ba8db2baf58649a1e2f0ae9b0ddb57a2263_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7d0217453426ca0c9575b158abc341103ea13cd67bafd92124f8825bc41cdda_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:f4c42ff98d49337a1cb96f8232cab9b349625de78585279d8942e526be459cea_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:3151eed2a25d88ff78011c11d7c1919a2596fd923895b2778e34629b8bfbd610_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:5d6d2ae0f3181abb25d2c933c13ae588d44878f8caf843b2ef3a48bf5c5080a3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a2973d796abe669f4bdc36fd7a9a074446de62e7129e519a137932cab9986cdc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a8cc726e618cfe1c7ee8d99172a5006efce6151f45c1658f784afa5ddc807868_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:74c8507e18640e95b55a9d1865a5604d5573a6d803b3bd6ad140252116daddbc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:80ed81e053fd2747a1e902c4903f1e5e16ff7228dcf0de3b29a2d4c2c72a717d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:54df3621a2eceda85b684c4e00569b83e92b904ad33eba8f16bdd7a524a5617d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d2738696ceccc3b938bc86998ca586af3499938778ae6fbc6d17978821ae62e7_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:45965c8fcffc60c7486b3f0d6529e94e693857c0b672ddee7d19763e37b78e61_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:88adfb5ccb4e317b42349aa070de3bd7e5c27bd6d0742765b82e1eaee472d6b6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bbb1289250fbfc5ff3ab65334a06c58e702b405667d2b04babbdaf4a80be0478_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:fdc08f17b67d399f4580ec9dbe173cdcc449cd39e435bd1a7f461f42693783df_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:3951cf8a27c45f072e652db6d082b7da3918f45c396c3c2741a6c601450fc479_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:864fb13cffda7d5823ba4a4383567d17dac490d73bb4b4315c66b6cc72353063_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9deba7562e574a1f0f8682301e5a462d8a4e287413e7df1c24c1dc9858c47ecf_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1a61574663cc4f4990f8a2c49747c168b9ca99054294d72f243fa945574730ab_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58b83258b1b2e8dab86a823cb71c8e65cca8563f3054f05fbdbed22c5f26d79a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:b85ea1417cf415e90481c517a281cf0911b15f4e05481b8e0af89a981f594863_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e093813edbb6d05b5e3ee2521569da55627ae80959e582ed6bfd1afac915e28e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:5b0dd05af5d0a5ba757f64ae98c8bef6e124d6893ec50ae58c2fa490ad1da9da_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:71bea17824ad9b14c6a1ac704d67bd88cc8b1915553688244537334af75c3d4c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b5afe724298038c6bd4ef1aec50070dc05dcd6a0c7753895192a1ad9b5ce1fc6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d579a6ab524711f7bdd41e290c5ac02ce99844e4ff7009cde714852faa1e68e0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1457c8c70f8f7530125aa2b3117ae25d5d6a0580ffc8656cbfac07cc13909d93_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:3ee44121c26163f6000dae58840f7f90ad4cde9b558b508f83f67ae1825bacc1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:54096f6eca87b0850865f1e2734af4aa375a77713137b895e4d3889955458493_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:d1888e9f7c082d7d18fba94ff0feb4acc1d6558b19188832a0509d5cfdd1cbf5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:55348dd1ebb0cfb9e8e96ebd0a55b4141178d01e7e26f202d69e1dba5992e023_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:87658a7ba8ceab40b559b7758a7f00698eae2cf3847a3cfb1e8e4b5889e1686f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a3a0883e5f0c5629c9430ea0c56d8f997742d4062d78b8227fb234c680a0a4a3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a5c42bdfc20281fd84d2ee0b940b46552e817e854d5fe9ba39860c82a4ee923e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:324d1d362c9bea02f5ddba10494c2ef8c90e989642dc4e6f0c5bc89d16b53a0a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:6ab29f53a706d108df289c5db2998fe96791571bc8bcd6754b907abcaf4379ac_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:6ec2a820720d5748c98ba86aec077d6d59226d51b5e3588707510d3d36e84eb9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:9ad4efcc603ed7757a0b0a7845aa7d72f5e23ba40f8298190a5793db965e2f75_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:297a34f0de639347abfd52c0951a519cbe4beab738585a23dc3f8a67a9e5e398_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34fb3b211f74e041b9629668ad4b2d62167a62148682b427d96c0eccbe290c49_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0d269efc7c71d4d76586576c8c38b5b7b08693c029075e254b80a648d7f33a6_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fad9afe5d9d39e6644c8bc36eea8e34bde18e913f22d642e4b2f54c1081d1034_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6bebe3c5e9777fe0e0074ffdef26cdb219accc3f7b0eb18c63107377a28c674e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9031054e71f4ddd88ba35bf405221a3a2041e60c065cee5816bf8d97327563af_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c207a46f0485910f3f08af7dfd7d15e20cc18a0201be59ff1495e9d826171fcc_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cd1374515057f729d2cf1db898169a854f02dd73fad3ffe1ed8fa8a70961c55a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:081e7552cd297b7f12ae3ea2096636309b06b2b61561c9c39198dd2e0206027c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c4848aae14e6061af2347acefe372e64c5b68fa5c81354f632ce514e5d0087f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:93edabd2f066dee4beb96de47f43d89dfe67797bc67721f0e4d62f8bfd51fe63_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a5809d0e184c70d5d0d94ebb867bfb15742e99c480130df2ea6758fd3333d4a2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:215b81bdaf6bfb80a6cbe8bae87f6da6b7ea153213c888bc0482a3fb57f07f5c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5592db0a15ab4260c830189c78e320d55eb49670fe78861ffaa934dfc7b75e3e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:953d1556ce9fefc128d1fb47d7ac17f6e7b6509e6aad299e08ea5c0efc55140b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e9eed073a460afbab96736e200e080bfeba63e0cec4dedcdcec9b680adb33617_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:001047be9a9833099b587275b2955f33b74e43663bd9aa7a103be48ff66741c8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:186686757f9c92645c8b99bf223e54d4530e5c8890eb66691f27259823258f54_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:27771fc6d92c5d01e96b1f742ae529f6e8f093dfe05bb45e9845974ecd02767e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:68f897418a57e3a04dca031c97baacd8596ddcb08e7542d0b2a05b6b3cfb1635_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:3a91eecf139eed92ad863b3efe6b2276e6130fa263f886ae24602de45199d9eb_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8e40d4bcc668e06e641a92352a5dab6ac27bb207a325ed4e7a3146543075b70e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:98c4b2c4049339400ed684b431e1634f595b6c3c3f8fa7037f1ddb2d04f4e3d0_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:e4b3eff70c600b70374b1c5992b2362f590809afaed6b421795d1b869601e9b1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:29c7ea3bc70551e7303de88482d31c404d70fefd6798366108ece99d866dfef7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:7eff4354cc1ba713da7ac40addb41a18d2890fabe6b2e8741afef2b1648e5880_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:89157ee64b9be78c6d64e6ccfbfb00a2f3c63d2e8997c88ef0ac966644e7280a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:e3b4385f15c779dc161a3765202bb70e5c9737393361adebdc5b45f0e9a0e7f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:1e0f9ed2a7106f3a6c2b9a38fb3cd755f7a9f3f7908c6bc6ecd119d4c3f545b6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:a84aa36083e58b3c0f58eba66664d03f6704c5ac5a1ef8c2914ee3c72e409e8e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:b8a68a480dd92d1b58d5b22c3e72a8dccfc72f29b71400c449ae182a41330fcb_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:dca0eb8d677c1a677dedab68d837878633edc0872198ea069ee14ff4ffe84784_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:2c94db335463a852c1c86a1e9e10b618dacf97f8f9cb9d3940cc81c59fa2dc4e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3b4c1045738a2c7afdf066b79c8314dd873696e5ad4ef6bd5e4b64c25f6d8a76_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:451946b1dbe0496f4bae9f5706dffa67eb2e0c6e6834a379c2e512089baf11d8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8e21b89096862a83bd75d0a16a9f84776413d412b5f082e1eb59395421f12ea5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1f56244b8c2a31afbc98a7ec10c80a420cfabccbdd486c0d4f66916a1738836a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1ff9be3e9b7a97248033d7eebafb96e746764b7a34f5596cb6e40307bb8ebb14_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:362608b3b3554ca4aa53942b84cd8edc67b538958c0e0304bd150f86c696fcea_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:4367e4aba42529560f7f107ecbac40e976bdf2a65094ca2a7c0915e3ef7e25e0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:a9dffb4a8c56f80bd9360647b101af8f6f1aefb319cc22e5fca548854806e7b6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:d048f016f53cd366d7baf5d493cb54d7d0048d06bd78df94af05aeabbfca36a5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:26fea8b5ab20892ee95f29154544f43edf0af21b902de6f0e44e43cc92a0041c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:88ad485a4343852a9c8fc2c28f9e9aafa6b0f33ee76e2b1b707716f93500fa61_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:a582dca50e55146395dc3d74425f4bf3d67ea94e8548301663ce839ec82cf336_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:e161c060ee33667088bb06106f2fb5f0e6b8ed8a73ffe07a47aa4a1542bab369_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0331d92ee2311506854cb2356d76af0c91511b0666780bc8a9f56fd4eab76caa_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0416098c93062580897f27418206a04764519dd2680ec3abcf3eea0744522e74_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5077c8e7184bb5ee3f560467a9f024b9b4db8e578d7399051d0af0a3fa98b29d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ec438084de12495a2e5e8a65e70cb6462428a173f632db719f8fcf3b1ffe03b4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2c3df103fa272232278285c627dc147df35e8210fad25ad2c4da716fca597ef9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3ef41a628927d4d1be349dea48733cf0f88b549a07b2bc9ff80a3509a9d38f09_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f39237845df57f3f842c3ffe086f07951e27fba8ad22562e7b629057b84e7767_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f4665da79faf6599d6ab248f37613d2ddcc65279dcb1b28c58c5179d3e2eb3b8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c407b419feced6e958a592b6313c7ebb45473bcae6584e6199c130668c93260_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:6d5f8ab7a7f4a8f0e02b03238c5a558b09196e39e0dd67f4c8162a87e5057f67_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ddb8ec811dfdd925af7efe0aeafd1ca0055fb7cbe2ee0838c65b650757170258_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f0ed06d20b9f79f75cc74f3975da40e4d2cbbd19a5650d3fae12b4b8b1eb8d5d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3cf6e29e0ea8122e1f49e86d94fb8b33745abb5efdb8a3168b1655c9eb1aa634_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:71e2c086f21d1104091bbf5ea16c8a71f7b8c70fd191386e6ed6350519e96fb6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:93cba4b60a1f94d70bb726e8b35e054b801f8ef983a394378dbb62af04b1a279_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:e32224f0902c5bee46d900baeb3a0d5ff3c4446783316a6f4218ea9ea3d96d6d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:5cca093d2d8bf4b821fcefa60ed31994f583e6b4d0f36add2e15837ba13a54ba_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:c7e11295d158ece33bb1533c7ab2146734afae7997403c3313039fe8e4042b62_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ce29ee041d2a07642d3d63e847dc8bfe4be2ac935040c46c2fb489fd079abbb6_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:eb43e0d479af584f6843d63541edc6b626ab712ad0a315aeeb526a268df810ed_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:dacb5557f0aa61fd3d02d41fbf6774f836da79e039407a360c6101beef800c20_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:de2ba088ca5b6ac82841b4a02e3fa21df833fe7384635339885e14c6f2693e78_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:fbec93b6bb528247057c5a80de12ba08e48cf739139f885cdc3b99d53413a55f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:fdadd0941e2c21e6769ba153cfc2ae0b1f0a5a21e277511bff8fe0534fd4c7e8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:4d2a45f85944228d66b2c7faa97b809535db2ab1a9f750ee881860a4e75a72d3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:5d4245709a7d4376ce80773394e75d0f8b36f13b7af5e32bdc1ac5fdf589c5bd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e1f24bc46f7bf4cf5ec64ea17425a90129f0a99488fcc359c3db29398113e33a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:14d279701588ec2d73dd320faeca2e42a4c4e686814f98f6a17d8d9f1fdc0d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:2b93d944ca281693be0eb183e59334cdb8c0216f6a7aea80ff0404560b98354c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:50273d0d6da9c69ee2a8b78fe795bea3d3619b119a12e5683229ec407a513be6_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4189bdf7b4b0257e0c860c4213e758b8d0cbab4f06e838bcdfed5323a4b38898_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4649d2d44fd2c3a8f91e81028452a98164210b9aafb8017e617cb6d7050853e5_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:c2cc38b4fb8d7f8775d256826bb3b5e7c3e6ca35b3ac24b004a30258cd4f4c74_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f33e9f7ff97ef473102b90016c327855d5ff1d27bf17fd36f4d2b546553f8b46_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2054859965b5f9815471daf7bcbf9e55ae57b36317ba5a6601f36bb1d0e77abe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3be4aeab13b379ba5b6cd9d9797ee36da7dd685b35a6f45e399e79f4ba420409_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:424cfb306af67d196216b38a959824ec744c95e20fbcde525c0f302bcd6964c2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5fe6bfc5b4061a7a2714c29b3cafbcce7f9f9b64afd14892a14299a7bf29d26e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:666b60cbe20f50e81d8dcc7c0c7fddc8abb643a93095b6118db7817868f43289_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:7eb1951694f5bae2173a988d761e6ece80fbf0ab36bd4ec1a014f9fa1a84db43_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:9765693924b8ec640974c64376a5720c8ab185c3964419578b9925a4eaac5248_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:dd48a7604537b65b80d2a4159fd37a824449a8fae81207475befbbb77c361ba7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:19535ae956f07aba6ca4695099c10f809b2cea36d376a9eb7bc9d0a84495a504_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:7a30179910c1784d01aad7326c062508cfc965cfc755712a1d38e8289e8f9379_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d0ea8f45c76014e6ea5fb9d6dc4e4af393a071f41e54c57abd862e7a8fbda431_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d2e5352a507aab9aca55c54318b6736163553d3de38d2d1e8d4243758fcc8def_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:2ac4a28094f99ab002bebb7c546e65a12f9d95ad9f9f62f4e4aef3247622bb17_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:4f61f95a11a8cd70dc27d14dbd7dd91f7d2b57a9719266fa73582005acad545b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b78a9ff749c9da98c29b918f45d5f11ca026512672bed7e90ae50a35f5c33e4d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:fc5f81c11a6065ce7114852e8464593cff69e60bf9277e616b5589e3a48b5a68_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:337ec522df81fc8bc58c9bbd648423749acbcd4513d5faa056bbfa81810585a8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:91b415630888ae0cf4e3ca432f9b9be7d00681481b681522211b031be3dcf9db_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:9372cd049753cf4a91dfd5d025344f62e5b24135943c879f1fa9407cb47de1ab_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:4b05f7f91c43570086657a04af7fd7240ab0ebe74a4ab163cc7e86d3c700c539_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f9eb14dbc03fbc1b7b1638d45c7143416d8b20aafd8dc31ff2d76f2dbce5eb71_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fa5aceb2480d81c302efb6849ccdd0c9903458a546acec9e389f136388acff2a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:068b100b0c15df30d9664032a88f1a01883911ca8b220de1db76f1c6791b141b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:3d895e8c27a2f0430418c85b50f40162fd0c1c796537f3ad30bdad60f2240645_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:70182f1d3a0c4a31a2f849d96efda9ffec182920e672d4384a493c02048c2707_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:3f36c9fe97e7a51fe5690f19c604c3713527981c9367b8b7686882e36aaf93ea_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c6ca80552aa3d1f36654251a3f67161b2083b67d3df2c3e6f38c3c3572baabf6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:dbffc77d9a086c3b9af2422e2727dca4c1838ae8b48b390d6ad69fc02705f995_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:15f98ff30d6198a3f2e6761a18123076b7d958d7520f0b12d6dd3a46ad9719d2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:a43215e2db94f3ab53616b520f2ab1c7fb0076a5774161bd8767a27a2390065d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:b99f56f5e7f16c1e04a4a6d72e4c32322ef6bb2343eca87946de54f069bbb647_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08782101e310104c5d19c930d4edd49eb124832415618416d20049dfbed4cbf5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:27f4edc3cde1c7d948b73260b1de3fba136da756dd9f0f22916e02778b3823a8_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:ab0896ce872f78ba1eb00bd4f0788fc4d8f75f29a50d09628faffc085ec79805_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:11e39079c8bab75830ec62ecb5816c9a7346387c76ba8ffb281bf8198becedbe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:80721d9f6473ed2be5061f623d5946fa8161cc85b98c04355ba2fe95dfa47022_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:d3d4dc2ab077526554aa961e27a598e0cd11e5efee8ed64eed14f816d458423b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:202b5c866073a825c534e7025633d931d13d0b09fc7ffa8b9bfb7d03090ecee0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30b13ae772570ab84e7f5c8a12d34e9fb4c5c1bcdb5a6263bf34d257b2a841e1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:50978fd902161120b371e10fb333d101c2136c7c409cb360760611ee5e442c53_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:59dec63a108221372a2c2538541ccdba81d0d4d9f3a7697be2099939342631ca_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0955416b7534ba4cc93b531d8ff5c924581718279fda1f3959d615763ab12616_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2375ba78f391d033133fbadf90d29d0dfa8989d7a395c9195433434042bd51cd_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:3556aab04fabcaceb6e9ad532d7081505ebd5cdff7cc605741969d13e59c7a42_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4c974f9cbf5e6a69c618f8d8e891bfe981a3cfc47a881d53f4eeef81c377b922_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:0f650a9fe5f6809895cad70c61ae1e51308923850efe02f3aa0f168cdbcaaf01_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:694660afd01c0ab1dd9bfb7fa1475329465ec1cf42b131f75d97660e76b88838_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:f00d592e4c374dc18daa2bae226aaf440ca01881d5886f1227e7225d8a3f5d98_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8b0c3ef8a06fec1794efa1478952a25c9faccdcf30a46536879e0d3b87f4dcfb_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:da4ee9e80f6da27bc38f102f60df392b3be77f3c6e9e6b95247f7a390c91cd09_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:e8b70363470153ed4f105873f8238befcb47e3022d4c5d0c5986bfcdd33452e7_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:15f98ff30d6198a3f2e6761a18123076b7d958d7520f0b12d6dd3a46ad9719d2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:a43215e2db94f3ab53616b520f2ab1c7fb0076a5774161bd8767a27a2390065d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:b99f56f5e7f16c1e04a4a6d72e4c32322ef6bb2343eca87946de54f069bbb647_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/frr-rhel9@sha256:9514006a33ab484e3135736118c70f51c31f34005629556bc156928db87196ca_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/frr-rhel9@sha256:a656db8efd65a9786fab384a205ece12309615580a3340bb9109bcff8e61f7dc_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/frr-rhel9@sha256:b68a7a5859cbca02dfa05e925af2714227c15fb516ae7cf89d9313348dade299_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/frr-rhel9@sha256:f37f754c6359c687707a86e0a9bf1755041c9af85171ae0599a81dd48c53e2d7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:02e6dfae6c48696bf53651ad272cc9374f04b20ed24fd6be7c67a087574e48d6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:06b0c4535f06bae52fc8ca90a89dbb8d5619ba0d7798211028af1ee784d13f5e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:513ad3de187403dc1007e248428c745eb2d522a03b3a9b23aa26fc65c3d93a37_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:a08c612f8cb22aa5c3efd6ff330642e3d235dfef0b3e827bc985b9ca7eaf504c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:147c132bafabcef7f8efdab81744d7879385d8dac010dd995b9d42e309817470_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:17ea1ff2373aec50c91d6a3958608f27d16952afd2e75db11cc5c8d44efdb118_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:577777cd08c2c9418331ca7bcd39c3d56de4250e17d45a07f6eab8f5e5c25671_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f5142c29e3deadf5bdaaf86c4e47c3849e8d184fa0e94e20f90d8b5c734c1f5_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:0542361aef325e1a07e8eec868aa9bb283c84ad7dbd1efeba4c6184fa2ad4d77_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:16dfc66eb443f912b84829d7eecc7c1f53dfe8472212f15c59791d979fa84a66_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:4082c82eb5fb26c26453a59b22657ddc1326dc3a9ea92ef37b459e6ba8ca6a22_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:7e42f0261d3670ee802686d3dc7af1f0e759e08a69f9af3b470e03fab4913a14_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9@sha256:01450301456878e9674db2ddfc3f04576fe55c69e99d3aa04eba94ae17b2080f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9@sha256:96693f8126646d7059ade26f2c67eee3b7be8578938434357788e657805d999e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9@sha256:a0ae51bb6f4d7051ac74b3010716c718cdbaf76a662ff7cd8cd6e0b576805234_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/metallb-rhel9@sha256:c44a4d6954452e5bc682afa6fba25ab51dc51d74b1a70cafe0e7cf25ebb0cfd8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7f6258266bccbcca635498ce666e66a8507d01e2ba9efaaaf337b57d14f26d10_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d714bb305f982efa78da071289508ba8db2baf58649a1e2f0ae9b0ddb57a2263_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7d0217453426ca0c9575b158abc341103ea13cd67bafd92124f8825bc41cdda_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:f4c42ff98d49337a1cb96f8232cab9b349625de78585279d8942e526be459cea_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:3151eed2a25d88ff78011c11d7c1919a2596fd923895b2778e34629b8bfbd610_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:5d6d2ae0f3181abb25d2c933c13ae588d44878f8caf843b2ef3a48bf5c5080a3_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a2973d796abe669f4bdc36fd7a9a074446de62e7129e519a137932cab9986cdc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a8cc726e618cfe1c7ee8d99172a5006efce6151f45c1658f784afa5ddc807868_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:74c8507e18640e95b55a9d1865a5604d5573a6d803b3bd6ad140252116daddbc_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:80ed81e053fd2747a1e902c4903f1e5e16ff7228dcf0de3b29a2d4c2c72a717d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:54df3621a2eceda85b684c4e00569b83e92b904ad33eba8f16bdd7a524a5617d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d2738696ceccc3b938bc86998ca586af3499938778ae6fbc6d17978821ae62e7_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:45965c8fcffc60c7486b3f0d6529e94e693857c0b672ddee7d19763e37b78e61_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:88adfb5ccb4e317b42349aa070de3bd7e5c27bd6d0742765b82e1eaee472d6b6_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bbb1289250fbfc5ff3ab65334a06c58e702b405667d2b04babbdaf4a80be0478_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:fdc08f17b67d399f4580ec9dbe173cdcc449cd39e435bd1a7f461f42693783df_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:3951cf8a27c45f072e652db6d082b7da3918f45c396c3c2741a6c601450fc479_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:864fb13cffda7d5823ba4a4383567d17dac490d73bb4b4315c66b6cc72353063_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9deba7562e574a1f0f8682301e5a462d8a4e287413e7df1c24c1dc9858c47ecf_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1a61574663cc4f4990f8a2c49747c168b9ca99054294d72f243fa945574730ab_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58b83258b1b2e8dab86a823cb71c8e65cca8563f3054f05fbdbed22c5f26d79a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:b85ea1417cf415e90481c517a281cf0911b15f4e05481b8e0af89a981f594863_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e093813edbb6d05b5e3ee2521569da55627ae80959e582ed6bfd1afac915e28e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:5b0dd05af5d0a5ba757f64ae98c8bef6e124d6893ec50ae58c2fa490ad1da9da_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:71bea17824ad9b14c6a1ac704d67bd88cc8b1915553688244537334af75c3d4c_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b5afe724298038c6bd4ef1aec50070dc05dcd6a0c7753895192a1ad9b5ce1fc6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d579a6ab524711f7bdd41e290c5ac02ce99844e4ff7009cde714852faa1e68e0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1457c8c70f8f7530125aa2b3117ae25d5d6a0580ffc8656cbfac07cc13909d93_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:3ee44121c26163f6000dae58840f7f90ad4cde9b558b508f83f67ae1825bacc1_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:54096f6eca87b0850865f1e2734af4aa375a77713137b895e4d3889955458493_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:d1888e9f7c082d7d18fba94ff0feb4acc1d6558b19188832a0509d5cfdd1cbf5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:55348dd1ebb0cfb9e8e96ebd0a55b4141178d01e7e26f202d69e1dba5992e023_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:87658a7ba8ceab40b559b7758a7f00698eae2cf3847a3cfb1e8e4b5889e1686f_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a3a0883e5f0c5629c9430ea0c56d8f997742d4062d78b8227fb234c680a0a4a3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a5c42bdfc20281fd84d2ee0b940b46552e817e854d5fe9ba39860c82a4ee923e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:324d1d362c9bea02f5ddba10494c2ef8c90e989642dc4e6f0c5bc89d16b53a0a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:6ab29f53a706d108df289c5db2998fe96791571bc8bcd6754b907abcaf4379ac_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:6ec2a820720d5748c98ba86aec077d6d59226d51b5e3588707510d3d36e84eb9_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel9@sha256:9ad4efcc603ed7757a0b0a7845aa7d72f5e23ba40f8298190a5793db965e2f75_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:297a34f0de639347abfd52c0951a519cbe4beab738585a23dc3f8a67a9e5e398_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34fb3b211f74e041b9629668ad4b2d62167a62148682b427d96c0eccbe290c49_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e0d269efc7c71d4d76586576c8c38b5b7b08693c029075e254b80a648d7f33a6_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fad9afe5d9d39e6644c8bc36eea8e34bde18e913f22d642e4b2f54c1081d1034_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6bebe3c5e9777fe0e0074ffdef26cdb219accc3f7b0eb18c63107377a28c674e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:9031054e71f4ddd88ba35bf405221a3a2041e60c065cee5816bf8d97327563af_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c207a46f0485910f3f08af7dfd7d15e20cc18a0201be59ff1495e9d826171fcc_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cd1374515057f729d2cf1db898169a854f02dd73fad3ffe1ed8fa8a70961c55a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:081e7552cd297b7f12ae3ea2096636309b06b2b61561c9c39198dd2e0206027c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c4848aae14e6061af2347acefe372e64c5b68fa5c81354f632ce514e5d0087f_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:93edabd2f066dee4beb96de47f43d89dfe67797bc67721f0e4d62f8bfd51fe63_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a5809d0e184c70d5d0d94ebb867bfb15742e99c480130df2ea6758fd3333d4a2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:215b81bdaf6bfb80a6cbe8bae87f6da6b7ea153213c888bc0482a3fb57f07f5c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5592db0a15ab4260c830189c78e320d55eb49670fe78861ffaa934dfc7b75e3e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:953d1556ce9fefc128d1fb47d7ac17f6e7b6509e6aad299e08ea5c0efc55140b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e9eed073a460afbab96736e200e080bfeba63e0cec4dedcdcec9b680adb33617_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:001047be9a9833099b587275b2955f33b74e43663bd9aa7a103be48ff66741c8_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:186686757f9c92645c8b99bf223e54d4530e5c8890eb66691f27259823258f54_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:27771fc6d92c5d01e96b1f742ae529f6e8f093dfe05bb45e9845974ecd02767e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:68f897418a57e3a04dca031c97baacd8596ddcb08e7542d0b2a05b6b3cfb1635_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:3a91eecf139eed92ad863b3efe6b2276e6130fa263f886ae24602de45199d9eb_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8e40d4bcc668e06e641a92352a5dab6ac27bb207a325ed4e7a3146543075b70e_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:98c4b2c4049339400ed684b431e1634f595b6c3c3f8fa7037f1ddb2d04f4e3d0_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:e4b3eff70c600b70374b1c5992b2362f590809afaed6b421795d1b869601e9b1_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:29c7ea3bc70551e7303de88482d31c404d70fefd6798366108ece99d866dfef7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:7eff4354cc1ba713da7ac40addb41a18d2890fabe6b2e8741afef2b1648e5880_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:89157ee64b9be78c6d64e6ccfbfb00a2f3c63d2e8997c88ef0ac966644e7280a_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:e3b4385f15c779dc161a3765202bb70e5c9737393361adebdc5b45f0e9a0e7f3_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:1e0f9ed2a7106f3a6c2b9a38fb3cd755f7a9f3f7908c6bc6ecd119d4c3f545b6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:a84aa36083e58b3c0f58eba66664d03f6704c5ac5a1ef8c2914ee3c72e409e8e_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:b8a68a480dd92d1b58d5b22c3e72a8dccfc72f29b71400c449ae182a41330fcb_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:dca0eb8d677c1a677dedab68d837878633edc0872198ea069ee14ff4ffe84784_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:2c94db335463a852c1c86a1e9e10b618dacf97f8f9cb9d3940cc81c59fa2dc4e_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3b4c1045738a2c7afdf066b79c8314dd873696e5ad4ef6bd5e4b64c25f6d8a76_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:451946b1dbe0496f4bae9f5706dffa67eb2e0c6e6834a379c2e512089baf11d8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8e21b89096862a83bd75d0a16a9f84776413d412b5f082e1eb59395421f12ea5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1f56244b8c2a31afbc98a7ec10c80a420cfabccbdd486c0d4f66916a1738836a_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1ff9be3e9b7a97248033d7eebafb96e746764b7a34f5596cb6e40307bb8ebb14_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:362608b3b3554ca4aa53942b84cd8edc67b538958c0e0304bd150f86c696fcea_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:4367e4aba42529560f7f107ecbac40e976bdf2a65094ca2a7c0915e3ef7e25e0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:a9dffb4a8c56f80bd9360647b101af8f6f1aefb319cc22e5fca548854806e7b6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:d048f016f53cd366d7baf5d493cb54d7d0048d06bd78df94af05aeabbfca36a5_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:26fea8b5ab20892ee95f29154544f43edf0af21b902de6f0e44e43cc92a0041c_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:88ad485a4343852a9c8fc2c28f9e9aafa6b0f33ee76e2b1b707716f93500fa61_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:a582dca50e55146395dc3d74425f4bf3d67ea94e8548301663ce839ec82cf336_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:e161c060ee33667088bb06106f2fb5f0e6b8ed8a73ffe07a47aa4a1542bab369_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0331d92ee2311506854cb2356d76af0c91511b0666780bc8a9f56fd4eab76caa_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0416098c93062580897f27418206a04764519dd2680ec3abcf3eea0744522e74_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5077c8e7184bb5ee3f560467a9f024b9b4db8e578d7399051d0af0a3fa98b29d_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ec438084de12495a2e5e8a65e70cb6462428a173f632db719f8fcf3b1ffe03b4_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2c3df103fa272232278285c627dc147df35e8210fad25ad2c4da716fca597ef9_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:3ef41a628927d4d1be349dea48733cf0f88b549a07b2bc9ff80a3509a9d38f09_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f39237845df57f3f842c3ffe086f07951e27fba8ad22562e7b629057b84e7767_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f4665da79faf6599d6ab248f37613d2ddcc65279dcb1b28c58c5179d3e2eb3b8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c407b419feced6e958a592b6313c7ebb45473bcae6584e6199c130668c93260_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:6d5f8ab7a7f4a8f0e02b03238c5a558b09196e39e0dd67f4c8162a87e5057f67_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ddb8ec811dfdd925af7efe0aeafd1ca0055fb7cbe2ee0838c65b650757170258_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f0ed06d20b9f79f75cc74f3975da40e4d2cbbd19a5650d3fae12b4b8b1eb8d5d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3cf6e29e0ea8122e1f49e86d94fb8b33745abb5efdb8a3168b1655c9eb1aa634_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:71e2c086f21d1104091bbf5ea16c8a71f7b8c70fd191386e6ed6350519e96fb6_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:93cba4b60a1f94d70bb726e8b35e054b801f8ef983a394378dbb62af04b1a279_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:e32224f0902c5bee46d900baeb3a0d5ff3c4446783316a6f4218ea9ea3d96d6d_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:5cca093d2d8bf4b821fcefa60ed31994f583e6b4d0f36add2e15837ba13a54ba_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:c7e11295d158ece33bb1533c7ab2146734afae7997403c3313039fe8e4042b62_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ce29ee041d2a07642d3d63e847dc8bfe4be2ac935040c46c2fb489fd079abbb6_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:eb43e0d479af584f6843d63541edc6b626ab712ad0a315aeeb526a268df810ed_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:dacb5557f0aa61fd3d02d41fbf6774f836da79e039407a360c6101beef800c20_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:de2ba088ca5b6ac82841b4a02e3fa21df833fe7384635339885e14c6f2693e78_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:fbec93b6bb528247057c5a80de12ba08e48cf739139f885cdc3b99d53413a55f_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:fdadd0941e2c21e6769ba153cfc2ae0b1f0a5a21e277511bff8fe0534fd4c7e8_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:4d2a45f85944228d66b2c7faa97b809535db2ab1a9f750ee881860a4e75a72d3_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:5d4245709a7d4376ce80773394e75d0f8b36f13b7af5e32bdc1ac5fdf589c5bd_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e1f24bc46f7bf4cf5ec64ea17425a90129f0a99488fcc359c3db29398113e33a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:14d279701588ec2d73dd320faeca2e42a4c4e686814f98f6a17d8d9f1fdc0d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:2b93d944ca281693be0eb183e59334cdb8c0216f6a7aea80ff0404560b98354c_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:50273d0d6da9c69ee2a8b78fe795bea3d3619b119a12e5683229ec407a513be6_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4189bdf7b4b0257e0c860c4213e758b8d0cbab4f06e838bcdfed5323a4b38898_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4649d2d44fd2c3a8f91e81028452a98164210b9aafb8017e617cb6d7050853e5_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:c2cc38b4fb8d7f8775d256826bb3b5e7c3e6ca35b3ac24b004a30258cd4f4c74_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f33e9f7ff97ef473102b90016c327855d5ff1d27bf17fd36f4d2b546553f8b46_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2054859965b5f9815471daf7bcbf9e55ae57b36317ba5a6601f36bb1d0e77abe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3be4aeab13b379ba5b6cd9d9797ee36da7dd685b35a6f45e399e79f4ba420409_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:424cfb306af67d196216b38a959824ec744c95e20fbcde525c0f302bcd6964c2_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5fe6bfc5b4061a7a2714c29b3cafbcce7f9f9b64afd14892a14299a7bf29d26e_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:666b60cbe20f50e81d8dcc7c0c7fddc8abb643a93095b6118db7817868f43289_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:7eb1951694f5bae2173a988d761e6ece80fbf0ab36bd4ec1a014f9fa1a84db43_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:9765693924b8ec640974c64376a5720c8ab185c3964419578b9925a4eaac5248_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:dd48a7604537b65b80d2a4159fd37a824449a8fae81207475befbbb77c361ba7_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:19535ae956f07aba6ca4695099c10f809b2cea36d376a9eb7bc9d0a84495a504_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:7a30179910c1784d01aad7326c062508cfc965cfc755712a1d38e8289e8f9379_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d0ea8f45c76014e6ea5fb9d6dc4e4af393a071f41e54c57abd862e7a8fbda431_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:d2e5352a507aab9aca55c54318b6736163553d3de38d2d1e8d4243758fcc8def_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:2ac4a28094f99ab002bebb7c546e65a12f9d95ad9f9f62f4e4aef3247622bb17_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:4f61f95a11a8cd70dc27d14dbd7dd91f7d2b57a9719266fa73582005acad545b_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b78a9ff749c9da98c29b918f45d5f11ca026512672bed7e90ae50a35f5c33e4d_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:fc5f81c11a6065ce7114852e8464593cff69e60bf9277e616b5589e3a48b5a68_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:337ec522df81fc8bc58c9bbd648423749acbcd4513d5faa056bbfa81810585a8_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:91b415630888ae0cf4e3ca432f9b9be7d00681481b681522211b031be3dcf9db_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:9372cd049753cf4a91dfd5d025344f62e5b24135943c879f1fa9407cb47de1ab_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:4b05f7f91c43570086657a04af7fd7240ab0ebe74a4ab163cc7e86d3c700c539_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f9eb14dbc03fbc1b7b1638d45c7143416d8b20aafd8dc31ff2d76f2dbce5eb71_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fa5aceb2480d81c302efb6849ccdd0c9903458a546acec9e389f136388acff2a_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:068b100b0c15df30d9664032a88f1a01883911ca8b220de1db76f1c6791b141b_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:3d895e8c27a2f0430418c85b50f40162fd0c1c796537f3ad30bdad60f2240645_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:70182f1d3a0c4a31a2f849d96efda9ffec182920e672d4384a493c02048c2707_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:3f36c9fe97e7a51fe5690f19c604c3713527981c9367b8b7686882e36aaf93ea_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c6ca80552aa3d1f36654251a3f67161b2083b67d3df2c3e6f38c3c3572baabf6_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:dbffc77d9a086c3b9af2422e2727dca4c1838ae8b48b390d6ad69fc02705f995_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:15f98ff30d6198a3f2e6761a18123076b7d958d7520f0b12d6dd3a46ad9719d2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:a43215e2db94f3ab53616b520f2ab1c7fb0076a5774161bd8767a27a2390065d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:b99f56f5e7f16c1e04a4a6d72e4c32322ef6bb2343eca87946de54f069bbb647_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08782101e310104c5d19c930d4edd49eb124832415618416d20049dfbed4cbf5_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:27f4edc3cde1c7d948b73260b1de3fba136da756dd9f0f22916e02778b3823a8_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:ab0896ce872f78ba1eb00bd4f0788fc4d8f75f29a50d09628faffc085ec79805_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:11e39079c8bab75830ec62ecb5816c9a7346387c76ba8ffb281bf8198becedbe_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:80721d9f6473ed2be5061f623d5946fa8161cc85b98c04355ba2fe95dfa47022_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:d3d4dc2ab077526554aa961e27a598e0cd11e5efee8ed64eed14f816d458423b_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:202b5c866073a825c534e7025633d931d13d0b09fc7ffa8b9bfb7d03090ecee0_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30b13ae772570ab84e7f5c8a12d34e9fb4c5c1bcdb5a6263bf34d257b2a841e1_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:50978fd902161120b371e10fb333d101c2136c7c409cb360760611ee5e442c53_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:59dec63a108221372a2c2538541ccdba81d0d4d9f3a7697be2099939342631ca_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0955416b7534ba4cc93b531d8ff5c924581718279fda1f3959d615763ab12616_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2375ba78f391d033133fbadf90d29d0dfa8989d7a395c9195433434042bd51cd_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:3556aab04fabcaceb6e9ad532d7081505ebd5cdff7cc605741969d13e59c7a42_s390x",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4c974f9cbf5e6a69c618f8d8e891bfe981a3cfc47a881d53f4eeef81c377b922_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:0f650a9fe5f6809895cad70c61ae1e51308923850efe02f3aa0f168cdbcaaf01_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:694660afd01c0ab1dd9bfb7fa1475329465ec1cf42b131f75d97660e76b88838_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:f00d592e4c374dc18daa2bae226aaf440ca01881d5886f1227e7225d8a3f5d98_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:8b0c3ef8a06fec1794efa1478952a25c9faccdcf30a46536879e0d3b87f4dcfb_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:da4ee9e80f6da27bc38f102f60df392b3be77f3c6e9e6b95247f7a390c91cd09_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:e8b70363470153ed4f105873f8238befcb47e3022d4c5d0c5986bfcdd33452e7_arm64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:15f98ff30d6198a3f2e6761a18123076b7d958d7520f0b12d6dd3a46ad9719d2_amd64",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:a43215e2db94f3ab53616b520f2ab1c7fb0076a5774161bd8767a27a2390065d_ppc64le",
"Red Hat OpenShift Container Platform 4.16:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:b99f56f5e7f16c1e04a4a6d72e4c32322ef6bb2343eca87946de54f069bbb647_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:10107
Vulnerability from csaf_redhat - Published: 2026-04-23 19:40 - Updated: 2026-06-28 21:15A 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-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.10.0.Z.MAIN.EUS:rhc-debuginfo-1:0.2.5-6.el8_10.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.10.0.Z.MAIN.EUS:rhc-debuginfo-1:0.2.5-6.el8_10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.10.0.Z.MAIN.EUS:rhc-debuginfo-1:0.2.5-6.el8_10.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.10.0.Z.MAIN.EUS:rhc-debuginfo-1:0.2.5-6.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.10.0.Z.MAIN.EUS:rhc-debugsource-1:0.2.5-6.el8_10.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.10.0.Z.MAIN.EUS:rhc-debugsource-1:0.2.5-6.el8_10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.10.0.Z.MAIN.EUS:rhc-debugsource-1:0.2.5-6.el8_10.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.10.0.Z.MAIN.EUS:rhc-debugsource-1:0.2.5-6.el8_10.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 rhc is now available for Red Hat Enterprise Linux 8.\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": "rhc is a client tool and daemon that connects the system to Red Hat hosted services enabling system and subscription management.\n\nSecurity Fix(es):\n\n* google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation (CVE-2026-33186)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:10107",
"url": "https://access.redhat.com/errata/RHSA-2026:10107"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_10107.json"
}
],
"title": "Red Hat Security Advisory: rhc security update",
"tracking": {
"current_release_date": "2026-06-28T21:15:03+00:00",
"generator": {
"date": "2026-06-28T21:15:03+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:10107",
"initial_release_date": "2026-04-23T19:40:23+00:00",
"revision_history": [
{
"date": "2026-04-23T19:40:23+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-04-23T19:40:23+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-28T21:15:03+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream (v. 8)",
"product": {
"name": "Red Hat Enterprise Linux AppStream (v. 8)",
"product_id": "AppStream-8.10.0.Z.MAIN.EUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:enterprise_linux:8::appstream"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "rhc-1:0.2.5-6.el8_10.src",
"product": {
"name": "rhc-1:0.2.5-6.el8_10.src",
"product_id": "rhc-1:0.2.5-6.el8_10.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rhc@0.2.5-6.el8_10?arch=src\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "rhc-1:0.2.5-6.el8_10.aarch64",
"product": {
"name": "rhc-1:0.2.5-6.el8_10.aarch64",
"product_id": "rhc-1:0.2.5-6.el8_10.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rhc@0.2.5-6.el8_10?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "rhc-debugsource-1:0.2.5-6.el8_10.aarch64",
"product": {
"name": "rhc-debugsource-1:0.2.5-6.el8_10.aarch64",
"product_id": "rhc-debugsource-1:0.2.5-6.el8_10.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rhc-debugsource@0.2.5-6.el8_10?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "rhc-debuginfo-1:0.2.5-6.el8_10.aarch64",
"product": {
"name": "rhc-debuginfo-1:0.2.5-6.el8_10.aarch64",
"product_id": "rhc-debuginfo-1:0.2.5-6.el8_10.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rhc-debuginfo@0.2.5-6.el8_10?arch=aarch64\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "rhc-1:0.2.5-6.el8_10.ppc64le",
"product": {
"name": "rhc-1:0.2.5-6.el8_10.ppc64le",
"product_id": "rhc-1:0.2.5-6.el8_10.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rhc@0.2.5-6.el8_10?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "rhc-debugsource-1:0.2.5-6.el8_10.ppc64le",
"product": {
"name": "rhc-debugsource-1:0.2.5-6.el8_10.ppc64le",
"product_id": "rhc-debugsource-1:0.2.5-6.el8_10.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rhc-debugsource@0.2.5-6.el8_10?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "rhc-debuginfo-1:0.2.5-6.el8_10.ppc64le",
"product": {
"name": "rhc-debuginfo-1:0.2.5-6.el8_10.ppc64le",
"product_id": "rhc-debuginfo-1:0.2.5-6.el8_10.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rhc-debuginfo@0.2.5-6.el8_10?arch=ppc64le\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "rhc-1:0.2.5-6.el8_10.x86_64",
"product": {
"name": "rhc-1:0.2.5-6.el8_10.x86_64",
"product_id": "rhc-1:0.2.5-6.el8_10.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rhc@0.2.5-6.el8_10?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "rhc-debugsource-1:0.2.5-6.el8_10.x86_64",
"product": {
"name": "rhc-debugsource-1:0.2.5-6.el8_10.x86_64",
"product_id": "rhc-debugsource-1:0.2.5-6.el8_10.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rhc-debugsource@0.2.5-6.el8_10?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "rhc-debuginfo-1:0.2.5-6.el8_10.x86_64",
"product": {
"name": "rhc-debuginfo-1:0.2.5-6.el8_10.x86_64",
"product_id": "rhc-debuginfo-1:0.2.5-6.el8_10.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rhc-debuginfo@0.2.5-6.el8_10?arch=x86_64\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "rhc-1:0.2.5-6.el8_10.s390x",
"product": {
"name": "rhc-1:0.2.5-6.el8_10.s390x",
"product_id": "rhc-1:0.2.5-6.el8_10.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rhc@0.2.5-6.el8_10?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "rhc-debugsource-1:0.2.5-6.el8_10.s390x",
"product": {
"name": "rhc-debugsource-1:0.2.5-6.el8_10.s390x",
"product_id": "rhc-debugsource-1:0.2.5-6.el8_10.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rhc-debugsource@0.2.5-6.el8_10?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "rhc-debuginfo-1:0.2.5-6.el8_10.s390x",
"product": {
"name": "rhc-debuginfo-1:0.2.5-6.el8_10.s390x",
"product_id": "rhc-debuginfo-1:0.2.5-6.el8_10.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rhc-debuginfo@0.2.5-6.el8_10?arch=s390x\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "rhc-1:0.2.5-6.el8_10.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)",
"product_id": "AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.aarch64"
},
"product_reference": "rhc-1:0.2.5-6.el8_10.aarch64",
"relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rhc-1:0.2.5-6.el8_10.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)",
"product_id": "AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.ppc64le"
},
"product_reference": "rhc-1:0.2.5-6.el8_10.ppc64le",
"relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rhc-1:0.2.5-6.el8_10.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)",
"product_id": "AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.s390x"
},
"product_reference": "rhc-1:0.2.5-6.el8_10.s390x",
"relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rhc-1:0.2.5-6.el8_10.src as a component of Red Hat Enterprise Linux AppStream (v. 8)",
"product_id": "AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.src"
},
"product_reference": "rhc-1:0.2.5-6.el8_10.src",
"relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rhc-1:0.2.5-6.el8_10.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)",
"product_id": "AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.x86_64"
},
"product_reference": "rhc-1:0.2.5-6.el8_10.x86_64",
"relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rhc-debuginfo-1:0.2.5-6.el8_10.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)",
"product_id": "AppStream-8.10.0.Z.MAIN.EUS:rhc-debuginfo-1:0.2.5-6.el8_10.aarch64"
},
"product_reference": "rhc-debuginfo-1:0.2.5-6.el8_10.aarch64",
"relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rhc-debuginfo-1:0.2.5-6.el8_10.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)",
"product_id": "AppStream-8.10.0.Z.MAIN.EUS:rhc-debuginfo-1:0.2.5-6.el8_10.ppc64le"
},
"product_reference": "rhc-debuginfo-1:0.2.5-6.el8_10.ppc64le",
"relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rhc-debuginfo-1:0.2.5-6.el8_10.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)",
"product_id": "AppStream-8.10.0.Z.MAIN.EUS:rhc-debuginfo-1:0.2.5-6.el8_10.s390x"
},
"product_reference": "rhc-debuginfo-1:0.2.5-6.el8_10.s390x",
"relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rhc-debuginfo-1:0.2.5-6.el8_10.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)",
"product_id": "AppStream-8.10.0.Z.MAIN.EUS:rhc-debuginfo-1:0.2.5-6.el8_10.x86_64"
},
"product_reference": "rhc-debuginfo-1:0.2.5-6.el8_10.x86_64",
"relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rhc-debugsource-1:0.2.5-6.el8_10.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)",
"product_id": "AppStream-8.10.0.Z.MAIN.EUS:rhc-debugsource-1:0.2.5-6.el8_10.aarch64"
},
"product_reference": "rhc-debugsource-1:0.2.5-6.el8_10.aarch64",
"relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rhc-debugsource-1:0.2.5-6.el8_10.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)",
"product_id": "AppStream-8.10.0.Z.MAIN.EUS:rhc-debugsource-1:0.2.5-6.el8_10.ppc64le"
},
"product_reference": "rhc-debugsource-1:0.2.5-6.el8_10.ppc64le",
"relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rhc-debugsource-1:0.2.5-6.el8_10.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)",
"product_id": "AppStream-8.10.0.Z.MAIN.EUS:rhc-debugsource-1:0.2.5-6.el8_10.s390x"
},
"product_reference": "rhc-debugsource-1:0.2.5-6.el8_10.s390x",
"relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rhc-debugsource-1:0.2.5-6.el8_10.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)",
"product_id": "AppStream-8.10.0.Z.MAIN.EUS:rhc-debugsource-1:0.2.5-6.el8_10.x86_64"
},
"product_reference": "rhc-debugsource-1:0.2.5-6.el8_10.x86_64",
"relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.aarch64",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.ppc64le",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.s390x",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.src",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.x86_64",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debuginfo-1:0.2.5-6.el8_10.aarch64",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debuginfo-1:0.2.5-6.el8_10.ppc64le",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debuginfo-1:0.2.5-6.el8_10.s390x",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debuginfo-1:0.2.5-6.el8_10.x86_64",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debugsource-1:0.2.5-6.el8_10.aarch64",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debugsource-1:0.2.5-6.el8_10.ppc64le",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debugsource-1:0.2.5-6.el8_10.s390x",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debugsource-1:0.2.5-6.el8_10.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-04-23T19:40:23+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-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.aarch64",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.ppc64le",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.s390x",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.src",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.x86_64",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debuginfo-1:0.2.5-6.el8_10.aarch64",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debuginfo-1:0.2.5-6.el8_10.ppc64le",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debuginfo-1:0.2.5-6.el8_10.s390x",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debuginfo-1:0.2.5-6.el8_10.x86_64",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debugsource-1:0.2.5-6.el8_10.aarch64",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debugsource-1:0.2.5-6.el8_10.ppc64le",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debugsource-1:0.2.5-6.el8_10.s390x",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debugsource-1:0.2.5-6.el8_10.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:10107"
},
{
"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-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.aarch64",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.ppc64le",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.s390x",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.src",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.x86_64",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debuginfo-1:0.2.5-6.el8_10.aarch64",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debuginfo-1:0.2.5-6.el8_10.ppc64le",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debuginfo-1:0.2.5-6.el8_10.s390x",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debuginfo-1:0.2.5-6.el8_10.x86_64",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debugsource-1:0.2.5-6.el8_10.aarch64",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debugsource-1:0.2.5-6.el8_10.ppc64le",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debugsource-1:0.2.5-6.el8_10.s390x",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debugsource-1:0.2.5-6.el8_10.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-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.aarch64",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.ppc64le",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.s390x",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.src",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-1:0.2.5-6.el8_10.x86_64",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debuginfo-1:0.2.5-6.el8_10.aarch64",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debuginfo-1:0.2.5-6.el8_10.ppc64le",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debuginfo-1:0.2.5-6.el8_10.s390x",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debuginfo-1:0.2.5-6.el8_10.x86_64",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debugsource-1:0.2.5-6.el8_10.aarch64",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debugsource-1:0.2.5-6.el8_10.ppc64le",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debugsource-1:0.2.5-6.el8_10.s390x",
"AppStream-8.10.0.Z.MAIN.EUS:rhc-debugsource-1:0.2.5-6.el8_10.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
}
]
}
RHSA-2026:10125
Vulnerability from csaf_redhat - Published: 2026-04-23 12:15 - Updated: 2026-06-28 21:15A 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: Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64 | — |
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: Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64 | — |
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: Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64 | — |
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: Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Tekton Pipelines, specifically in the Tekton Pipelines git resolver. A tenant with permissions to create ResolutionRequests can exploit a path traversal vulnerability via the `pathInRepo` parameter. This allows the tenant to read arbitrary files from the resolver pod's filesystem, leading to information disclosure, including sensitive ServiceAccount tokens. The contents of these files are returned in a base64-encoded format.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in BuildKit, a toolkit for converting source code to build artifacts. An untrusted BuildKit frontend can be leveraged to craft a malicious API message, allowing files to be written outside of the designated BuildKit state directory. This vulnerability, which is a form of arbitrary file write, could enable an attacker to execute unauthorized code or escalate their privileges on the system. This issue arises when custom BuildKit frontends are used with specific configuration options.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in BuildKit. Insufficient validation of Git URL fragment subdirectory components may allow a remote attacker to access files outside the checked-out Git repository root. This access is limited to files on the same mounted filesystem. This vulnerability could lead to unauthorized information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64 | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "The 1.3.4 release of Red Hat Trusted Artifact Signer OpenShift Operator.\nFor more details please visit the product documentation at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3",
"title": "Topic"
},
{
"category": "general",
"text": "The RHTAS Operator can be used with OpenShift Container Platform 4.16, 4.17, 4.18, 4.19, 4.20 and 4.21",
"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:10125",
"url": "https://access.redhat.com/errata/RHSA-2026:10125"
},
{
"category": "external",
"summary": "https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3",
"url": "https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3"
},
{
"category": "external",
"summary": "https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3/html-single/release_notes/index",
"url": "https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3/html-single/release_notes/index"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-68121",
"url": "https://access.redhat.com/security/cve/CVE-2025-68121"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-25679",
"url": "https://access.redhat.com/security/cve/CVE-2026-25679"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-27137",
"url": "https://access.redhat.com/security/cve/CVE-2026-27137"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33211",
"url": "https://access.redhat.com/security/cve/CVE-2026-33211"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33747",
"url": "https://access.redhat.com/security/cve/CVE-2026-33747"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33748",
"url": "https://access.redhat.com/security/cve/CVE-2026-33748"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34986",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_10125.json"
}
],
"title": "Red Hat Security Advisory: RHTAS 1.3.4 - Red Hat Trusted Artifact Signer Release",
"tracking": {
"current_release_date": "2026-06-28T21:15:03+00:00",
"generator": {
"date": "2026-06-28T21:15:03+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:10125",
"initial_release_date": "2026-04-23T12:15:28+00:00",
"revision_history": [
{
"date": "2026-04-23T12:15:28+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-04-23T12:15:40+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-28T21:15:03+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Trusted Artifact Signer 1.3",
"product": {
"name": "Red Hat Trusted Artifact Signer 1.3",
"product_id": "Red Hat Trusted Artifact Signer 1.3",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:trusted_artifact_signer:1.3::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Trusted Artifact Signer"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64",
"product": {
"name": "registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64",
"product_id": "registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64",
"product_identification_helper": {
"purl": "pkg:oci/client-server-rhel9@sha256%3A9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72?arch=amd64\u0026repository_url=registry.redhat.io/rhtas\u0026tag=1776339099"
}
}
}
],
"category": "architecture",
"name": "amd64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64 as a component of Red Hat Trusted Artifact Signer 1.3",
"product_id": "Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
},
"product_reference": "registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64",
"relates_to_product_reference": "Red Hat Trusted Artifact Signer 1.3"
}
]
},
"vulnerabilities": [
{
"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": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
]
},
"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-04-23T12:15:28+00:00",
"details": "Red Hat Trusted Artifact Signer simplifies cryptographic signing and verifying of software artifacts such as container images, binaries and source code changes. It is a self-managed on-premise deployment of the Sigstore project available at https://sigstore.dev\n\nPlatform Engineers, Software Developers and Security Professionals may use RHTAS to ensure the integrity, transparency and assurance of their organization\u0027s software supply chain.\n\nFor details on using the operator, refer to the product documentation at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3\n\nYou can find the release notes for this version of Red Hat Trusted Artifact Signer at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3/html-single/release_notes/index",
"product_ids": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:10125"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
]
}
],
"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": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-25679"
},
{
"category": "external",
"summary": "RHBZ#2445356",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445356"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-25679",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-25679"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679"
},
{
"category": "external",
"summary": "https://go.dev/cl/752180",
"url": "https://go.dev/cl/752180"
},
{
"category": "external",
"summary": "https://go.dev/issue/77578",
"url": "https://go.dev/issue/77578"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk",
"url": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4601",
"url": "https://pkg.go.dev/vuln/GO-2026-4601"
}
],
"release_date": "2026-03-06T21:28:14.211000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-23T12:15:28+00:00",
"details": "Red Hat Trusted Artifact Signer simplifies cryptographic signing and verifying of software artifacts such as container images, binaries and source code changes. It is a self-managed on-premise deployment of the Sigstore project available at https://sigstore.dev\n\nPlatform Engineers, Software Developers and Security Professionals may use RHTAS to ensure the integrity, transparency and assurance of their organization\u0027s software supply chain.\n\nFor details on using the operator, refer to the product documentation at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3\n\nYou can find the release notes for this version of Red Hat Trusted Artifact Signer at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3/html-single/release_notes/index",
"product_ids": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:10125"
},
{
"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 Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "net/url: Incorrect parsing of IPv6 host literals in net/url"
},
{
"cve": "CVE-2026-27137",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"discovery_date": "2026-03-06T22:01:38.859733+00:00",
"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": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27137"
},
{
"category": "external",
"summary": "RHBZ#2445345",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445345"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27137",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27137"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27137",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27137"
},
{
"category": "external",
"summary": "https://go.dev/cl/752182",
"url": "https://go.dev/cl/752182"
},
{
"category": "external",
"summary": "https://go.dev/issue/77952",
"url": "https://go.dev/issue/77952"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk",
"url": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4599",
"url": "https://pkg.go.dev/vuln/GO-2026-4599"
}
],
"release_date": "2026-03-06T21:28:13.748000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-23T12:15:28+00:00",
"details": "Red Hat Trusted Artifact Signer simplifies cryptographic signing and verifying of software artifacts such as container images, binaries and source code changes. It is a self-managed on-premise deployment of the Sigstore project available at https://sigstore.dev\n\nPlatform Engineers, Software Developers and Security Professionals may use RHTAS to ensure the integrity, transparency and assurance of their organization\u0027s software supply chain.\n\nFor details on using the operator, refer to the product documentation at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3\n\nYou can find the release notes for this version of Red Hat Trusted Artifact Signer at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3/html-single/release_notes/index",
"product_ids": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:10125"
},
{
"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 Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: Incorrect enforcement of email constraints in crypto/x509"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-23T12:15:28+00:00",
"details": "Red Hat Trusted Artifact Signer simplifies cryptographic signing and verifying of software artifacts such as container images, binaries and source code changes. It is a self-managed on-premise deployment of the Sigstore project available at https://sigstore.dev\n\nPlatform Engineers, Software Developers and Security Professionals may use RHTAS to ensure the integrity, transparency and assurance of their organization\u0027s software supply chain.\n\nFor details on using the operator, refer to the product documentation at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3\n\nYou can find the release notes for this version of Red Hat Trusted Artifact Signer at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3/html-single/release_notes/index",
"product_ids": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:10125"
},
{
"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 Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_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 Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-33211",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"discovery_date": "2026-03-24T00:02:20.093480+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2450554"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Tekton Pipelines, specifically in the Tekton Pipelines git resolver. A tenant with permissions to create ResolutionRequests can exploit a path traversal vulnerability via the `pathInRepo` parameter. This allows the tenant to read arbitrary files from the resolver pod\u0027s filesystem, leading to information disclosure, including sensitive ServiceAccount tokens. The contents of these files are returned in a base64-encoded format.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Tekton Pipelines: github.com/tektoncd/pipeline: Tekton Pipelines: Information disclosure via path traversal in git resolver",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker needs to have the permission to create ResolutionRequests (e.g., by creating TaskRuns or PipelineRuns that use the git resolver) within at least one specific namespace, limiting the exposure of this issue to authenticated users. Also, an attacker can read any file readable by the resolver pod process, including cluster secrets, allowing an escalation of privileges from namespace-scoped access to cluster-wide access. Due to these reasons, this vulnerability has been rated with an important severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33211"
},
{
"category": "external",
"summary": "RHBZ#2450554",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2450554"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33211",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33211"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33211",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33211"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/10fa538f9a2b6d01c75138f1ed7ba3da0e34687c",
"url": "https://github.com/tektoncd/pipeline/commit/10fa538f9a2b6d01c75138f1ed7ba3da0e34687c"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/318006c4e3a5",
"url": "https://github.com/tektoncd/pipeline/commit/318006c4e3a5"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/3ca7bc6e6dd1d97f80b84f78370d91edaf023cbd",
"url": "https://github.com/tektoncd/pipeline/commit/3ca7bc6e6dd1d97f80b84f78370d91edaf023cbd"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/961388fcf3374bc7656d28ab58ca84987e0a75ae",
"url": "https://github.com/tektoncd/pipeline/commit/961388fcf3374bc7656d28ab58ca84987e0a75ae"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/b1fee65b88aa969069c14c120045e97c37d9ee5e",
"url": "https://github.com/tektoncd/pipeline/commit/b1fee65b88aa969069c14c120045e97c37d9ee5e"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/cdb4e1e97a4f3170f9bc2cbfff83a6c8107bc3db",
"url": "https://github.com/tektoncd/pipeline/commit/cdb4e1e97a4f3170f9bc2cbfff83a6c8107bc3db"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/ec7755031a183b345cf9e64bea0e0505c1b9cb78",
"url": "https://github.com/tektoncd/pipeline/commit/ec7755031a183b345cf9e64bea0e0505c1b9cb78"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/security/advisories/GHSA-j5q5-j9gm-2w5c",
"url": "https://github.com/tektoncd/pipeline/security/advisories/GHSA-j5q5-j9gm-2w5c"
}
],
"release_date": "2026-03-23T23:55:54.089000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-23T12:15:28+00:00",
"details": "Red Hat Trusted Artifact Signer simplifies cryptographic signing and verifying of software artifacts such as container images, binaries and source code changes. It is a self-managed on-premise deployment of the Sigstore project available at https://sigstore.dev\n\nPlatform Engineers, Software Developers and Security Professionals may use RHTAS to ensure the integrity, transparency and assurance of their organization\u0027s software supply chain.\n\nFor details on using the operator, refer to the product documentation at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3\n\nYou can find the release notes for this version of Red Hat Trusted Artifact Signer at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3/html-single/release_notes/index",
"product_ids": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:10125"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, restrict the creation of ResolutionRequests to trusted users and service accounts. Implement strict Role-Based Access Control (RBAC) policies to limit which tenants can create TaskRuns or PipelineRuns that utilize the Tekton Pipelines git resolver. This reduces the exposure by preventing unauthorized access to the resolver pod\u0027s filesystem.",
"product_ids": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.6,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Tekton Pipelines: github.com/tektoncd/pipeline: Tekton Pipelines: Information disclosure via path traversal in git resolver"
},
{
"cve": "CVE-2026-33747",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"discovery_date": "2026-03-27T02:01:29.921765+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2452076"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in BuildKit, a toolkit for converting source code to build artifacts. An untrusted BuildKit frontend can be leveraged to craft a malicious API message, allowing files to be written outside of the designated BuildKit state directory. This vulnerability, which is a form of arbitrary file write, could enable an attacker to execute unauthorized code or escalate their privileges on the system. This issue arises when custom BuildKit frontends are used with specific configuration options.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "BuildKit: github.com/moby/buildkit: BuildKit: Arbitrary file write and code execution via untrusted frontend",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33747"
},
{
"category": "external",
"summary": "RHBZ#2452076",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2452076"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33747",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33747"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33747",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33747"
},
{
"category": "external",
"summary": "https://github.com/moby/buildkit/releases/tag/v0.28.1",
"url": "https://github.com/moby/buildkit/releases/tag/v0.28.1"
},
{
"category": "external",
"summary": "https://github.com/moby/buildkit/security/advisories/GHSA-4c29-8rgm-jvjj",
"url": "https://github.com/moby/buildkit/security/advisories/GHSA-4c29-8rgm-jvjj"
}
],
"release_date": "2026-03-27T00:49:06.165000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-23T12:15:28+00:00",
"details": "Red Hat Trusted Artifact Signer simplifies cryptographic signing and verifying of software artifacts such as container images, binaries and source code changes. It is a self-managed on-premise deployment of the Sigstore project available at https://sigstore.dev\n\nPlatform Engineers, Software Developers and Security Professionals may use RHTAS to ensure the integrity, transparency and assurance of their organization\u0027s software supply chain.\n\nFor details on using the operator, refer to the product documentation at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3\n\nYou can find the release notes for this version of Red Hat Trusted Artifact Signer at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3/html-single/release_notes/index",
"product_ids": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:10125"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, avoid using untrusted BuildKit frontends. Restrict the use of custom BuildKit frontends to only those from verified and trusted sources. Do not specify untrusted frontends via `#syntax` or `--build-arg BUILDKIT_SYNTAX`.",
"product_ids": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "BuildKit: github.com/moby/buildkit: BuildKit: Arbitrary file write and code execution via untrusted frontend"
},
{
"cve": "CVE-2026-33748",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"discovery_date": "2026-03-27T15:02:00.107493+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2452271"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in BuildKit. Insufficient validation of Git URL fragment subdirectory components may allow a remote attacker to access files outside the checked-out Git repository root. This access is limited to files on the same mounted filesystem. This vulnerability could lead to unauthorized information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/moby/buildkit: BuildKit: Unauthorized file access via Git URL fragment subdir components",
"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 Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33748"
},
{
"category": "external",
"summary": "RHBZ#2452271",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2452271"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33748",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33748"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33748",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33748"
},
{
"category": "external",
"summary": "https://docs.docker.com/build/concepts/context/#url-fragments",
"url": "https://docs.docker.com/build/concepts/context/#url-fragments"
},
{
"category": "external",
"summary": "https://github.com/moby/buildkit/releases/tag/v0.28.1",
"url": "https://github.com/moby/buildkit/releases/tag/v0.28.1"
},
{
"category": "external",
"summary": "https://github.com/moby/buildkit/security/advisories/GHSA-4vrq-3vrq-g6gg",
"url": "https://github.com/moby/buildkit/security/advisories/GHSA-4vrq-3vrq-g6gg"
}
],
"release_date": "2026-03-27T14:00:21.200000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-23T12:15:28+00:00",
"details": "Red Hat Trusted Artifact Signer simplifies cryptographic signing and verifying of software artifacts such as container images, binaries and source code changes. It is a self-managed on-premise deployment of the Sigstore project available at https://sigstore.dev\n\nPlatform Engineers, Software Developers and Security Professionals may use RHTAS to ensure the integrity, transparency and assurance of their organization\u0027s software supply chain.\n\nFor details on using the operator, refer to the product documentation at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3\n\nYou can find the release notes for this version of Red Hat Trusted Artifact Signer at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3/html-single/release_notes/index",
"product_ids": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:10125"
},
{
"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 Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "github.com/moby/buildkit: BuildKit: Unauthorized file access via Git URL fragment subdir components"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "RHBZ#2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34986",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34986"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8",
"url": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8"
},
{
"category": "external",
"summary": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants",
"url": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants"
}
],
"release_date": "2026-04-06T16:22:45.353000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-23T12:15:28+00:00",
"details": "Red Hat Trusted Artifact Signer simplifies cryptographic signing and verifying of software artifacts such as container images, binaries and source code changes. It is a self-managed on-premise deployment of the Sigstore project available at https://sigstore.dev\n\nPlatform Engineers, Software Developers and Security Professionals may use RHTAS to ensure the integrity, transparency and assurance of their organization\u0027s software supply chain.\n\nFor details on using the operator, refer to the product documentation at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3\n\nYou can find the release notes for this version of Red Hat Trusted Artifact Signer at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3/html-single/release_notes/index",
"product_ids": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:10125"
},
{
"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 Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/client-server-rhel9@sha256:9607f5c16d8e9d7ee2491ac04db78a52eb13ee0e93eeef79ff8bb6c8f9430c72_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object"
}
]
}
RHSA-2026:10126
Vulnerability from csaf_redhat - Published: 2026-04-23 12:16 - Updated: 2026-06-28 21:15No description is available for this CVE.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/createtree-rhel9@sha256:163edb41ea7f64afc8333ee14d4b28161f7017285afcca6ca12238732c77b98d_amd64 | — |
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: Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/createtree-rhel9@sha256:163edb41ea7f64afc8333ee14d4b28161f7017285afcca6ca12238732c77b98d_amd64 | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "The 1.3.4 release of Red Hat Trusted Artifact Signer OpenShift Operator.\nFor more details please visit the product documentation at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3",
"title": "Topic"
},
{
"category": "general",
"text": "The RHTAS Operator can be used with OpenShift Container Platform 4.16, 4.17, 4.18, 4.19, 4.20 and 4.21",
"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:10126",
"url": "https://access.redhat.com/errata/RHSA-2026:10126"
},
{
"category": "external",
"summary": "https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3",
"url": "https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3"
},
{
"category": "external",
"summary": "https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3/html-single/release_notes/index",
"url": "https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3/html-single/release_notes/index"
},
{
"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-4427",
"url": "https://access.redhat.com/security/cve/CVE-2026-4427"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_10126.json"
}
],
"title": "Red Hat Security Advisory: RHTAS 1.3.4 - Red Hat Trusted Artifact Signer Release",
"tracking": {
"current_release_date": "2026-06-28T21:15:03+00:00",
"generator": {
"date": "2026-06-28T21:15:03+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:10126",
"initial_release_date": "2026-04-23T12:16:06+00:00",
"revision_history": [
{
"date": "2026-04-23T12:16:06+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-04-23T12:16:14+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-28T21:15:03+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Trusted Artifact Signer 1.3",
"product": {
"name": "Red Hat Trusted Artifact Signer 1.3",
"product_id": "Red Hat Trusted Artifact Signer 1.3",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:trusted_artifact_signer:1.3::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Trusted Artifact Signer"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhtas/createtree-rhel9@sha256:163edb41ea7f64afc8333ee14d4b28161f7017285afcca6ca12238732c77b98d_amd64",
"product": {
"name": "registry.redhat.io/rhtas/createtree-rhel9@sha256:163edb41ea7f64afc8333ee14d4b28161f7017285afcca6ca12238732c77b98d_amd64",
"product_id": "registry.redhat.io/rhtas/createtree-rhel9@sha256:163edb41ea7f64afc8333ee14d4b28161f7017285afcca6ca12238732c77b98d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/createtree-rhel9@sha256%3A163edb41ea7f64afc8333ee14d4b28161f7017285afcca6ca12238732c77b98d?arch=amd64\u0026repository_url=registry.redhat.io/rhtas\u0026tag=1776243434"
}
}
}
],
"category": "architecture",
"name": "amd64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhtas/createtree-rhel9@sha256:163edb41ea7f64afc8333ee14d4b28161f7017285afcca6ca12238732c77b98d_amd64 as a component of Red Hat Trusted Artifact Signer 1.3",
"product_id": "Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/createtree-rhel9@sha256:163edb41ea7f64afc8333ee14d4b28161f7017285afcca6ca12238732c77b98d_amd64"
},
"product_reference": "registry.redhat.io/rhtas/createtree-rhel9@sha256:163edb41ea7f64afc8333ee14d4b28161f7017285afcca6ca12238732c77b98d_amd64",
"relates_to_product_reference": "Red Hat Trusted Artifact Signer 1.3"
}
]
},
"vulnerabilities": [
{
"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": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/createtree-rhel9@sha256:163edb41ea7f64afc8333ee14d4b28161f7017285afcca6ca12238732c77b98d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4427"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4427",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4427"
}
],
"release_date": "2026-03-18T13:00:31+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-23T12:16:06+00:00",
"details": "Red Hat Trusted Artifact Signer simplifies cryptographic signing and verifying of software artifacts such as container images, binaries and source code changes. It is a self-managed on-premise deployment of the Sigstore project available at https://sigstore.dev\n\nPlatform Engineers, Software Developers and Security Professionals may use RHTAS to ensure the integrity, transparency and assurance of their organization\u0027s software supply chain.\n\nFor details on using the operator, refer to the product documentation at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3\n\nYou can find the release notes for this version of Red Hat Trusted Artifact Signer at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3/html-single/release_notes/index",
"product_ids": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/createtree-rhel9@sha256:163edb41ea7f64afc8333ee14d4b28161f7017285afcca6ca12238732c77b98d_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:10126"
}
],
"title": "github.com/jackc/pgproto3: pgproto3: Denial of Service via negative field length in DataRow message"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/createtree-rhel9@sha256:163edb41ea7f64afc8333ee14d4b28161f7017285afcca6ca12238732c77b98d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-23T12:16:06+00:00",
"details": "Red Hat Trusted Artifact Signer simplifies cryptographic signing and verifying of software artifacts such as container images, binaries and source code changes. It is a self-managed on-premise deployment of the Sigstore project available at https://sigstore.dev\n\nPlatform Engineers, Software Developers and Security Professionals may use RHTAS to ensure the integrity, transparency and assurance of their organization\u0027s software supply chain.\n\nFor details on using the operator, refer to the product documentation at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3\n\nYou can find the release notes for this version of Red Hat Trusted Artifact Signer at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3/html-single/release_notes/index",
"product_ids": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/createtree-rhel9@sha256:163edb41ea7f64afc8333ee14d4b28161f7017285afcca6ca12238732c77b98d_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:10126"
},
{
"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 Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/createtree-rhel9@sha256:163edb41ea7f64afc8333ee14d4b28161f7017285afcca6ca12238732c77b98d_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 Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/createtree-rhel9@sha256:163edb41ea7f64afc8333ee14d4b28161f7017285afcca6ca12238732c77b98d_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:10130
Vulnerability from csaf_redhat - Published: 2026-04-23 12:17 - Updated: 2026-06-28 21:15No description is available for this CVE.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/updatetree-rhel9@sha256:49d1968ed236c78da3f355f228f24d0048ac11c83bea82025a83630c9bc39c99_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/cosign-rhel9@sha256:b7599fcedc9a0777b71b048f7a5ca39371484483d25ddf33c4b4949a66d7eb78_amd64 | — | ||
| Unresolved product id: Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/fetch-tsa-certs-rhel9@sha256:aebd17387291c5044ca5f6fd38032fbb0039552306a1602b2bc92edecd904927_amd64 | — | ||
| Unresolved product id: Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/gitsign-rhel9@sha256:576459d1b82dc036d46c167a82d637e7924300668bffd8e3eebc0e9b349157c6_amd64 | — | ||
| Unresolved product id: Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/rekor-cli-rhel9@sha256:cb4533fbe1dbda3a253719cf1bea345e91e1eac6f0ba4665ee66016d02e0e296_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 Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/cosign-rhel9@sha256:b7599fcedc9a0777b71b048f7a5ca39371484483d25ddf33c4b4949a66d7eb78_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/fetch-tsa-certs-rhel9@sha256:aebd17387291c5044ca5f6fd38032fbb0039552306a1602b2bc92edecd904927_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/gitsign-rhel9@sha256:576459d1b82dc036d46c167a82d637e7924300668bffd8e3eebc0e9b349157c6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/rekor-cli-rhel9@sha256:cb4533fbe1dbda3a253719cf1bea345e91e1eac6f0ba4665ee66016d02e0e296_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/updatetree-rhel9@sha256:49d1968ed236c78da3f355f228f24d0048ac11c83bea82025a83630c9bc39c99_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/cosign-rhel9@sha256:b7599fcedc9a0777b71b048f7a5ca39371484483d25ddf33c4b4949a66d7eb78_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/fetch-tsa-certs-rhel9@sha256:aebd17387291c5044ca5f6fd38032fbb0039552306a1602b2bc92edecd904927_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/gitsign-rhel9@sha256:576459d1b82dc036d46c167a82d637e7924300668bffd8e3eebc0e9b349157c6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/rekor-cli-rhel9@sha256:cb4533fbe1dbda3a253719cf1bea345e91e1eac6f0ba4665ee66016d02e0e296_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/updatetree-rhel9@sha256:49d1968ed236c78da3f355f228f24d0048ac11c83bea82025a83630c9bc39c99_amd64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "The 1.3.4 release of Red Hat Trusted Artifact Signer OpenShift Operator.\nFor more details please visit the product documentation at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3",
"title": "Topic"
},
{
"category": "general",
"text": "The RHTAS Operator can be used with OpenShift Container Platform 4.16, 4.17, 4.18, 4.19, 4.20 and 4.21",
"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:10130",
"url": "https://access.redhat.com/errata/RHSA-2026:10130"
},
{
"category": "external",
"summary": "https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3",
"url": "https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3"
},
{
"category": "external",
"summary": "https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3/html-single/release_notes/index",
"url": "https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3/html-single/release_notes/index"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34986",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4427",
"url": "https://access.redhat.com/security/cve/CVE-2026-4427"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_10130.json"
}
],
"title": "Red Hat Security Advisory: RHTAS 1.3.4 - Red Hat Trusted Artifact Signer Release",
"tracking": {
"current_release_date": "2026-06-28T21:15:03+00:00",
"generator": {
"date": "2026-06-28T21:15:03+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:10130",
"initial_release_date": "2026-04-23T12:17:43+00:00",
"revision_history": [
{
"date": "2026-04-23T12:17:43+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-04-23T12:17:57+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-28T21:15:03+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Trusted Artifact Signer 1.3",
"product": {
"name": "Red Hat Trusted Artifact Signer 1.3",
"product_id": "Red Hat Trusted Artifact Signer 1.3",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:trusted_artifact_signer:1.3::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Trusted Artifact Signer"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhtas/cosign-rhel9@sha256:b7599fcedc9a0777b71b048f7a5ca39371484483d25ddf33c4b4949a66d7eb78_amd64",
"product": {
"name": "registry.redhat.io/rhtas/cosign-rhel9@sha256:b7599fcedc9a0777b71b048f7a5ca39371484483d25ddf33c4b4949a66d7eb78_amd64",
"product_id": "registry.redhat.io/rhtas/cosign-rhel9@sha256:b7599fcedc9a0777b71b048f7a5ca39371484483d25ddf33c4b4949a66d7eb78_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cosign-rhel9@sha256%3Ab7599fcedc9a0777b71b048f7a5ca39371484483d25ddf33c4b4949a66d7eb78?arch=amd64\u0026repository_url=registry.redhat.io/rhtas\u0026tag=1776329867"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhtas/fetch-tsa-certs-rhel9@sha256:aebd17387291c5044ca5f6fd38032fbb0039552306a1602b2bc92edecd904927_amd64",
"product": {
"name": "registry.redhat.io/rhtas/fetch-tsa-certs-rhel9@sha256:aebd17387291c5044ca5f6fd38032fbb0039552306a1602b2bc92edecd904927_amd64",
"product_id": "registry.redhat.io/rhtas/fetch-tsa-certs-rhel9@sha256:aebd17387291c5044ca5f6fd38032fbb0039552306a1602b2bc92edecd904927_amd64",
"product_identification_helper": {
"purl": "pkg:oci/fetch-tsa-certs-rhel9@sha256%3Aaebd17387291c5044ca5f6fd38032fbb0039552306a1602b2bc92edecd904927?arch=amd64\u0026repository_url=registry.redhat.io/rhtas\u0026tag=1776242867"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhtas/gitsign-rhel9@sha256:576459d1b82dc036d46c167a82d637e7924300668bffd8e3eebc0e9b349157c6_amd64",
"product": {
"name": "registry.redhat.io/rhtas/gitsign-rhel9@sha256:576459d1b82dc036d46c167a82d637e7924300668bffd8e3eebc0e9b349157c6_amd64",
"product_id": "registry.redhat.io/rhtas/gitsign-rhel9@sha256:576459d1b82dc036d46c167a82d637e7924300668bffd8e3eebc0e9b349157c6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/gitsign-rhel9@sha256%3A576459d1b82dc036d46c167a82d637e7924300668bffd8e3eebc0e9b349157c6?arch=amd64\u0026repository_url=registry.redhat.io/rhtas\u0026tag=1776326944"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhtas/rekor-cli-rhel9@sha256:cb4533fbe1dbda3a253719cf1bea345e91e1eac6f0ba4665ee66016d02e0e296_amd64",
"product": {
"name": "registry.redhat.io/rhtas/rekor-cli-rhel9@sha256:cb4533fbe1dbda3a253719cf1bea345e91e1eac6f0ba4665ee66016d02e0e296_amd64",
"product_id": "registry.redhat.io/rhtas/rekor-cli-rhel9@sha256:cb4533fbe1dbda3a253719cf1bea345e91e1eac6f0ba4665ee66016d02e0e296_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rekor-cli-rhel9@sha256%3Acb4533fbe1dbda3a253719cf1bea345e91e1eac6f0ba4665ee66016d02e0e296?arch=amd64\u0026repository_url=registry.redhat.io/rhtas\u0026tag=1776243545"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhtas/updatetree-rhel9@sha256:49d1968ed236c78da3f355f228f24d0048ac11c83bea82025a83630c9bc39c99_amd64",
"product": {
"name": "registry.redhat.io/rhtas/updatetree-rhel9@sha256:49d1968ed236c78da3f355f228f24d0048ac11c83bea82025a83630c9bc39c99_amd64",
"product_id": "registry.redhat.io/rhtas/updatetree-rhel9@sha256:49d1968ed236c78da3f355f228f24d0048ac11c83bea82025a83630c9bc39c99_amd64",
"product_identification_helper": {
"purl": "pkg:oci/updatetree-rhel9@sha256%3A49d1968ed236c78da3f355f228f24d0048ac11c83bea82025a83630c9bc39c99?arch=amd64\u0026repository_url=registry.redhat.io/rhtas\u0026tag=1776243434"
}
}
}
],
"category": "architecture",
"name": "amd64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhtas/cosign-rhel9@sha256:b7599fcedc9a0777b71b048f7a5ca39371484483d25ddf33c4b4949a66d7eb78_amd64 as a component of Red Hat Trusted Artifact Signer 1.3",
"product_id": "Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/cosign-rhel9@sha256:b7599fcedc9a0777b71b048f7a5ca39371484483d25ddf33c4b4949a66d7eb78_amd64"
},
"product_reference": "registry.redhat.io/rhtas/cosign-rhel9@sha256:b7599fcedc9a0777b71b048f7a5ca39371484483d25ddf33c4b4949a66d7eb78_amd64",
"relates_to_product_reference": "Red Hat Trusted Artifact Signer 1.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhtas/fetch-tsa-certs-rhel9@sha256:aebd17387291c5044ca5f6fd38032fbb0039552306a1602b2bc92edecd904927_amd64 as a component of Red Hat Trusted Artifact Signer 1.3",
"product_id": "Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/fetch-tsa-certs-rhel9@sha256:aebd17387291c5044ca5f6fd38032fbb0039552306a1602b2bc92edecd904927_amd64"
},
"product_reference": "registry.redhat.io/rhtas/fetch-tsa-certs-rhel9@sha256:aebd17387291c5044ca5f6fd38032fbb0039552306a1602b2bc92edecd904927_amd64",
"relates_to_product_reference": "Red Hat Trusted Artifact Signer 1.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhtas/gitsign-rhel9@sha256:576459d1b82dc036d46c167a82d637e7924300668bffd8e3eebc0e9b349157c6_amd64 as a component of Red Hat Trusted Artifact Signer 1.3",
"product_id": "Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/gitsign-rhel9@sha256:576459d1b82dc036d46c167a82d637e7924300668bffd8e3eebc0e9b349157c6_amd64"
},
"product_reference": "registry.redhat.io/rhtas/gitsign-rhel9@sha256:576459d1b82dc036d46c167a82d637e7924300668bffd8e3eebc0e9b349157c6_amd64",
"relates_to_product_reference": "Red Hat Trusted Artifact Signer 1.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhtas/rekor-cli-rhel9@sha256:cb4533fbe1dbda3a253719cf1bea345e91e1eac6f0ba4665ee66016d02e0e296_amd64 as a component of Red Hat Trusted Artifact Signer 1.3",
"product_id": "Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/rekor-cli-rhel9@sha256:cb4533fbe1dbda3a253719cf1bea345e91e1eac6f0ba4665ee66016d02e0e296_amd64"
},
"product_reference": "registry.redhat.io/rhtas/rekor-cli-rhel9@sha256:cb4533fbe1dbda3a253719cf1bea345e91e1eac6f0ba4665ee66016d02e0e296_amd64",
"relates_to_product_reference": "Red Hat Trusted Artifact Signer 1.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhtas/updatetree-rhel9@sha256:49d1968ed236c78da3f355f228f24d0048ac11c83bea82025a83630c9bc39c99_amd64 as a component of Red Hat Trusted Artifact Signer 1.3",
"product_id": "Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/updatetree-rhel9@sha256:49d1968ed236c78da3f355f228f24d0048ac11c83bea82025a83630c9bc39c99_amd64"
},
"product_reference": "registry.redhat.io/rhtas/updatetree-rhel9@sha256:49d1968ed236c78da3f355f228f24d0048ac11c83bea82025a83630c9bc39c99_amd64",
"relates_to_product_reference": "Red Hat Trusted Artifact Signer 1.3"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-4427",
"discovery_date": "2026-03-18T14:02:19.414820+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/cosign-rhel9@sha256:b7599fcedc9a0777b71b048f7a5ca39371484483d25ddf33c4b4949a66d7eb78_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/fetch-tsa-certs-rhel9@sha256:aebd17387291c5044ca5f6fd38032fbb0039552306a1602b2bc92edecd904927_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/gitsign-rhel9@sha256:576459d1b82dc036d46c167a82d637e7924300668bffd8e3eebc0e9b349157c6_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/rekor-cli-rhel9@sha256:cb4533fbe1dbda3a253719cf1bea345e91e1eac6f0ba4665ee66016d02e0e296_amd64"
]
}
],
"notes": [
{
"category": "description",
"text": "No description is available for this CVE.",
"title": "Vulnerability description"
},
{
"category": "other",
"text": "This CVE has been marked as Rejected by the assigning CNA.",
"title": "Statement"
}
],
"product_status": {
"fixed": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/updatetree-rhel9@sha256:49d1968ed236c78da3f355f228f24d0048ac11c83bea82025a83630c9bc39c99_amd64"
],
"known_not_affected": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/cosign-rhel9@sha256:b7599fcedc9a0777b71b048f7a5ca39371484483d25ddf33c4b4949a66d7eb78_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/fetch-tsa-certs-rhel9@sha256:aebd17387291c5044ca5f6fd38032fbb0039552306a1602b2bc92edecd904927_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/gitsign-rhel9@sha256:576459d1b82dc036d46c167a82d637e7924300668bffd8e3eebc0e9b349157c6_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/rekor-cli-rhel9@sha256:cb4533fbe1dbda3a253719cf1bea345e91e1eac6f0ba4665ee66016d02e0e296_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4427"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4427",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4427"
}
],
"release_date": "2026-03-18T13:00:31+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-23T12:17:43+00:00",
"details": "Red Hat Trusted Artifact Signer simplifies cryptographic signing and verifying of software artifacts such as container images, binaries and source code changes. It is a self-managed on-premise deployment of the Sigstore project available at https://sigstore.dev\n\nPlatform Engineers, Software Developers and Security Professionals may use RHTAS to ensure the integrity, transparency and assurance of their organization\u0027s software supply chain.\n\nFor details on using the operator, refer to the product documentation at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3\n\nYou can find the release notes for this version of Red Hat Trusted Artifact Signer at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3/html-single/release_notes/index",
"product_ids": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/updatetree-rhel9@sha256:49d1968ed236c78da3f355f228f24d0048ac11c83bea82025a83630c9bc39c99_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:10130"
}
],
"title": "github.com/jackc/pgproto3: pgproto3: Denial of Service via negative field length in DataRow message"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/cosign-rhel9@sha256:b7599fcedc9a0777b71b048f7a5ca39371484483d25ddf33c4b4949a66d7eb78_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/fetch-tsa-certs-rhel9@sha256:aebd17387291c5044ca5f6fd38032fbb0039552306a1602b2bc92edecd904927_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/gitsign-rhel9@sha256:576459d1b82dc036d46c167a82d637e7924300668bffd8e3eebc0e9b349157c6_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/rekor-cli-rhel9@sha256:cb4533fbe1dbda3a253719cf1bea345e91e1eac6f0ba4665ee66016d02e0e296_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/updatetree-rhel9@sha256:49d1968ed236c78da3f355f228f24d0048ac11c83bea82025a83630c9bc39c99_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-23T12:17:43+00:00",
"details": "Red Hat Trusted Artifact Signer simplifies cryptographic signing and verifying of software artifacts such as container images, binaries and source code changes. It is a self-managed on-premise deployment of the Sigstore project available at https://sigstore.dev\n\nPlatform Engineers, Software Developers and Security Professionals may use RHTAS to ensure the integrity, transparency and assurance of their organization\u0027s software supply chain.\n\nFor details on using the operator, refer to the product documentation at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3\n\nYou can find the release notes for this version of Red Hat Trusted Artifact Signer at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3/html-single/release_notes/index",
"product_ids": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/cosign-rhel9@sha256:b7599fcedc9a0777b71b048f7a5ca39371484483d25ddf33c4b4949a66d7eb78_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/fetch-tsa-certs-rhel9@sha256:aebd17387291c5044ca5f6fd38032fbb0039552306a1602b2bc92edecd904927_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/gitsign-rhel9@sha256:576459d1b82dc036d46c167a82d637e7924300668bffd8e3eebc0e9b349157c6_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/rekor-cli-rhel9@sha256:cb4533fbe1dbda3a253719cf1bea345e91e1eac6f0ba4665ee66016d02e0e296_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/updatetree-rhel9@sha256:49d1968ed236c78da3f355f228f24d0048ac11c83bea82025a83630c9bc39c99_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:10130"
},
{
"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 Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/cosign-rhel9@sha256:b7599fcedc9a0777b71b048f7a5ca39371484483d25ddf33c4b4949a66d7eb78_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/fetch-tsa-certs-rhel9@sha256:aebd17387291c5044ca5f6fd38032fbb0039552306a1602b2bc92edecd904927_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/gitsign-rhel9@sha256:576459d1b82dc036d46c167a82d637e7924300668bffd8e3eebc0e9b349157c6_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/rekor-cli-rhel9@sha256:cb4533fbe1dbda3a253719cf1bea345e91e1eac6f0ba4665ee66016d02e0e296_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/updatetree-rhel9@sha256:49d1968ed236c78da3f355f228f24d0048ac11c83bea82025a83630c9bc39c99_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 Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/cosign-rhel9@sha256:b7599fcedc9a0777b71b048f7a5ca39371484483d25ddf33c4b4949a66d7eb78_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/fetch-tsa-certs-rhel9@sha256:aebd17387291c5044ca5f6fd38032fbb0039552306a1602b2bc92edecd904927_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/gitsign-rhel9@sha256:576459d1b82dc036d46c167a82d637e7924300668bffd8e3eebc0e9b349157c6_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/rekor-cli-rhel9@sha256:cb4533fbe1dbda3a253719cf1bea345e91e1eac6f0ba4665ee66016d02e0e296_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/updatetree-rhel9@sha256:49d1968ed236c78da3f355f228f24d0048ac11c83bea82025a83630c9bc39c99_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/fetch-tsa-certs-rhel9@sha256:aebd17387291c5044ca5f6fd38032fbb0039552306a1602b2bc92edecd904927_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/gitsign-rhel9@sha256:576459d1b82dc036d46c167a82d637e7924300668bffd8e3eebc0e9b349157c6_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/rekor-cli-rhel9@sha256:cb4533fbe1dbda3a253719cf1bea345e91e1eac6f0ba4665ee66016d02e0e296_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/updatetree-rhel9@sha256:49d1968ed236c78da3f355f228f24d0048ac11c83bea82025a83630c9bc39c99_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/cosign-rhel9@sha256:b7599fcedc9a0777b71b048f7a5ca39371484483d25ddf33c4b4949a66d7eb78_amd64"
],
"known_not_affected": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/fetch-tsa-certs-rhel9@sha256:aebd17387291c5044ca5f6fd38032fbb0039552306a1602b2bc92edecd904927_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/gitsign-rhel9@sha256:576459d1b82dc036d46c167a82d637e7924300668bffd8e3eebc0e9b349157c6_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/rekor-cli-rhel9@sha256:cb4533fbe1dbda3a253719cf1bea345e91e1eac6f0ba4665ee66016d02e0e296_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/updatetree-rhel9@sha256:49d1968ed236c78da3f355f228f24d0048ac11c83bea82025a83630c9bc39c99_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "RHBZ#2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34986",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34986"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8",
"url": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8"
},
{
"category": "external",
"summary": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants",
"url": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants"
}
],
"release_date": "2026-04-06T16:22:45.353000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-23T12:17:43+00:00",
"details": "Red Hat Trusted Artifact Signer simplifies cryptographic signing and verifying of software artifacts such as container images, binaries and source code changes. It is a self-managed on-premise deployment of the Sigstore project available at https://sigstore.dev\n\nPlatform Engineers, Software Developers and Security Professionals may use RHTAS to ensure the integrity, transparency and assurance of their organization\u0027s software supply chain.\n\nFor details on using the operator, refer to the product documentation at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3\n\nYou can find the release notes for this version of Red Hat Trusted Artifact Signer at https://access.redhat.com/documentation/en-us/red_hat_trusted_artifact_signer/1.3/html-single/release_notes/index",
"product_ids": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/cosign-rhel9@sha256:b7599fcedc9a0777b71b048f7a5ca39371484483d25ddf33c4b4949a66d7eb78_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:10130"
},
{
"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 Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/cosign-rhel9@sha256:b7599fcedc9a0777b71b048f7a5ca39371484483d25ddf33c4b4949a66d7eb78_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/fetch-tsa-certs-rhel9@sha256:aebd17387291c5044ca5f6fd38032fbb0039552306a1602b2bc92edecd904927_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/gitsign-rhel9@sha256:576459d1b82dc036d46c167a82d637e7924300668bffd8e3eebc0e9b349157c6_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/rekor-cli-rhel9@sha256:cb4533fbe1dbda3a253719cf1bea345e91e1eac6f0ba4665ee66016d02e0e296_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/updatetree-rhel9@sha256:49d1968ed236c78da3f355f228f24d0048ac11c83bea82025a83630c9bc39c99_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/cosign-rhel9@sha256:b7599fcedc9a0777b71b048f7a5ca39371484483d25ddf33c4b4949a66d7eb78_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/fetch-tsa-certs-rhel9@sha256:aebd17387291c5044ca5f6fd38032fbb0039552306a1602b2bc92edecd904927_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/gitsign-rhel9@sha256:576459d1b82dc036d46c167a82d637e7924300668bffd8e3eebc0e9b349157c6_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/rekor-cli-rhel9@sha256:cb4533fbe1dbda3a253719cf1bea345e91e1eac6f0ba4665ee66016d02e0e296_amd64",
"Red Hat Trusted Artifact Signer 1.3:registry.redhat.io/rhtas/updatetree-rhel9@sha256:49d1968ed236c78da3f355f228f24d0048ac11c83bea82025a83630c9bc39c99_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object"
}
]
}
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.